23 references to GetChanges
AnalyzerRunner (1)
CodeRefactoringRunner.cs (1)
103var changes = applyChangesOperation.ChangedSolution.GetChanges(document.Project.Solution);
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Extensions\ISolutionExtensions.cs (1)
20var solutionChanges = newSolution.GetChanges(oldSolution);
Microsoft.CodeAnalysis.EditorFeatures (2)
CodeActions\CodeActionEditHandlerService.cs (1)
197var changes = newSolution.GetChanges(oldSolution);
Preview\AbstractPreviewFactoryService.cs (1)
81var solutionChanges = newSolution.GetChanges(oldSolution);
Microsoft.CodeAnalysis.Features (2)
CodeRefactorings\SyncNamespace\AbstractChangeNamespaceService.cs (1)
847var diffMergingSession = new LinkedFileDiffMergingSession(oldSolution, newSolution, newSolution.GetChanges(oldSolution));
ExternalAccess\UnitTesting\SolutionCrawler\UnitTestingWorkCoordinator.cs (1)
208var solutionChanges = newSolution.GetChanges(oldSolution);
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Features\CodeCleanup\AbstractCodeCleanupService.cs (1)
250var solutionChanges = updatedDocument.Project.Solution.GetChanges(currentDocument.Project.Solution);
Handler\CodeActions\CodeActionResolveHelper.cs (1)
63var changes = applyChangesOperation.ChangedSolution.GetChanges(solution);
Microsoft.CodeAnalysis.Workspaces (8)
CodeActions\CodeAction_Cleanup.cs (1)
63var solutionChanges = changedSolution.GetChanges(originalSolution);
CodeActions\Operations\ApplyChangesOperation.cs (1)
79var solutionChanges = changedSolution.GetChanges(originalSolution);
Editing\SymbolEditor.cs (1)
69var solutionChanges = ChangedSolution.GetChanges(OriginalSolution);
Remote\RemoteUtilities.cs (1)
29var solutionChanges = newSolution.GetChanges(oldSolution);
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Extensions\ISolutionExtensions.cs (1)
20var solutionChanges = newSolution.GetChanges(oldSolution);
Workspace\Solution\Solution.cs (1)
1557var session = new LinkedFileDiffMergingSession(oldSolution, this, solutionChanges ?? this.GetChanges(oldSolution));
Workspace\Workspace.cs (2)
285var changes = newSolution.GetChanges(oldSolution); 1989var changes = newSolution.GetChanges(oldSolution);
Microsoft.CodeAnalysis.Workspaces.Test.Utilities (2)
SolutionUtilities.cs (2)
19var solutionDifferences = newSolution.GetChanges(oldSolution); 35var solutionDifferences = newSolution.GetChanges(oldSolution);
Microsoft.CodeAnalysis.Workspaces.UnitTests (1)
SolutionTests\SolutionTests.cs (1)
2999var changes = newSolution.GetChanges(solution).GetProjectChanges().Single();
Microsoft.VisualStudio.LanguageServices (4)
Preview\PreviewEngine.cs (1)
105var changes = _newSolution.GetChanges(_oldSolution);
ProjectSystem\VisualStudioWorkspaceImpl.cs (1)
322var projectChanges = newSolution.GetChanges(currentSolution).GetProjectChanges().ToList();
SyncNamespaces\SyncNamespacesCommandHandler.cs (1)
146if (_workspace.CurrentSolution.GetChanges(solution).GetProjectChanges().Any())
Workspace\VisualStudioSymbolRenamedCodeActionOperationFactoryWorkspaceService.cs (1)
69var updatedDocumentIds = _updatedSolution.GetChanges(_startingSolution).GetProjectChanges().SelectMany(p => p.GetChangedDocuments());