5 references to GetSourceGeneratedDocumentAsync
dotnet-format (2)
Analyzers\AnalyzerFormatter.cs (1)
128
document = await solution.
GetSourceGeneratedDocumentAsync
(documentId, cancellationToken).ConfigureAwait(false);
CodeFormatter.cs (1)
87
documentWithError = await solution.
GetSourceGeneratedDocumentAsync
(documentId, cancellationToken).ConfigureAwait(false);
Microsoft.CodeAnalysis.Features (3)
EditAndContinue\CommittedSolution.cs (1)
192
var sourceGeneratedDocument = await solution.
GetSourceGeneratedDocumentAsync
(documentId, cancellationToken).ConfigureAwait(false);
ExternalAccess\UnitTesting\SolutionCrawler\UnitTestingWorkCoordinator.UnitTestingNormalPriorityProcessor.cs (1)
205
var textDocument = solution.GetTextDocument(documentId) ?? await solution.
GetSourceGeneratedDocumentAsync
(documentId, cancellationToken).ConfigureAwait(false);
FindUsages\IRemoteFindUsagesService.cs (1)
180
await solution.
GetSourceGeneratedDocumentAsync
(DocumentId, cancellationToken).ConfigureAwait(false);