3 writes to ChangedSolution
Microsoft.CodeAnalysis.Workspaces (3)
Editing\SymbolEditor.cs (3)
25
ChangedSolution
= solution;
291
ChangedSolution
= newDoc.Project.Solution;
474
ChangedSolution
= solutionEditor.GetChangedSolution();
17 references to ChangedSolution
Microsoft.CodeAnalysis.NetAnalyzers (2)
Microsoft.CodeQuality.Analyzers\QualityGuidelines\SealMethodsThatSatisfyPrivateInterfaces.Fixer.cs (2)
123
return editor.
ChangedSolution
;
141
return editor.
ChangedSolution
;
Microsoft.CodeAnalysis.Workspaces (13)
Editing\SymbolEditor.cs (13)
69
var solutionChanges =
ChangedSolution
.GetChanges(OriginalSolution);
75
yield return
ChangedSolution
.GetDocument(id);
80
yield return
ChangedSolution
.GetDocument(id);
103
var project =
ChangedSolution
.GetProject(symbol.ContainingAssembly, cancellationToken);
106
return await GetSymbolAsync(
ChangedSolution
, project.Id, symbolId, cancellationToken).ConfigureAwait(false);
113
return await GetSymbolAsync(
ChangedSolution
, project.Id, symbolId, cancellationToken).ConfigureAwait(false);
119
var currentSymbol = await GetSymbolAsync(
ChangedSolution
, projectId, symbolId, cancellationToken).ConfigureAwait(false);
284
var doc =
ChangedSolution
.GetDocument(declaration.SyntaxTree);
326
var doc =
ChangedSolution
.GetDocument(sourceTree) ?? OriginalSolution.GetDocument(sourceTree);
372
var doc =
ChangedSolution
.GetDocument(d.SyntaxTree);
458
var declsByDocId = this.GetDeclarations(currentSymbol).ToLookup(d =>
ChangedSolution
.GetDocument(d.SyntaxTree).Id);
460
var solutionEditor = new SolutionEditor(
ChangedSolution
);
479
var doc =
ChangedSolution
.GetDocument(declGroup.Key);
Microsoft.Interop.LibraryImportGenerator (2)
Analyzers\CustomMarshallerAttributeFixer.cs (2)
84
return CodeAction.Create(SR.AddMissingCustomTypeMarshallerMembers, ct => Task.FromResult(symbolEditor.
ChangedSolution
));
175
return editor.
ChangedSolution
;