2 implementations of LogTelemetry
Microsoft.Build (1)
BackEnd\Components\Logging\LoggingServiceLogMethods.cs (1)
788public void LogTelemetry(BuildEventContext buildEventContext, string eventName, IDictionary<string, string> properties)
Microsoft.Build.Engine.UnitTests (1)
BackEnd\MockLoggingService.cs (1)
613public void LogTelemetry(BuildEventContext buildEventContext, string eventName, IDictionary<string, string> properties)
3 references to LogTelemetry
Microsoft.Build (3)
BackEnd\BuildManager\BuildManager.cs (2)
582loggingService.LogTelemetry(buildEventContext: null, KnownTelemetry.LoggingConfigurationTelemetry.EventName, KnownTelemetry.LoggingConfigurationTelemetry.GetProperties()); 1095loggingService.LogTelemetry(buildEventContext: null, _buildTelemetry.EventName, _buildTelemetry.GetProperties());
BackEnd\Components\RequestBuilder\TaskHost.cs (1)
673_taskLoggingContext.LoggingService.LogTelemetry(_taskLoggingContext.BuildEventContext, eventName, properties);