2 overrides of TryApplyChanges
Microsoft.CodeAnalysis.Workspaces.MSBuild (1)
MSBuild\MSBuildWorkspace.cs (1)
303internal override bool TryApplyChanges(Solution newSolution, IProgressTracker progressTracker)
Microsoft.VisualStudio.LanguageServices (1)
ProjectSystem\VisualStudioWorkspaceImpl.cs (1)
320internal override bool TryApplyChanges(
10 references to TryApplyChanges
Microsoft.CodeAnalysis.Features (2)
AddImport\CodeActions\InstallPackageAndAddImportCodeAction.cs (2)
128if (workspace.TryApplyChanges(newSolution, progressTracker)) 138workspace.TryApplyChanges(rolledBackSolution, progressTracker);
Microsoft.CodeAnalysis.Workspaces (5)
CodeActions\Operations\ApplyChangesOperation.cs (3)
47=> workspace.TryApplyChanges(ChangedSolution, new ProgressTracker()); 64var result = workspace.TryApplyChanges(changedSolution, progressTracker); 166return workspace.TryApplyChanges(forkedSolution, progressTracker);
Workspace\Workspace.cs (2)
60/// when they are applied to workspace via <see cref="TryApplyChanges(Solution, IProgressTracker)"/>. 1275=> TryApplyChanges(newSolution, new ProgressTracker());
Microsoft.CodeAnalysis.Workspaces.MSBuild (1)
MSBuild\MSBuildWorkspace.cs (1)
307return base.TryApplyChanges(newSolution, progressTracker);
Microsoft.VisualStudio.LanguageServices (2)
CodeCleanup\AbstractCodeCleanUpFixer.cs (1)
244return workspace.TryApplyChanges(solution, progressTracker);
ProjectSystem\VisualStudioWorkspaceImpl.cs (1)
340return base.TryApplyChanges(newSolution, progressTracker);