5 references to GetChangedDocuments
Microsoft.CodeAnalysis.EditorFeatures (1)
CodeActions\CodeActionEditHandlerService.cs (1)
229
var changedDocuments = projectChange.
GetChangedDocuments
(onlyGetDocumentsWithTextChanges: true).ToImmutableArray();
Microsoft.CodeAnalysis.Workspaces (2)
CodeActions\CodeAction_Cleanup.cs (1)
66
.SelectMany(p => p.
GetChangedDocuments
(onlyGetDocumentsWithTextChanges: true).Concat(p.GetAddedDocuments()))
Workspace\Solution\ProjectChanges.cs (1)
119
=>
GetChangedDocuments
(onlyGetDocumentsWithTextChanges: false);
Microsoft.CodeAnalysis.Workspaces.Test.Utilities (1)
SolutionUtilities.cs (1)
81
changedDocuments.AddRange(projectDifference.
GetChangedDocuments
(onlyGetDocumentsWithTextChanges: true));
Microsoft.VisualStudio.LanguageServices (1)
ProjectSystem\VisualStudioWorkspaceImpl.cs (1)
325
var changedDocs = projectChanges.SelectMany(pd => pd.
GetChangedDocuments
(onlyGetDocumentsWithTextChanges: true).Concat(pd.GetChangedAdditionalDocuments()))