2 implementations of LogTelemetry
Microsoft.Build (1)
BackEnd\Components\Logging\LoggingServiceLogMethods.cs (1)
804public void LogTelemetry(BuildEventContext buildEventContext, string eventName, IDictionary<string, string> properties)
Microsoft.Build.Engine.UnitTests (1)
BackEnd\MockLoggingService.cs (1)
671public void LogTelemetry(BuildEventContext buildEventContext, string eventName, IDictionary<string, string> properties)
8 references to LogTelemetry
Microsoft.Build (8)
BackEnd\BuildManager\BuildManager.cs (2)
601loggingService.LogTelemetry(buildEventContext: null, KnownTelemetry.LoggingConfigurationTelemetry.EventName, KnownTelemetry.LoggingConfigurationTelemetry.GetProperties()); 1129loggingService.LogTelemetry(buildEventContext: null, _buildTelemetry.EventName, _buildTelemetry.GetProperties());
BackEnd\Components\Logging\ProjectTelemetry.cs (3)
138loggingService.LogTelemetry(buildEventContext, TaskFactoryEventName, taskFactoryProperties); 144loggingService.LogTelemetry(buildEventContext, TasksEventName, taskTotalProperties); 150loggingService.LogTelemetry(buildEventContext, MSBuildTaskSubclassedEventName, msbuildTaskSubclassProperties);
BackEnd\Components\RequestBuilder\TaskHost.cs (1)
675_taskLoggingContext.LoggingService.LogTelemetry(_taskLoggingContext.BuildEventContext, eventName, properties);
BuildCheck\Infrastructure\CheckContext\CheckLoggingContext.cs (2)
48loggingService.LogTelemetry(eventContext, telemetryTransportData.Item1, telemetryTransportData.Item2); 55loggingService.LogTelemetry(eventContext, telemetryTransportData.Item1, telemetryTransportData.Item2);