8 references to GetDependentVersionAsync
Microsoft.CodeAnalysis.LanguageServer.Protocol (6)
Features\Diagnostics\DiagnosticAnalyzerService.cs (1)
60=> project.GetDependentVersionAsync(cancellationToken);
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)
114if (await oldProject.GetDependentVersionAsync(_disposalTokenSource.Token).ConfigureAwait(false) != 115await newProject.GetDependentVersionAsync(_disposalTokenSource.Token).ConfigureAwait(false))
Microsoft.VisualStudio.LanguageServices (2)
Workspace\SourceGeneratedFileManager.cs (2)
454if (await oldProject.GetDependentVersionAsync(_cancellationTokenSource.Token).ConfigureAwait(false) != 455await newProject.GetDependentVersionAsync(_cancellationTokenSource.Token).ConfigureAwait(false))