21 references to GetSemanticVersionAsync
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (4)
Workspaces\WorkspaceTests_EditorFeatures.cs (4)
1122var oldVersion = await project.GetSemanticVersionAsync(); 1136Assert.NotEqual(oldVersion, await doc.Project.GetSemanticVersionAsync()); 1155var oldVersion = await project.GetSemanticVersionAsync(); 1169Assert.NotEqual(oldVersion, await doc.Project.GetSemanticVersionAsync());
Microsoft.CodeAnalysis.Workspaces (1)
FindSymbols\SymbolTree\SymbolTreeInfoCacheService.cs (1)
166var semanticVersion = await project.GetSemanticVersionAsync(cancellationToken).ConfigureAwait(false);
Microsoft.CodeAnalysis.Workspaces.UnitTests (16)
SolutionTests\ProjectSemanticVersionTests.cs (4)
263Assert.NotEqual(await project1.GetSemanticVersionAsync(), await project2.GetSemanticVersionAsync()); 268Assert.Equal(await project1.GetSemanticVersionAsync(), await project2.GetSemanticVersionAsync());
SolutionTests\SolutionTests.cs (12)
4104await documentToFreeze.Project.GetSemanticVersionAsync(), 4105await frozenDocument.Project.GetSemanticVersionAsync()); 4129await documentToFreeze.Project.GetSemanticVersionAsync(), 4130await frozenDocument.Project.GetSemanticVersionAsync()); 4173await documentToFreezeOriginal.Project.GetSemanticVersionAsync(), 4174await frozenDocument.Project.GetSemanticVersionAsync()); 4177await documentToFreezeChanged.Project.GetSemanticVersionAsync(), 4178await frozenDocument.Project.GetSemanticVersionAsync()); 4219await documentToFreezeOriginal.Project.GetSemanticVersionAsync(), 4220await frozenDocument.Project.GetSemanticVersionAsync()); 4223await documentToFreezeChanged.Project.GetSemanticVersionAsync(), 4224await frozenDocument.Project.GetSemanticVersionAsync());