2 implementations of GetProjectCodeLensVersionAsync
Microsoft.CodeAnalysis.Features (1)
CodeLens\CodeLensReferencesService.cs (1)
86public async ValueTask<VersionStamp> GetProjectCodeLensVersionAsync(Solution solution, ProjectId projectId, CancellationToken cancellationToken)
Microsoft.VisualStudio.LanguageServices (1)
CodeLens\VisualStudioCodeLensReferencesService.cs (1)
26public ValueTask<VersionStamp> GetProjectCodeLensVersionAsync(Solution solution, ProjectId projectId, CancellationToken cancellationToken)
4 references to GetProjectCodeLensVersionAsync
Microsoft.VisualStudio.LanguageServices (4)
CodeLens\CodeLensCallbackListener.cs (3)
80var projectVersion = await service.GetProjectCodeLensVersionAsync(solution, project.Id, cancellationToken).ConfigureAwait(false); 108var currentProjectVersion = await service.GetProjectCodeLensVersionAsync(solution, document.Project.Id, cancellationToken).ConfigureAwait(false); 143var projectVersion = await service.GetProjectCodeLensVersionAsync(solution, document.Id.ProjectId, cancellationToken).ConfigureAwait(false);
CodeLens\VisualStudioCodeLensReferencesService.cs (1)
29return CodeLensReferencesServiceFactory.Instance.GetProjectCodeLensVersionAsync(solution, projectId, cancellationToken);