21 references to GetSemanticVersionAsync
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (4)
Workspaces\WorkspaceTests_EditorFeatures.cs (4)
1110var oldVersion = await project.GetSemanticVersionAsync(); 1124Assert.NotEqual(oldVersion, await doc.Project.GetSemanticVersionAsync()); 1143var oldVersion = await project.GetSemanticVersionAsync(); 1157Assert.NotEqual(oldVersion, await doc.Project.GetSemanticVersionAsync());
Microsoft.CodeAnalysis.Workspaces (1)
FindSymbols\SymbolTree\SymbolTreeInfoCacheService.cs (1)
165var 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)
4090await documentToFreeze.Project.GetSemanticVersionAsync(), 4091await frozenDocument.Project.GetSemanticVersionAsync()); 4115await documentToFreeze.Project.GetSemanticVersionAsync(), 4116await frozenDocument.Project.GetSemanticVersionAsync()); 4159await documentToFreezeOriginal.Project.GetSemanticVersionAsync(), 4160await frozenDocument.Project.GetSemanticVersionAsync()); 4163await documentToFreezeChanged.Project.GetSemanticVersionAsync(), 4164await frozenDocument.Project.GetSemanticVersionAsync()); 4205await documentToFreezeOriginal.Project.GetSemanticVersionAsync(), 4206await frozenDocument.Project.GetSemanticVersionAsync()); 4209await documentToFreezeChanged.Project.GetSemanticVersionAsync(), 4210await frozenDocument.Project.GetSemanticVersionAsync());