11 references to WorkspaceVersion
Microsoft.CodeAnalysis.Workspaces (11)
CodeActions\Operations\ApplyChangesOperation.cs (2)
56if (changedSolution.WorkspaceVersion == currentSolution.WorkspaceVersion)
ExternalAccess\UnitTesting\Api\UnitTestingSolutionExtensions.cs (1)
13=> solution.WorkspaceVersion;
Workspace\Workspace.cs (8)
195_latestSolution = solution.WithNewWorkspace(oldSolution.WorkspaceKind, oldSolution.WorkspaceVersion + 1, oldSolution.Services); 469/// name="transformation"/> as it will have its <see cref="Solution.WorkspaceVersion"/> updated 474/// name="transformation"/> as it will have its <see cref="Solution.WorkspaceVersion"/> updated 539newSolution = newSolution.WithNewWorkspace(oldSolution.WorkspaceKind, oldSolution.WorkspaceVersion + 1, oldSolution.Services); 1570if (newSolution.WorkspaceVersion != oldSolution.WorkspaceVersion) 1578var oldWorkspaceVersion = oldSolution.WorkspaceVersion; 1579var newWorkspaceVersion = newSolution.WorkspaceVersion;