19 references to GetDependentSemanticVersionAsync
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (2)
Workspaces\WorkspaceTests_EditorFeatures.cs (2)
553
var newVersion = await cs.GetProject(project1.Id).
GetDependentSemanticVersionAsync
();
554
var newVersionX = await doc1Z.Project.
GetDependentSemanticVersionAsync
();
Microsoft.CodeAnalysis.EditorFeatures (2)
Classification\Semantic\ClassificationUtilities.cs (2)
110
var currentSemanticVersion = await document.Project.
GetDependentSemanticVersionAsync
(cancellationToken).ConfigureAwait(false);
173
var version = await document.Project.
GetDependentSemanticVersionAsync
(cancellationToken).ConfigureAwait(false);
Microsoft.CodeAnalysis.Workspaces (5)
SemanticModelReuse\SemanticModelWorkspaceServiceFactory.SemanticModelWorkspaceService.cs (1)
144
var 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)
3447
await documentToFreeze.Project.
GetDependentSemanticVersionAsync
(),
3448
await frozenDocument.Project.
GetDependentSemanticVersionAsync
());
3484
await documentToFreezeOriginal.Project.
GetDependentSemanticVersionAsync
(),
3485
await frozenDocument.Project.
GetDependentSemanticVersionAsync
());
3488
await documentToFreezeChanged.Project.
GetDependentSemanticVersionAsync
(),
3489
await frozenDocument.Project.
GetDependentSemanticVersionAsync
());
3530
await documentToFreezeOriginal.Project.
GetDependentSemanticVersionAsync
(),
3531
await frozenDocument.Project.
GetDependentSemanticVersionAsync
());
3534
await documentToFreezeChanged.Project.
GetDependentSemanticVersionAsync
(),
3535
await frozenDocument.Project.
GetDependentSemanticVersionAsync
());