2 instantiations of SolutionChanges
Microsoft.CodeAnalysis.Workspaces (2)
CodeFixes\FixAllOccurrences\BatchFixAllProvider.cs (1)
171var changedDocumentIds = new SolutionChanges(changedSolution, solution).GetProjectChanges().SelectMany(p => p.GetChangedDocuments());
Workspace\Solution\Solution.cs (1)
1656return new SolutionChanges(this, oldSolution);
27 references to SolutionChanges
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 (3)
CodeActions\CodeActionEditHandlerService.cs (1)
197var changes = newSolution.GetChanges(oldSolution);
Preview\AbstractPreviewFactoryService.cs (1)
81var solutionChanges = newSolution.GetChanges(oldSolution);
Preview\SolutionChangeSummary.cs (1)
17public SolutionChangeSummary(Solution oldSolution, Solution newSolution, SolutionChanges changes)
Microsoft.CodeAnalysis.Features (2)
CodeFixes\Suppression\AbstractSuppressionBatchFixAllProvider.cs (1)
360var solutionChanges = new SolutionChanges(changedSolution, 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 (13)
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);
LinkedFileDiffMerging\LinkedFileDiffMergingSession.cs (1)
19internal sealed class LinkedFileDiffMergingSession(Solution oldSolution, Solution newSolution, SolutionChanges solutionChanges)
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 (2)
1542SolutionChanges? solutionChanges = null, 1649public SolutionChanges GetChanges(Solution oldSolution)
Workspace\Workspace.cs (5)
285var changes = newSolution.GetChanges(oldSolution); 1517var solutionChanges = newSolution.GetChanges(oldSolution); 1612internal virtual void ApplyMappedFileChanges(SolutionChanges solutionChanges) 1617private void CheckAllowedSolutionChanges(SolutionChanges solutionChanges) 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.VisualStudio.LanguageServices (3)
Preview\PreviewEngine.cs (1)
105var changes = _newSolution.GetChanges(_oldSolution);
ProjectSystem\VisualStudioWorkspaceImpl.cs (2)
629internal override void ApplyMappedFileChanges(SolutionChanges solutionChanges) 655async Task<MultiDictionary<string, (TextChange TextChange, ProjectId ProjectId)>> GetMappedTextChangesAsync(SolutionChanges solutionChanges)