19 references to GetDependentSemanticVersionAsync
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (2)
Workspaces\WorkspaceTests_EditorFeatures.cs (2)
553var newVersion = await cs.GetProject(project1.Id).GetDependentSemanticVersionAsync(); 554var newVersionX = await doc1Z.Project.GetDependentSemanticVersionAsync();
Microsoft.CodeAnalysis.EditorFeatures (2)
Classification\Semantic\ClassificationUtilities.cs (2)
110var currentSemanticVersion = await document.Project.GetDependentSemanticVersionAsync(cancellationToken).ConfigureAwait(false); 173var version = await document.Project.GetDependentSemanticVersionAsync(cancellationToken).ConfigureAwait(false);
Microsoft.CodeAnalysis.Workspaces (5)
SemanticModelReuse\SemanticModelWorkspaceServiceFactory.SemanticModelWorkspaceService.cs (1)
144var topLevelSemanticVersion = await document.Project.GetDependentSemanticVersionAsync(cancellationToken).ConfigureAwait(false);
Workspace\Solution\Project.cs (2)
547/// <see cref="Project.GetDependentSemanticVersionAsync(CancellationToken)"/> does not change as it only returns top level changes.</item> 549/// <see cref="Project.GetDependentSemanticVersionAsync(CancellationToken)"/> changes as the project is removed, then added resulting in a version change.</item>
Workspace\Solution\SolutionState.SkeletonReferenceCache.cs (2)
39/// cref="VersionStamp"/> for a project. As long as the <see cref="Project.GetDependentSemanticVersionAsync"/> for 87/// The <see cref="Project.GetDependentSemanticVersionAsync"/> version of the project that the
Microsoft.CodeAnalysis.Workspaces.UnitTests (10)
SolutionTests\SolutionTests.cs (10)
3447await documentToFreeze.Project.GetDependentSemanticVersionAsync(), 3448await frozenDocument.Project.GetDependentSemanticVersionAsync()); 3484await documentToFreezeOriginal.Project.GetDependentSemanticVersionAsync(), 3485await frozenDocument.Project.GetDependentSemanticVersionAsync()); 3488await documentToFreezeChanged.Project.GetDependentSemanticVersionAsync(), 3489await frozenDocument.Project.GetDependentSemanticVersionAsync()); 3530await documentToFreezeOriginal.Project.GetDependentSemanticVersionAsync(), 3531await frozenDocument.Project.GetDependentSemanticVersionAsync()); 3534await documentToFreezeChanged.Project.GetDependentSemanticVersionAsync(), 3535await frozenDocument.Project.GetDependentSemanticVersionAsync());