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