7 references to GetAllDiagnosticsAsync
Microsoft.CodeAnalysis.CodeStyle.Fixes (2)
AbstractChangeNamespaceToMatchFolderCodeFixProvider.CustomFixAllProvider.cs (2)
35FixAllScope.Project => await fixAllContext.GetAllDiagnosticsAsync(fixAllContext.Project).ConfigureAwait(false), 64var projectDiagnostics = await fixAllContext.GetAllDiagnosticsAsync(project).ConfigureAwait(false);
Microsoft.CodeAnalysis.Features (2)
AbstractChangeNamespaceToMatchFolderCodeFixProvider.CustomFixAllProvider.cs (2)
35FixAllScope.Project => await fixAllContext.GetAllDiagnosticsAsync(fixAllContext.Project).ConfigureAwait(false), 64var projectDiagnostics = await fixAllContext.GetAllDiagnosticsAsync(project).ConfigureAwait(false);
Microsoft.CodeAnalysis.Workspaces (3)
CodeFixes\FixAllOccurrences\FixAllContext.cs (1)
55/// Note that <see cref="GetDocumentDiagnosticsAsync(Document)"/>, <see cref="GetProjectDiagnosticsAsync(Project)"/> and <see cref="GetAllDiagnosticsAsync(Project)"/> methods
CodeFixes\FixAllOccurrences\FixAllContextHelper.cs (2)
62allDiagnostics = await fixAllContext.GetAllDiagnosticsAsync(project).ConfigureAwait(false); 100var projectDiagnostics = await fixAllContext.GetAllDiagnosticsAsync(projectToFix).ConfigureAwait(false);