14 references to CustomSeverityConfigurable
Microsoft.CodeAnalysis (3)
Diagnostic\WellKnownDiagnosticTags.cs (1)
51public const string CustomSeverityConfigurable = nameof(CustomSeverityConfigurable);
DiagnosticAnalyzer\AnalyzerManager.cs (2)
436if (customTag is WellKnownDiagnosticTags.Compiler or WellKnownDiagnosticTags.NotConfigurable or WellKnownDiagnosticTags.CustomSeverityConfigurable) 449=> HasCustomTag(customTags, WellKnownDiagnosticTags.CustomSeverityConfigurable);
Microsoft.CodeAnalysis.CodeStyle (5)
src\Analyzers\Core\Analyzers\AbstractBuiltInCodeStyleDiagnosticAnalyzer.cs (1)
88Debug.Assert(option is { Definition.DefaultValue: ICodeStyleOption2 } == descriptor.CustomTags.Contains(WellKnownDiagnosticTags.CustomSeverityConfigurable));
src\Analyzers\Core\Analyzers\DiagnosticCustomTags.cs (1)
94customTagsBuilder.Add(WellKnownDiagnosticTags.CustomSeverityConfigurable);
src\Analyzers\Core\Analyzers\Helpers\DiagnosticHelper.cs (3)
295if (customTag != WellKnownDiagnosticTags.CustomSeverityConfigurable) 306if (customTag == WellKnownDiagnosticTags.CustomSeverityConfigurable) 317yield return WellKnownDiagnosticTags.CustomSeverityConfigurable;
Microsoft.CodeAnalysis.Features (5)
src\Analyzers\Core\Analyzers\AbstractBuiltInCodeStyleDiagnosticAnalyzer.cs (1)
88Debug.Assert(option is { Definition.DefaultValue: ICodeStyleOption2 } == descriptor.CustomTags.Contains(WellKnownDiagnosticTags.CustomSeverityConfigurable));
src\Analyzers\Core\Analyzers\DiagnosticCustomTags.cs (1)
94customTagsBuilder.Add(WellKnownDiagnosticTags.CustomSeverityConfigurable);
src\Analyzers\Core\Analyzers\Helpers\DiagnosticHelper.cs (3)
295if (customTag != WellKnownDiagnosticTags.CustomSeverityConfigurable) 306if (customTag == WellKnownDiagnosticTags.CustomSeverityConfigurable) 317yield return WellKnownDiagnosticTags.CustomSeverityConfigurable;
Microsoft.CodeAnalysis.Test.Utilities (1)
Diagnostics\CommonDiagnosticAnalyzers.cs (1)
2515customTags = [WellKnownDiagnosticTags.CustomSeverityConfigurable];