17 references to CustomTags
Microsoft.CodeAnalysis.EditorFeatures (1)
InlineDiagnostics\InlineDiagnosticsTaggerProvider.cs (1)
80
return diagnostic.
CustomTags
.Contains(WellKnownDiagnosticTags.EditAndContinue)
Microsoft.CodeAnalysis.Features (4)
CodeFixes\Suppression\SuppressionHelpers.cs (3)
66
=> HasCustomTag(diagnostic.
CustomTags
, WellKnownDiagnosticTags.NotConfigurable);
72
=> HasCustomTag(diagnostic.
CustomTags
, WellKnownDiagnosticTags.Compiler);
78
=> HasCustomTag(diagnostic.
CustomTags
, SynthesizedExternalSourceDiagnosticTag);
ExternalAccess\VSTypeScript\Api\VSTypeScriptDiagnosticData.cs (1)
32
=> _data.
CustomTags
;
Microsoft.CodeAnalysis.LanguageServer.Protocol (8)
Extensions\ProtocolConversions.Diagnostics.cs (7)
24
if (d.
CustomTags
.Contains(WellKnownDiagnosticTags.Build))
27
return d.WithCustomTags(d.
CustomTags
.Add(WellKnownDiagnosticTags.Build));
49
if (!diagnosticData.
CustomTags
.Contains(WellKnownDiagnosticTags.Unnecessary))
194
if (diagnosticData.
CustomTags
.Contains(WellKnownDiagnosticTags.Unnecessary))
250
if (diagnosticData.
CustomTags
.Contains(PullDiagnosticConstants.TaskItemCustomTag))
260
result.Add(diagnosticData.
CustomTags
.Contains(WellKnownDiagnosticTags.Build)
264
if (diagnosticData.
CustomTags
.Contains(WellKnownDiagnosticTags.EditAndContinue))
Handler\Diagnostics\DiagnosticsPullCache.cs (1)
84
foreach (var tag in diagnosticData.
CustomTags
.Sort())
Microsoft.CodeAnalysis.Workspaces (3)
Diagnostics\DiagnosticData.cs (3)
102
WarningLevel,
CustomTags
, Properties, ProjectId, location, additionalLocations,
168
location, additionalLocations, customTags:
CustomTags
, properties: Properties);
376
=>
CustomTags
.Contains(WellKnownDiagnosticCustomTags.DoesNotSupportF1Help) ? null : Id;
Microsoft.VisualStudio.LanguageServices (1)
PreviewPane\PreviewPaneService.cs (1)
105
logIdVerbatimInTelemetry: data.
CustomTags
.Contains(WellKnownDiagnosticTags.Telemetry),