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