We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2cf1c7 commit 653be13Copy full SHA for 653be13
src/libraries/System.Private.CoreLib/src/System/Diagnostics/Tracing/EventSource.cs
@@ -2807,8 +2807,13 @@ private void EnsureDescriptorsInitialized()
2807
// Today, we only send the manifest to ETW, custom listeners don't get it.
2808
private unsafe void SendManifest(byte[]? rawManifest)
2809
{
2810
- if (rawManifest == null)
+ if (rawManifest == null
2811
+ // Don't send the manifest for NativeRuntimeEventSource, it is conceptually
2812
+ // an extension of the native coreclr provider
2813
+ || m_name.Equals("Microsoft-Windows-DotNETRuntime"))
2814
+ {
2815
return;
2816
+ }
2817
2818
Debug.Assert(!SelfDescribingEvents);
2819
0 commit comments