5 implementations of NewSolution
Microsoft.CodeAnalysis.EditorFeatures (2)
ExternalAccess\VSTypeScript\Api\IVSTypeScriptInlineRenameReplacementInfo.cs (1)
19public abstract Solution NewSolution { get; }
InlineRename\AbstractEditorInlineRenameService.InlineRenameReplacementInfo.cs (1)
26public Solution NewSolution => _conflicts.NewSolution!;
Microsoft.CodeAnalysis.ExternalAccess.FSharp (2)
Editor\InlineRename\FSharpInlineRenameReplacementInfo.cs (1)
20public abstract Solution NewSolution { get; }
Internal\Editor\FSharpEditorInlineRenameService.cs (1)
73public Solution NewSolution => _info.NewSolution;
Microsoft.VisualStudio.LanguageServices.Xaml (1)
Features\InlineRename\XamlEditorInlineRenameService.cs (1)
184public Solution NewSolution { get; }
8 references to NewSolution
Microsoft.CodeAnalysis.EditorFeatures (8)
InlineRename\InlineRenameSession.cs (3)
582var diffMergingSession = new LinkedFileDiffMergingSession(_baseSolution, replacementInfo.NewSolution, replacementInfo.NewSolution.GetChanges(_baseSolution)); 820var newSolution = info.NewSolution;
InlineRename\InlineRenameSession.OpenTextBufferManager.cs (3)
410var firstDocumentNewText = conflictResolution.NewSolution.GetDocument(firstDocumentReplacements.document.Id).GetTextAsync(cancellationToken).WaitAndGetResult(cancellationToken); 419var documentNewText = conflictResolution.NewSolution.GetDocument(document.Id).GetTextAsync(cancellationToken).WaitAndGetResult(cancellationToken); 449conflictResolution.NewSolution.GetDocument(document.Id),
Intents\RenameIntentProvider.cs (1)
57return ImmutableArray.Create(new IntentProcessorResult(renameReplacementInfo.NewSolution, renameReplacementInfo.DocumentIds.ToImmutableArray(), EditorFeaturesResources.Rename, WellKnownIntents.Rename));
SpellCheck\RoslynSpellCheckFixerProvider.cs (1)
115if (!workspace.TryApplyChanges(replacements.NewSolution))