11 references to GetSourceGeneratedDocumentsAsync
dotnet-format (1)
CodeFormatter.cs (1)
259
var generatedDocuments = await project.
GetSourceGeneratedDocumentsAsync
(cancellationToken).ConfigureAwait(false);
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SemanticFacts\CSharpSemanticFacts.cs (1)
529
foreach (var generatedDocument in await document.Project.
GetSourceGeneratedDocumentsAsync
(cancellationToken).ConfigureAwait(false))
Microsoft.CodeAnalysis.Features (6)
Copilot\ICopilotChangeAnalysisService.cs (1)
116
var sourceGeneratedDocuments = await newDocument.Project.
GetSourceGeneratedDocumentsAsync
(cancellationToken).ConfigureAwait(false);
Diagnostics\Service\DiagnosticAnalyzerService_ForceCodeAnalysisDiagnostics.cs (1)
46
var sourceGeneratorDocuments = await project.
GetSourceGeneratedDocumentsAsync
(cancellationToken).ConfigureAwait(false);
ExternalAccess\UnitTesting\SolutionCrawler\UnitTestingWorkCoordinator.cs (3)
311
var oldProjectSourceGeneratedDocuments = await oldProject.
GetSourceGeneratedDocumentsAsync
(_shutdownToken).ConfigureAwait(false);
313
var newProjectSourceGeneratedDocuments = await newProject.
GetSourceGeneratedDocumentsAsync
(_shutdownToken).ConfigureAwait(false);
396
foreach (var document in await project.
GetSourceGeneratedDocumentsAsync
(_shutdownToken).ConfigureAwait(false))
NavigateTo\AbstractNavigateToSearchService.GeneratedDocumentSearch.cs (1)
81
var sourceGeneratedDocs = await project.
GetSourceGeneratedDocumentsAsync
(cancellationToken).ConfigureAwait(false);
Microsoft.CodeAnalysis.Workspaces (3)
Log\WorkspaceStructureLogger.cs (1)
85
var sourceGeneratedDocuments = await project.
GetSourceGeneratedDocumentsAsync
(cancellationToken).ConfigureAwait(false);
Workspace\Solution\Project.cs (2)
196
/// <see cref="
GetSourceGeneratedDocumentsAsync
(CancellationToken)"/>.
330
foreach (var document in await
GetSourceGeneratedDocumentsAsync
(cancellationToken).ConfigureAwait(false))