20 references to Compiler
BuildActionTelemetryTable (3)
DiagnosticDescriptorExtensions.cs (3)
74descriptor.ImmutableCustomTags().Any(static tag => tag is WellKnownDiagnosticTags.Compiler or WellKnownDiagnosticTags.NotConfigurable)) 116descriptor.ImmutableCustomTags().Any(static tag => tag is WellKnownDiagnosticTags.Compiler or WellKnownDiagnosticTags.NotConfigurable)) 160descriptor.ImmutableCustomTags().Any(static tag => tag is WellKnownDiagnosticTags.Compiler or WellKnownDiagnosticTags.NotConfigurable))
Microsoft.CodeAnalysis (5)
Diagnostic\DiagnosticInfo.cs (2)
36private static readonly ImmutableArray<string> s_compilerErrorCustomTags = ImmutableArray.Create(WellKnownDiagnosticTags.Compiler, WellKnownDiagnosticTags.Telemetry, WellKnownDiagnosticTags.NotConfigurable); 37private static readonly ImmutableArray<string> s_compilerNonErrorCustomTags = ImmutableArray.Create(WellKnownDiagnosticTags.Compiler, WellKnownDiagnosticTags.Telemetry);
Diagnostic\WellKnownDiagnosticTags.cs (1)
29public const string Compiler = nameof(Compiler);
DiagnosticAnalyzer\AnalyzerManager.cs (1)
406if (customTag is WellKnownDiagnosticTags.Compiler or WellKnownDiagnosticTags.NotConfigurable)
DiagnosticAnalyzer\SuppressMessageAttributeState.cs (1)
142if (diagnostic.CustomTags.Contains(WellKnownDiagnosticTags.Compiler))
Microsoft.CodeAnalysis.CodeStyle (3)
DiagnosticDescriptorExtensions.cs (3)
74descriptor.ImmutableCustomTags().Any(static tag => tag is WellKnownDiagnosticTags.Compiler or WellKnownDiagnosticTags.NotConfigurable)) 116descriptor.ImmutableCustomTags().Any(static tag => tag is WellKnownDiagnosticTags.Compiler or WellKnownDiagnosticTags.NotConfigurable)) 160descriptor.ImmutableCustomTags().Any(static tag => tag is WellKnownDiagnosticTags.Compiler or WellKnownDiagnosticTags.NotConfigurable))
Microsoft.CodeAnalysis.Features (2)
CodeFixes\Suppression\SuppressionHelpers.cs (2)
76=> HasCustomTag(diagnostic.CustomTags, WellKnownDiagnosticTags.Compiler); 79=> HasCustomTag(diagnostic.Descriptor.ImmutableCustomTags(), WellKnownDiagnosticTags.Compiler);
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Features\Diagnostics\EngineV2\DiagnosticIncrementalAnalyzer_GetDiagnosticsForSpan.cs (1)
433&& (_includeCompilerDiagnostics || !diagnostic.CustomTags.Any(static t => t is WellKnownDiagnosticTags.Compiler))
Microsoft.CodeAnalysis.Workspaces (3)
DiagnosticDescriptorExtensions.cs (3)
74descriptor.ImmutableCustomTags().Any(static tag => tag is WellKnownDiagnosticTags.Compiler or WellKnownDiagnosticTags.NotConfigurable)) 116descriptor.ImmutableCustomTags().Any(static tag => tag is WellKnownDiagnosticTags.Compiler or WellKnownDiagnosticTags.NotConfigurable)) 160descriptor.ImmutableCustomTags().Any(static tag => tag is WellKnownDiagnosticTags.Compiler or WellKnownDiagnosticTags.NotConfigurable))
Microsoft.VisualStudio.LanguageServices (3)
TaskList\ExternalErrorDiagnosticUpdateSource.cs (2)
794diagnosticData.CustomTags.Contains(WellKnownDiagnosticTags.Compiler)) 804diagnosticData.CustomTags.Contains(WellKnownDiagnosticTags.Compiler))
TaskList\ProjectExternalErrorReporter.cs (1)
33internal static readonly ImmutableArray<string> CompilerDiagnosticCustomTags = ImmutableArray.Create(WellKnownDiagnosticTags.Compiler, WellKnownDiagnosticTags.Telemetry);