2 implementations of GetDependentSemanticVersionAsync
Microsoft.CodeAnalysis.Workspaces (2)
Workspace\Solution\SolutionState.CompilationTracker.cs (1)
1167public Task<VersionStamp> GetDependentSemanticVersionAsync(SolutionState solution, CancellationToken cancellationToken)
Workspace\Solution\SolutionState.GeneratedFileReplacingCompilationTracker.cs (1)
116public Task<VersionStamp> GetDependentSemanticVersionAsync(SolutionState solution, CancellationToken cancellationToken)
3 references to GetDependentSemanticVersionAsync
Microsoft.CodeAnalysis.Workspaces (3)
Workspace\Solution\SolutionState.cs (1)
385=> this.GetCompilationTracker(projectId).GetDependentSemanticVersionAsync(this, cancellationToken);
Workspace\Solution\SolutionState.GeneratedFileReplacingCompilationTracker.cs (1)
117=> UnderlyingTracker.GetDependentSemanticVersionAsync(solution, cancellationToken);
Workspace\Solution\SolutionState.SkeletonReferenceCache.cs (1)
137var version = await compilationTracker.GetDependentSemanticVersionAsync(solution, cancellationToken).ConfigureAwait(false);