1 override of TryApplyChanges
Microsoft.CodeAnalysis.Workspaces.MSBuild (1)
MSBuild\MSBuildWorkspace.cs (1)
318
internal override bool
TryApplyChanges
(Solution newSolution, IProgress<CodeAnalysisProgress> progressTracker)
8 references to TryApplyChanges
Microsoft.CodeAnalysis.Features (2)
AddImport\CodeActions\InstallPackageAndAddImportCodeAction.cs (2)
114
if (workspace.
TryApplyChanges
(newSolution, progressTracker))
124
workspace.
TryApplyChanges
(rolledBackSolution, progressTracker);
Microsoft.CodeAnalysis.Workspaces (5)
CodeActions\Operations\ApplyChangesOperation.cs (3)
41
=> workspace.
TryApplyChanges
(ChangedSolution, CodeAnalysisProgress.None);
58
var result = workspace.
TryApplyChanges
(changedSolution, progressTracker);
160
return workspace.
TryApplyChanges
(forkedSolution, progressTracker);
Workspace\Workspace.cs (2)
60
/// when they are applied to workspace via <see cref="
TryApplyChanges
(Solution, IProgress{CodeAnalysisProgress})"/>.
1522
=>
TryApplyChanges
(newSolution, CodeAnalysisProgress.None);
Microsoft.CodeAnalysis.Workspaces.MSBuild (1)
MSBuild\MSBuildWorkspace.cs (1)
327
return base.
TryApplyChanges
(newSolution, progressTracker);