5 implementations of NewSolution
Microsoft.CodeAnalysis.EditorFeatures (2)
ExternalAccess\VSTypeScript\Api\IVSTypeScriptInlineRenameReplacementInfo.cs (1)
16
public abstract Solution
NewSolution
{ get; }
InlineRename\AbstractEditorInlineRenameService.InlineRenameReplacementInfo.cs (1)
26
public Solution
NewSolution
=> _conflicts.NewSolution!;
Microsoft.CodeAnalysis.ExternalAccess.FSharp (2)
Editor\InlineRename\FSharpInlineRenameReplacementInfo.cs (1)
19
public abstract Solution
NewSolution
{ get; }
Internal\Editor\FSharpEditorInlineRenameService.cs (1)
72
public Solution
NewSolution
=> _info.NewSolution;
Microsoft.VisualStudio.LanguageServices.Xaml (1)
Features\InlineRename\XamlEditorInlineRenameService.cs (1)
190
public Solution
NewSolution
{ get; }
7 references to NewSolution
Microsoft.CodeAnalysis.EditorFeatures (7)
InlineRename\InlineRenameSession.cs (3)
578
var diffMergingSession = new LinkedFileDiffMergingSession(_baseSolution, replacementInfo.
NewSolution
, replacementInfo.
NewSolution
.GetChanges(_baseSolution));
807
var newSolution = info.
NewSolution
;
InlineRename\InlineRenameSession.OpenTextBufferManager.cs (3)
410
var firstDocumentNewText = conflictResolution.
NewSolution
.GetDocument(firstDocumentReplacements.document.Id).GetTextSynchronously(cancellationToken);
419
var documentNewText = conflictResolution.
NewSolution
.GetDocument(document.Id).GetTextSynchronously(cancellationToken);
450
conflictResolution.
NewSolution
.GetDocument(document.Id),
SpellCheck\RoslynSpellCheckFixerProvider.cs (1)
110
if (!workspace.TryApplyChanges(replacements.
NewSolution
))