8 references to GetDependentVersionAsync
Microsoft.CodeAnalysis.Features (1)
Diagnostics\Service\DiagnosticAnalyzerService.cs (1)
81=> project.GetDependentVersionAsync(cancellationToken);
Microsoft.CodeAnalysis.LanguageServer.Protocol (5)
Handler\Diagnostics\DiagnosticsPullCache.cs (2)
26/// cref="Project.GetDependentVersionAsync(CancellationToken)"/> while the <see cref="Checksum"/> is produced by 38return (state.GlobalStateVersion, await state.Project.GetDependentVersionAsync(cancellationToken).ConfigureAwait(false));
Handler\SourceGenerators\SourceGeneratedDocumentCache.cs (1)
24var dependentVersion = await state.Document.Project.GetDependentVersionAsync(cancellationToken).ConfigureAwait(false);
Handler\SourceGenerators\SourceGeneratorRefreshQueue.cs (2)
115if (await oldProject.GetDependentVersionAsync(_disposalTokenSource.Token).ConfigureAwait(false) != 116await newProject.GetDependentVersionAsync(_disposalTokenSource.Token).ConfigureAwait(false))
Microsoft.VisualStudio.LanguageServices (2)
Workspace\SourceGeneratedFileManager.cs (2)
456if (await oldProject.GetDependentVersionAsync(_cancellationTokenSource.Token).ConfigureAwait(false) != 457await newProject.GetDependentVersionAsync(_cancellationTokenSource.Token).ConfigureAwait(false))