37 references to GetChanges
AnalyzerRunner (1)
CodeRefactoringRunner.cs (1)
104var changes = applyChangesOperation.ChangedSolution.GetChanges(document.Project.Solution);
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
ISolutionExtensions.cs (1)
18var solutionChanges = newSolution.GetChanges(oldSolution);
Microsoft.CodeAnalysis.EditorFeatures (5)
CodeActions\CodeActionEditHandlerService.cs (1)
207var changes = newSolution.GetChanges(oldSolution);
InlineRename\InlineRenameSession.cs (3)
582var diffMergingSession = new LinkedFileDiffMergingSession(_baseSolution, replacementInfo.NewSolution, replacementInfo.NewSolution.GetChanges(_baseSolution)); 870var changes = _baseSolution.GetChanges(newSolution); 901var finalChanges = _workspace.CurrentSolution.GetChanges(_baseSolution);
Preview\AbstractPreviewFactoryService.cs (1)
82var solutionChanges = newSolution.GetChanges(oldSolution);
Microsoft.CodeAnalysis.EditorFeatures2.UnitTests (5)
SyncNamespaces\SyncNamespacesServiceTests.vb (5)
46Dim solutionChanges = workspace.CurrentSolution.GetChanges(newSolution) 82Dim solutionChanges = workspace.CurrentSolution.GetChanges(newSolution) 139Dim solutionChanges = workspace.CurrentSolution.GetChanges(newSolution) 193Dim solutionChanges = workspace.CurrentSolution.GetChanges(newSolution) 258Dim solutionChanges = workspace.CurrentSolution.GetChanges(newSolution)
Microsoft.CodeAnalysis.Features (3)
CodeRefactorings\SyncNamespace\AbstractChangeNamespaceService.cs (1)
857var diffMergingSession = new LinkedFileDiffMergingSession(oldSolution, newSolution, newSolution.GetChanges(oldSolution));
ExternalAccess\UnitTesting\SolutionCrawler\UnitTestingWorkCoordinator.cs (1)
335var solutionChanges = newSolution.GetChanges(oldSolution);
SolutionCrawler\WorkCoordinator.cs (1)
282var solutionChanges = newSolution.GetChanges(oldSolution);
Microsoft.CodeAnalysis.LanguageServer.Protocol (4)
Features\CodeCleanup\AbstractCodeCleanupService.cs (1)
246var solutionChanges = updatedDocument.Project.Solution.GetChanges(currentDocument.Project.Solution);
Handler\CodeActions\CodeActionResolveHandler.cs (1)
109var changes = applyChangesOperation.ChangedSolution.GetChanges(solution);
Handler\Rename\RenameHandler.cs (2)
74var solutionChanges = renamedSolution.GetChanges(oldSolution); 79solutionChanges = renamedSolution.GetChanges(oldSolution);
Microsoft.CodeAnalysis.Workspaces (10)
CodeActions\CodeAction.cs (1)
308var solutionChanges = changedSolution.GetChanges(originalSolution);
CodeActions\Operations\ApplyChangesOperation.cs (1)
85var solutionChanges = changedSolution.GetChanges(originalSolution);
Editing\SymbolEditor.cs (1)
72var solutionChanges = _currentSolution.GetChanges(_originalSolution);
ISolutionExtensions.cs (1)
18var solutionChanges = newSolution.GetChanges(oldSolution);
Remote\RemoteUtilities.cs (1)
30var solutionChanges = newSolution.GetChanges(oldSolution);
Workspace\Solution\Solution.cs (1)
1692var session = new LinkedFileDiffMergingSession(oldSolution, this, solutionChanges ?? this.GetChanges(oldSolution));
Workspace\Workspace.cs (4)
264var changes = newSolution.GetChanges(oldSolution); 1308var solutionChanges = newSolution.GetChanges(oldSolution); 1312solutionChanges = solutionWithLinkedFileChangesMerged.GetChanges(oldSolution); 1749var 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)
2351var changes = newSolution.GetChanges(solution).GetProjectChanges().Single();
Microsoft.VisualStudio.LanguageServices (4)
Preview\PreviewEngine.cs (1)
109var changes = _newSolution.GetChanges(_oldSolution);
ProjectSystem\VisualStudioWorkspaceImpl.cs (1)
330var 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());
Microsoft.VisualStudio.LanguageServices.Implementation (1)
CodeModel\ProjectCodeModelFactory.cs (1)
178var changes = e.OldSolution.GetChanges(e.NewSolution);