20 references to GetDependentSemanticVersionAsync
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (2)
Workspaces\WorkspaceTests_EditorFeatures.cs (2)
585var newVersion = await cs.GetProject(project1.Id).GetDependentSemanticVersionAsync(); 586var newVersionX = await doc1Z.Project.GetDependentSemanticVersionAsync();
Microsoft.CodeAnalysis.EditorFeatures (1)
Classification\Semantic\AbstractSemanticOrEmbeddedClassificationViewTaggerProvider.cs (1)
124var 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)
135var 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)
4123await documentToFreeze.Project.GetDependentSemanticVersionAsync(), 4124await frozenDocument.Project.GetDependentSemanticVersionAsync()); 4148await documentToFreeze.Project.GetDependentSemanticVersionAsync(), 4149await frozenDocument.Project.GetDependentSemanticVersionAsync()); 4188await documentToFreezeOriginal.Project.GetDependentSemanticVersionAsync(), 4189await frozenDocument.Project.GetDependentSemanticVersionAsync()); 4192await documentToFreezeChanged.Project.GetDependentSemanticVersionAsync(), 4193await frozenDocument.Project.GetDependentSemanticVersionAsync()); 4234await documentToFreezeOriginal.Project.GetDependentSemanticVersionAsync(), 4235await frozenDocument.Project.GetDependentSemanticVersionAsync()); 4238await documentToFreezeChanged.Project.GetDependentSemanticVersionAsync(), 4239await frozenDocument.Project.GetDependentSemanticVersionAsync());