3 writes to ErrorCounts
Microsoft.Build (1)
BackEnd\Components\Logging\BuildErrorTelemetryTracker.cs (1)
87buildTelemetry.ErrorCounts = new ErrorCountsInfo(
Microsoft.Build.Engine.UnitTests (2)
BackEnd\KnownTelemetry_Tests.cs (2)
137buildTelemetry.ErrorCounts = new ErrorCountsInfo( 182buildTelemetry.ErrorCounts = new ErrorCountsInfo(
19 references to ErrorCounts
Microsoft.Build.Engine.UnitTests (16)
BackEnd\BuildTelemetryErrorCategorization_Tests.cs (16)
68buildTelemetry.ErrorCounts.Compiler.ShouldBe(1); 71buildTelemetry.ErrorCounts.MsBuildGeneral.ShouldBe(1); 74buildTelemetry.ErrorCounts.Task.ShouldBe(1); 77buildTelemetry.ErrorCounts.SdkResolvers.ShouldBe(1); 80buildTelemetry.ErrorCounts.NetSdk.ShouldBe(1); 83buildTelemetry.ErrorCounts.NuGet.ShouldBe(1); 86buildTelemetry.ErrorCounts.BuildCheck.ShouldBe(1); 89buildTelemetry.ErrorCounts.Other.ShouldBe(1); 128buildTelemetry.ErrorCounts.Compiler.ShouldBe(2); 129buildTelemetry.ErrorCounts.MsBuildGeneral.ShouldBe(1); 130buildTelemetry.ErrorCounts.Task.ShouldBe(1); 131buildTelemetry.ErrorCounts.NuGet.ShouldBe(1); 132buildTelemetry.ErrorCounts.Other.ShouldBe(1); 171buildTelemetry.ErrorCounts.Task.ShouldBe(3); 172buildTelemetry.ErrorCounts.Compiler.ShouldBe(1); 209buildTelemetry.ErrorCounts.Compiler.ShouldBe(1);
Microsoft.Build.Framework (3)
Telemetry\BuildTelemetry.cs (3)
180AddIfNotNull(ErrorCounts); 211AddIfNotNull(ErrorCounts?.ToString(), nameof(ErrorCounts));