20 references to GetDependentSemanticVersionAsync
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (2)
Workspaces\WorkspaceTests_EditorFeatures.cs (2)
585
var newVersion = await cs.GetProject(project1.Id).
GetDependentSemanticVersionAsync
();
586
var newVersionX = await doc1Z.Project.
GetDependentSemanticVersionAsync
();
Microsoft.CodeAnalysis.EditorFeatures (1)
Classification\Semantic\AbstractSemanticOrEmbeddedClassificationViewTaggerProvider.cs (1)
124
var currentSemanticVersion = await document.Project.
GetDependentSemanticVersionAsync
(cancellationToken).ConfigureAwait(false);
Microsoft.CodeAnalysis.Workspaces (5)
Diagnostics\Extensions.cs (2)
457
/// <see cref="Project.
GetDependentSemanticVersionAsync
(CancellationToken)"/> does not change as it only returns top level changes.</item>
459
/// <see cref="Project.
GetDependentSemanticVersionAsync
(CancellationToken)"/> changes as the project is removed, then added resulting in a version change.</item>
SemanticModelReuse\SemanticModelWorkspaceServiceFactory.SemanticModelWorkspaceService.cs (1)
135
var topLevelSemanticVersion = await document.Project.
GetDependentSemanticVersionAsync
(cancellationToken).ConfigureAwait(false);
Workspace\Solution\SolutionCompilationState.SkeletonReferenceCache.cs (2)
38
/// cref="VersionStamp"/> for a project. As long as the <see cref="Project.
GetDependentSemanticVersionAsync
"/> for
104
/// The <see cref="Project.
GetDependentSemanticVersionAsync
"/> version of the project that the <see
Microsoft.CodeAnalysis.Workspaces.UnitTests (12)
SolutionTests\SolutionTests.cs (12)
4123
await documentToFreeze.Project.
GetDependentSemanticVersionAsync
(),
4124
await frozenDocument.Project.
GetDependentSemanticVersionAsync
());
4148
await documentToFreeze.Project.
GetDependentSemanticVersionAsync
(),
4149
await frozenDocument.Project.
GetDependentSemanticVersionAsync
());
4188
await documentToFreezeOriginal.Project.
GetDependentSemanticVersionAsync
(),
4189
await frozenDocument.Project.
GetDependentSemanticVersionAsync
());
4192
await documentToFreezeChanged.Project.
GetDependentSemanticVersionAsync
(),
4193
await frozenDocument.Project.
GetDependentSemanticVersionAsync
());
4234
await documentToFreezeOriginal.Project.
GetDependentSemanticVersionAsync
(),
4235
await frozenDocument.Project.
GetDependentSemanticVersionAsync
());
4238
await documentToFreezeChanged.Project.
GetDependentSemanticVersionAsync
(),
4239
await frozenDocument.Project.
GetDependentSemanticVersionAsync
());