2 implementations of GetProjectCodeLensVersionAsync
Microsoft.CodeAnalysis.Features (1)
CodeLens\CodeLensReferencesService.cs (1)
84
public async ValueTask<VersionStamp>
GetProjectCodeLensVersionAsync
(Solution solution, ProjectId projectId, CancellationToken cancellationToken)
Microsoft.VisualStudio.LanguageServices (1)
CodeLens\RemoteCodeLensReferencesService.cs (1)
35
public ValueTask<VersionStamp>
GetProjectCodeLensVersionAsync
(Solution solution, ProjectId projectId, CancellationToken cancellationToken)
4 references to GetProjectCodeLensVersionAsync
Microsoft.VisualStudio.LanguageServices (4)
CodeLens\CodeLensCallbackListener.cs (3)
75
var projectVersion = await service.
GetProjectCodeLensVersionAsync
(solution, project.Id, cancellationToken).ConfigureAwait(false);
103
var currentProjectVersion = await service.
GetProjectCodeLensVersionAsync
(solution, documentId.ProjectId, cancellationToken).ConfigureAwait(false);
138
var projectVersion = await service.
GetProjectCodeLensVersionAsync
(solution, documentId.ProjectId, cancellationToken).ConfigureAwait(false);
CodeLens\RemoteCodeLensReferencesService.cs (1)
38
return CodeLensReferencesServiceFactory.Instance.
GetProjectCodeLensVersionAsync
(solution, projectId, cancellationToken);