5 references to SolutionChanges
Microsoft.CodeAnalysis.Features (1)
CodeFixes\Suppression\AbstractSuppressionBatchFixAllProvider.cs (1)
360
var solutionChanges = new
SolutionChanges
(changedSolution, oldSolution);
Microsoft.CodeAnalysis.Workspaces (2)
CodeFixes\FixAllOccurrences\BatchFixAllProvider.cs (1)
170
var changedDocumentIds = new
SolutionChanges
(changedSolution, solution).GetProjectChanges().SelectMany(p => p.GetChangedDocuments());
Workspace\Solution\Solution.cs (1)
1683
return new
SolutionChanges
(this, oldSolution);
Microsoft.CodeAnalysis.Workspaces.UnitTests (2)
SolutionTests\SolutionWithSourceGeneratorTests.cs (2)
1338
var changes = new
SolutionChanges
(newSolution, project.Solution);
1374
var changes = new
SolutionChanges
(newSolution, project.Solution);