9 instantiations of TelemetryEventArgs
Microsoft.Build (2)
Microsoft.Build.Engine.UnitTests (1)
Microsoft.Build.Framework.UnitTests (4)
CustomEventArgSerialization_Tests.cs (4)
983TelemetryEventArgs genericEvent = new TelemetryEventArgs { EventName = "Good", Properties = new Dictionary<string, string> { { "Key", "Value" } } };
996TelemetryEventArgs genericEvent = new TelemetryEventArgs { EventName = "Good", Properties = null };
1013TelemetryEventArgs genericEvent = new TelemetryEventArgs { EventName = null, Properties = new Dictionary<string, string> { { "Key", "Value" } } };
1026TelemetryEventArgs genericEvent = new TelemetryEventArgs { EventName = "Good", Properties = new Dictionary<string, string> { { "Key", null } } };
MSBuild (2)
25 references to TelemetryEventArgs
Microsoft.Build (5)
Microsoft.Build.Engine.UnitTests (3)
Microsoft.Build.Framework (2)
Microsoft.Build.Framework.UnitTests (10)
CustomEventArgSerialization_Tests.cs (10)
983TelemetryEventArgs genericEvent = new TelemetryEventArgs { EventName = "Good", Properties = new Dictionary<string, string> { { "Key", "Value" } } };
986TelemetryEventArgs newGenericEvent = RoundTrip(genericEvent);
996TelemetryEventArgs genericEvent = new TelemetryEventArgs { EventName = "Good", Properties = null };
999TelemetryEventArgs newGenericEvent = RoundTrip(genericEvent);
1013TelemetryEventArgs genericEvent = new TelemetryEventArgs { EventName = null, Properties = new Dictionary<string, string> { { "Key", "Value" } } };
1016TelemetryEventArgs newGenericEvent = RoundTrip(genericEvent);
1026TelemetryEventArgs genericEvent = new TelemetryEventArgs { EventName = "Good", Properties = new Dictionary<string, string> { { "Key", null } } };
1029TelemetryEventArgs newGenericEvent = RoundTrip(genericEvent);
1049private static void VerifyTelemetryEvent(TelemetryEventArgs expected, TelemetryEventArgs actual)
Microsoft.Build.UnitTests.Shared (2)
Microsoft.Build.Utilities.Core (1)
Microsoft.DotNet.ArcadeLogging (1)
MSBuild (1)