22 references to VSDiagnosticTags
Microsoft.CodeAnalysis.LanguageServer.Protocol (14)
Extensions\ProtocolConversions.Diagnostics.cs (12)
81additionalDiagnostic.Tags = [DiagnosticTag.Unnecessary, VSDiagnosticTags.HiddenInEditor, VSDiagnosticTags.HiddenInErrorList, VSDiagnosticTags.SuppressEditorToolTip]; 241result.Add(VSDiagnosticTags.HiddenInEditor); 242result.Add(VSDiagnosticTags.HiddenInErrorList); 243result.Add(VSDiagnosticTags.SuppressEditorToolTip); 247result.Add(VSDiagnosticTags.VisibleInErrorList); 251result.Add(VSDiagnosticTags.TaskItem); 256result.Add(VSDiagnosticTags.PotentialDuplicate); 261? VSDiagnosticTags.BuildError 262: VSDiagnosticTags.IntellisenseError); 265result.Add(VSDiagnosticTags.EditAndContinueError);
Protocol\Extensions\VSDiagnostic.cs (1)
30/// is used (use <see cref="VSDiagnosticTags.SuppressEditorToolTip"/> to prevent a tool tip from being shown).
Protocol\Internal\Diagnostics\VSInternalDiagnosticReport.cs (1)
41/// <see cref="Diagnostic" /> entries tagged with <see cref="VSDiagnosticTags.PotentialDuplicate" /> will
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (2)
Diagnostics\PullDiagnosticTests.cs (2)
1023Assert.Contains(VSDiagnosticTags.BuildError, results[0].Diagnostics!.Single().Tags!); 1063Assert.DoesNotContain(VSDiagnosticTags.BuildError, results[0].Diagnostics!.Single().Tags!);
Microsoft.VisualStudio.LanguageServices.Xaml (6)
Implementation\LanguageServer\Handler\Diagnostics\AbstractPullDiagnosticHandler.cs (6)
170result.Add(VSDiagnosticTags.IntellisenseError); 174result.Add(VSDiagnosticTags.HiddenInEditor); 175result.Add(VSDiagnosticTags.HiddenInErrorList); 176result.Add(VSDiagnosticTags.SuppressEditorToolTip); 180result.Add(VSDiagnosticTags.HiddenInErrorList); 184result.Add(VSDiagnosticTags.VisibleInErrorList);