6 references to GetDependentVersionAsync
Microsoft.CodeAnalysis.Features (1)
CodeLens\CodeLensReferencesService.cs (1)
87
return await solution.GetRequiredProject(projectId).
GetDependentVersionAsync
(cancellationToken).ConfigureAwait(false);
Microsoft.CodeAnalysis.LanguageServer.Protocol (3)
Features\Diagnostics\EngineV2\DiagnosticIncrementalAnalyzer.cs (1)
225
=> project.
GetDependentVersionAsync
(cancellationToken);
Handler\Diagnostics\AbstractPullDiagnosticHandler.cs (2)
60
/// changed. The VersionStamp is produced by <see cref="Project.
GetDependentVersionAsync
(CancellationToken)"/> while the
174
computeCheapVersionAsync: async () => (encVersion, await project.
GetDependentVersionAsync
(cancellationToken).ConfigureAwait(false)),
Microsoft.VisualStudio.LanguageServices (2)
Workspace\SourceGeneratedFileManager.cs (2)
427
if (await oldProject.
GetDependentVersionAsync
(_cancellationTokenSource.Token).ConfigureAwait(false) !=
428
await newProject.
GetDependentVersionAsync
(_cancellationTokenSource.Token).ConfigureAwait(false))