1 implementation of GetDiagnosticDescriptorsPerReferenceAsync
Microsoft.CodeAnalysis.Features (1)
Diagnostics\Service\DiagnosticAnalyzerService_RemoteOrLocalDispatcher.cs (1)
105
public async Task<ImmutableDictionary<string, ImmutableArray<DiagnosticDescriptor>>>
GetDiagnosticDescriptorsPerReferenceAsync
(
3 references to GetDiagnosticDescriptorsPerReferenceAsync
Microsoft.CodeAnalysis.Features (2)
Diagnostics\IDiagnosticAnalyzerService.cs (2)
153
=> service.
GetDiagnosticDescriptorsPerReferenceAsync
(solution, projectId: null, cancellationToken);
157
=> service.
GetDiagnosticDescriptorsPerReferenceAsync
(project.Solution, project.Id, cancellationToken);
Microsoft.CodeAnalysis.Remote.ServiceHub (1)
Services\DiagnosticAnalyzer\RemoteDiagnosticAnalyzerService.cs (1)
208
var map = await service.
GetDiagnosticDescriptorsPerReferenceAsync
(solution, projectId, cancellationToken).ConfigureAwait(false);