21 references to GetSemanticVersionAsync
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (4)
Workspaces\WorkspaceTests_EditorFeatures.cs (4)
1121var oldVersion = await project.GetSemanticVersionAsync(); 1135Assert.NotEqual(oldVersion, await doc.Project.GetSemanticVersionAsync()); 1154var oldVersion = await project.GetSemanticVersionAsync(); 1168Assert.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)
4127await documentToFreeze.Project.GetSemanticVersionAsync(), 4128await frozenDocument.Project.GetSemanticVersionAsync()); 4152await documentToFreeze.Project.GetSemanticVersionAsync(), 4153await frozenDocument.Project.GetSemanticVersionAsync()); 4196await documentToFreezeOriginal.Project.GetSemanticVersionAsync(), 4197await frozenDocument.Project.GetSemanticVersionAsync()); 4200await documentToFreezeChanged.Project.GetSemanticVersionAsync(), 4201await frozenDocument.Project.GetSemanticVersionAsync()); 4242await documentToFreezeOriginal.Project.GetSemanticVersionAsync(), 4243await frozenDocument.Project.GetSemanticVersionAsync()); 4246await documentToFreezeChanged.Project.GetSemanticVersionAsync(), 4247await frozenDocument.Project.GetSemanticVersionAsync());