17 references to Compiler
BuildActionTelemetryTable (3)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Extensions\DiagnosticDescriptorExtensions.cs (3)
113
descriptor.ImmutableCustomTags().Any(static tag => tag is WellKnownDiagnosticTags.
Compiler
or WellKnownDiagnosticTags.NotConfigurable))
180
descriptor.ImmutableCustomTags().Any(static tag => tag is WellKnownDiagnosticTags.
Compiler
or WellKnownDiagnosticTags.NotConfigurable))
224
descriptor.ImmutableCustomTags().Any(static tag => tag is WellKnownDiagnosticTags.
Compiler
or WellKnownDiagnosticTags.NotConfigurable))
Microsoft.CodeAnalysis (5)
Diagnostic\DiagnosticInfo.cs (2)
36
private static readonly ImmutableArray<string> s_compilerErrorCustomTags = ImmutableArray.Create(WellKnownDiagnosticTags.
Compiler
, WellKnownDiagnosticTags.Telemetry, WellKnownDiagnosticTags.NotConfigurable);
37
private static readonly ImmutableArray<string> s_compilerNonErrorCustomTags = ImmutableArray.Create(WellKnownDiagnosticTags.
Compiler
, WellKnownDiagnosticTags.Telemetry);
Diagnostic\WellKnownDiagnosticTags.cs (1)
29
public const string Compiler = nameof(
Compiler
);
DiagnosticAnalyzer\AnalyzerManager.cs (1)
436
if (customTag is WellKnownDiagnosticTags.
Compiler
or WellKnownDiagnosticTags.NotConfigurable or WellKnownDiagnosticTags.CustomSeverityConfigurable)
DiagnosticAnalyzer\SuppressMessageAttributeState.cs (1)
146
if (diagnostic.CustomTags.Contains(WellKnownDiagnosticTags.
Compiler
))
Microsoft.CodeAnalysis.CodeStyle (3)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Extensions\DiagnosticDescriptorExtensions.cs (3)
113
descriptor.ImmutableCustomTags().Any(static tag => tag is WellKnownDiagnosticTags.
Compiler
or WellKnownDiagnosticTags.NotConfigurable))
180
descriptor.ImmutableCustomTags().Any(static tag => tag is WellKnownDiagnosticTags.
Compiler
or WellKnownDiagnosticTags.NotConfigurable))
224
descriptor.ImmutableCustomTags().Any(static tag => tag is WellKnownDiagnosticTags.
Compiler
or WellKnownDiagnosticTags.NotConfigurable))
Microsoft.CodeAnalysis.Features (2)
CodeFixes\Suppression\SuppressionHelpers.cs (2)
74
=> HasCustomTag(diagnostic.CustomTags, WellKnownDiagnosticTags.
Compiler
);
77
=> HasCustomTag(diagnostic.Descriptor.ImmutableCustomTags(), WellKnownDiagnosticTags.
Compiler
);
Microsoft.CodeAnalysis.Workspaces (3)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Extensions\DiagnosticDescriptorExtensions.cs (3)
113
descriptor.ImmutableCustomTags().Any(static tag => tag is WellKnownDiagnosticTags.
Compiler
or WellKnownDiagnosticTags.NotConfigurable))
180
descriptor.ImmutableCustomTags().Any(static tag => tag is WellKnownDiagnosticTags.
Compiler
or WellKnownDiagnosticTags.NotConfigurable))
224
descriptor.ImmutableCustomTags().Any(static tag => tag is WellKnownDiagnosticTags.
Compiler
or WellKnownDiagnosticTags.NotConfigurable))
Microsoft.VisualStudio.LanguageServices (1)
TaskList\ProjectExternalErrorReporter.cs (1)
33
internal static readonly ImmutableArray<string> CompilerDiagnosticCustomTags = [WellKnownDiagnosticTags.
Compiler
, WellKnownDiagnosticTags.Telemetry];