13 references to Compiler
Microsoft.Build (3)
BackEnd\Components\Logging\BuildErrorTelemetryTracker.cs (3)
88Compiler: GetCountOrNull(ErrorCategory.Compiler), 137return ErrorCategory.Compiler; 143return ErrorCategory.Compiler;
Microsoft.Build.Engine.UnitTests (10)
BackEnd\BuildTelemetryErrorCategorization_Tests.cs (7)
21[InlineData("CS0103", null, nameof(ErrorCategory.Compiler))] 22[InlineData("CS1002", "CS", nameof(ErrorCategory.Compiler))] 23[InlineData("VBC30451", "VBC", nameof(ErrorCategory.Compiler))] 24[InlineData("FS0039", null, nameof(ErrorCategory.Compiler))] 67case nameof(ErrorCategory.Compiler): 135buildTelemetry.FailureCategory.ShouldBe(nameof(ErrorCategory.Compiler)); 208buildTelemetry.FailureCategory.ShouldBe(nameof(ErrorCategory.Compiler));
BackEnd\KnownTelemetry_Tests.cs (3)
136buildTelemetry.FailureCategory = nameof(ErrorCategory.Compiler); 158properties["FailureCategory"].ShouldBe(nameof(ErrorCategory.Compiler)); 162activityProperties["FailureCategory"].ShouldBe(nameof(ErrorCategory.Compiler));