Update message ID
authorDavid Mason <davmason@microsoft.com>
Wed, 22 May 2019 10:29:46 +0000 (03:29 -0700)
committerDavid Mason <davmason@microsoft.com>
Wed, 22 May 2019 10:29:46 +0000 (03:29 -0700)
src/Microsoft.Diagnostics.Tools.RuntimeClient/Eventing/DiagnosticMessageType.cs

index 2bce8154b71e6d25292097ff4c7abf90bfd487d2..9be3d27278b1122593790210a08acbacdebdd909 100644 (file)
@@ -14,10 +14,6 @@ namespace Microsoft.Diagnostics.Tools.RuntimeClient
         /// </summary>
         GenerateCoreDump = 1,
         /// <summary>
-        /// Attaches a profiler to an existing process
-        /// </summary>
-        AttachProfiler,
-        /// <summary>
         /// Starts an EventPipe session that writes events to a file when the session is stopped or the application exits.
         /// </summary>
         StartEventPipeTracing = 1024,
@@ -29,5 +25,9 @@ namespace Microsoft.Diagnostics.Tools.RuntimeClient
         /// Starts an EventPipe session that sends events out-of-proc through IPC.
         /// </summary>
         CollectEventPipeTracing,
+        /// <summary>
+        /// Attaches a profiler to an existing process
+        /// </summary>
+        AttachProfiler = 2048,
     }
 }