7 references to ToCustomTag
Microsoft.CodeAnalysis.Features (4)
src\Analyzers\Core\Analyzers\DiagnosticCustomTags.cs (2)
14private static readonly string s_enforceOnBuildNeverTag = EnforceOnBuild.Never.ToCustomTag(); 79customTagsBuilder.Add(enforceOnBuild.ToCustomTag());
src\Analyzers\Core\Analyzers\RemoveUnnecessaryImports\AbstractRemoveUnnecessaryImportsDiagnosticAnalyzer.cs (1)
43customTags: [.. DiagnosticCustomTags.Microsoft, EnforceOnBuild.Never.ToCustomTag()]);
src\Analyzers\Core\Analyzers\ValidateFormatString\AbstractValidateFormatStringDiagnosticAnalyzer.cs (1)
41customTags: EnforceOnBuildValues.ValidateFormatString.ToCustomTag());
Microsoft.CodeAnalysis.Features.UnitTests (3)
EditAndContinue\EditAndContinueDiagnosticDescriptorsTests.cs (3)
23Assert.Equal(["EditAndContinue", "Telemetry", "NotConfigurable", EnforceOnBuild.Never.ToCustomTag()], d.CustomTags); 35Assert.Equal(["EditAndContinue", "Telemetry", "NotConfigurable", EnforceOnBuild.Never.ToCustomTag()], d.CustomTags); 45Assert.Equal(["EditAndContinue", "Telemetry", "NotConfigurable", EnforceOnBuild.Never.ToCustomTag()], d.CustomTags);