3 instantiations of SolutionChanges
Microsoft.CodeAnalysis.Features (1)
CodeFixes\Suppression\AbstractSuppressionBatchFixAllProvider.cs (1)
391var solutionChanges = new SolutionChanges(changedSolution, oldSolution);
Microsoft.CodeAnalysis.Workspaces (2)
CodeFixes\FixAllOccurrences\BatchFixAllProvider.cs (1)
172var changedDocumentIds = new SolutionChanges(changedSolution, solution).GetProjectChanges().SelectMany(p => p.GetChangedDocuments());
Workspace\Solution\Solution.cs (1)
1813return new SolutionChanges(this, oldSolution);
33 references to SolutionChanges
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 (2)
870var changes = _baseSolution.GetChanges(newSolution); 901var finalChanges = _workspace.CurrentSolution.GetChanges(_baseSolution);
Preview\AbstractPreviewFactoryService.cs (1)
82var solutionChanges = newSolution.GetChanges(oldSolution);
Preview\SolutionChangeSummary.cs (1)
17public SolutionChangeSummary(Solution oldSolution, Solution newSolution, SolutionChanges changes)
Microsoft.CodeAnalysis.Features (3)
CodeFixes\Suppression\AbstractSuppressionBatchFixAllProvider.cs (1)
391var solutionChanges = new SolutionChanges(changedSolution, 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 (3)
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 (1)
74var solutionChanges = renamedSolution.GetChanges(oldSolution);
Microsoft.CodeAnalysis.Workspaces (14)
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);
LinkedFileDiffMerging\LinkedFileDiffMergingSession.cs (2)
24private readonly SolutionChanges _solutionChanges; 26public LinkedFileDiffMergingSession(Solution oldSolution, Solution newSolution, SolutionChanges solutionChanges)
Remote\RemoteUtilities.cs (1)
30var solutionChanges = newSolution.GetChanges(oldSolution);
Workspace\Solution\Solution.cs (2)
1687SolutionChanges? solutionChanges = null, 1806public SolutionChanges GetChanges(Solution oldSolution)
Workspace\Workspace.cs (5)
264var changes = newSolution.GetChanges(oldSolution); 1308var solutionChanges = newSolution.GetChanges(oldSolution); 1362internal virtual void ApplyMappedFileChanges(SolutionChanges solutionChanges) 1367private void CheckAllowedSolutionChanges(SolutionChanges solutionChanges) 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.VisualStudio.LanguageServices (3)
Preview\PreviewEngine.cs (1)
109var changes = _newSolution.GetChanges(_oldSolution);
ProjectSystem\VisualStudioWorkspaceImpl.cs (2)
637internal override void ApplyMappedFileChanges(SolutionChanges solutionChanges) 663async Task<MultiDictionary<string, (TextChange TextChange, ProjectId ProjectId)>> GetMappedTextChanges(SolutionChanges solutionChanges)
Microsoft.VisualStudio.LanguageServices.Implementation (1)
CodeModel\ProjectCodeModelFactory.cs (1)
178var changes = e.OldSolution.GetChanges(e.NewSolution);