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)
3947await documentToFreeze.Project.GetSemanticVersionAsync(), 3948await frozenDocument.Project.GetSemanticVersionAsync()); 3972await documentToFreeze.Project.GetSemanticVersionAsync(), 3973await frozenDocument.Project.GetSemanticVersionAsync()); 4016await documentToFreezeOriginal.Project.GetSemanticVersionAsync(), 4017await frozenDocument.Project.GetSemanticVersionAsync()); 4020await documentToFreezeChanged.Project.GetSemanticVersionAsync(), 4021await frozenDocument.Project.GetSemanticVersionAsync()); 4062await documentToFreezeOriginal.Project.GetSemanticVersionAsync(), 4063await frozenDocument.Project.GetSemanticVersionAsync()); 4066await documentToFreezeChanged.Project.GetSemanticVersionAsync(), 4067await frozenDocument.Project.GetSemanticVersionAsync());