7 references to GetAllDiagnosticsAsync
Microsoft.CodeAnalysis.CodeStyle.Fixes (2)
AbstractChangeNamespaceToMatchFolderCodeFixProvider.CustomFixAllProvider.cs (2)
35
FixAllScope.Project => await fixAllContext.
GetAllDiagnosticsAsync
(fixAllContext.Project).ConfigureAwait(false),
64
var projectDiagnostics = await fixAllContext.
GetAllDiagnosticsAsync
(project).ConfigureAwait(false);
Microsoft.CodeAnalysis.Features (2)
AbstractChangeNamespaceToMatchFolderCodeFixProvider.CustomFixAllProvider.cs (2)
35
FixAllScope.Project => await fixAllContext.
GetAllDiagnosticsAsync
(fixAllContext.Project).ConfigureAwait(false),
64
var 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)
62
allDiagnostics = await fixAllContext.
GetAllDiagnosticsAsync
(project).ConfigureAwait(false);
100
var projectDiagnostics = await fixAllContext.
GetAllDiagnosticsAsync
(projectToFix).ConfigureAwait(false);