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)
4102await documentToFreeze.Project.GetSemanticVersionAsync(), 4103await frozenDocument.Project.GetSemanticVersionAsync()); 4127await documentToFreeze.Project.GetSemanticVersionAsync(), 4128await frozenDocument.Project.GetSemanticVersionAsync()); 4171await documentToFreezeOriginal.Project.GetSemanticVersionAsync(), 4172await frozenDocument.Project.GetSemanticVersionAsync()); 4175await documentToFreezeChanged.Project.GetSemanticVersionAsync(), 4176await frozenDocument.Project.GetSemanticVersionAsync()); 4217await documentToFreezeOriginal.Project.GetSemanticVersionAsync(), 4218await frozenDocument.Project.GetSemanticVersionAsync()); 4221await documentToFreezeChanged.Project.GetSemanticVersionAsync(), 4222await frozenDocument.Project.GetSemanticVersionAsync());