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