8 references to GetDependentVersionAsync
Microsoft.CodeAnalysis.LanguageServer.Protocol (6)
Features\Diagnostics\EngineV2\DiagnosticIncrementalAnalyzer.cs (1)
70=> project.GetDependentVersionAsync(cancellationToken);
Handler\Diagnostics\DiagnosticsPullCache.cs (2)
22/// changed. The <see cref="VersionStamp"/> is produced by <see cref="Project.GetDependentVersionAsync(CancellationToken)"/> while the 31return (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)
453if (await oldProject.GetDependentVersionAsync(_cancellationTokenSource.Token).ConfigureAwait(false) != 454await newProject.GetDependentVersionAsync(_cancellationTokenSource.Token).ConfigureAwait(false))