15 references to GetAllDiagnosticsAsync
Microsoft.CodeAnalysis.CodeStyle.Fixes (2)
src\Analyzers\Core\CodeFixes\MatchFolderAndNamespace\AbstractChangeNamespaceToMatchFolderCodeFixProvider.CustomFixAllProvider.cs (2)
33
FixAllScope.Project => await fixAllContext.
GetAllDiagnosticsAsync
(fixAllContext.Project).ConfigureAwait(false),
57
var projectDiagnostics = await fixAllContext.
GetAllDiagnosticsAsync
(project).ConfigureAwait(false);
Microsoft.CodeAnalysis.Features (2)
src\Analyzers\Core\CodeFixes\MatchFolderAndNamespace\AbstractChangeNamespaceToMatchFolderCodeFixProvider.CustomFixAllProvider.cs (2)
33
FixAllScope.Project => await fixAllContext.
GetAllDiagnosticsAsync
(fixAllContext.Project).ConfigureAwait(false),
57
var projectDiagnostics = await fixAllContext.
GetAllDiagnosticsAsync
(project).ConfigureAwait(false);
Microsoft.CodeAnalysis.Workspaces (3)
CodeFixes\FixAllOccurrences\FixAllContext.cs (1)
54
/// 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);
82
callback(await fixAllContext.
GetAllDiagnosticsAsync
(projectToFix).ConfigureAwait(false));
Microsoft.Interop.ComInterfaceGenerator (3)
src\libraries\System.Runtime.InteropServices\gen\Common\FixAllContextExtensions.cs (3)
22
return await context.
GetAllDiagnosticsAsync
(context.Project).ConfigureAwait(false);
42
return (await Task.WhenAll(sortedProjects.Select(context.
GetAllDiagnosticsAsync
)).ConfigureAwait(false)).SelectMany(diag => diag).ToImmutableArray();
61
ImmutableArray<Diagnostic> diagnostics = await context.
GetAllDiagnosticsAsync
(project).ConfigureAwait(false);
Microsoft.Interop.LibraryImportGenerator (5)
Analyzers\CustomMarshallerAttributeFixer.cs (2)
94
return await context.
GetAllDiagnosticsAsync
(context.Project).ConfigureAwait(false);
96
return ImmutableArray.CreateRange((await Task.WhenAll(context.Solution.Projects.Select(context.
GetAllDiagnosticsAsync
)).ConfigureAwait(false)).SelectMany(arr => arr));
src\libraries\System.Runtime.InteropServices\gen\Common\FixAllContextExtensions.cs (3)
22
return await context.
GetAllDiagnosticsAsync
(context.Project).ConfigureAwait(false);
42
return (await Task.WhenAll(sortedProjects.Select(context.
GetAllDiagnosticsAsync
)).ConfigureAwait(false)).SelectMany(diag => diag).ToImmutableArray();
61
ImmutableArray<Diagnostic> diagnostics = await context.
GetAllDiagnosticsAsync
(project).ConfigureAwait(false);