8 references to IDiagnosticAnalyzerService
Microsoft.CodeAnalysis.Features (7)
Diagnostics\CodeAnalysisDiagnosticAnalyzerService.cs (3)
26var diagnosticAnalyzerService = workspaceServices.SolutionServices.ExportProvider.GetExports<IDiagnosticAnalyzerService>().Single().Value; 32private readonly IDiagnosticAnalyzerService _diagnosticAnalyzerService; 52IDiagnosticAnalyzerService diagnosticAnalyzerService,
Diagnostics\IDiagnosticAnalyzerService.cs (2)
96public static Task<ImmutableArray<DiagnosticData>> GetDiagnosticsForSpanAsync(this IDiagnosticAnalyzerService service, 112public static Task<ImmutableArray<DiagnosticData>> GetDiagnosticsForSpanAsync(this IDiagnosticAnalyzerService service,
ExternalAccess\VSTypeScript\VSTypeScriptDiagnosticAnalyzerService.cs (2)
18internal sealed class VSTypeScriptAnalyzerService(IDiagnosticAnalyzerService service) : IVSTypeScriptDiagnosticAnalyzerService 20private readonly IDiagnosticAnalyzerService _service = service;
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Features\Diagnostics\EngineV2\DiagnosticIncrementalAnalyzer_IncrementalAnalyzer.cs (1)
25/// cref="IDiagnosticAnalyzerService"/> entry points as long as the project hasn't changed at all.