28 references to GetChangedDocuments
AnalyzerRunner (1)
CodeRefactoringRunner.cs (1)
110var documentChanges = projectChanges[0].GetChangedDocuments().ToArray();
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Extensions\ISolutionExtensions.cs (1)
24foreach (var documentId in projectChanges.GetChangedDocuments())
Microsoft.CodeAnalysis.CSharp.Features.UnitTests (4)
EditAndContinue\CSharpEditAndContinueAnalyzerTests.cs (4)
666Assert.Equal(0, changes.GetChangedDocuments().Count()); 669var changedDocuments = changes.GetChangedDocuments().Concat(changes.GetAddedDocuments()); 712Assert.Equal(0, changes.GetChangedDocuments().Count()); 715var changedDocuments = changes.GetChangedDocuments().Concat(changes.GetAddedDocuments());
Microsoft.CodeAnalysis.EditorFeatures (2)
InlineRename\InlineRenameSession.cs (1)
939foreach (var documentId in changes.GetProjectChanges().SelectMany(c => c.GetChangedDocuments()))
Preview\SolutionChangeSummary.cs (1)
27p.GetChangedDocuments().Count() +
Microsoft.CodeAnalysis.EditorFeatures2.UnitTests (1)
Diagnostics\AbstractCrossLanguageUserDiagnosticTest.vb (1)
101Assert.Empty(projectChanges.GetChangedDocuments())
Microsoft.CodeAnalysis.Features (2)
CodeFixes\Suppression\AbstractSuppressionBatchFixAllProvider.cs (1)
367.SelectMany(p => p.GetChangedDocuments());
ExternalAccess\UnitTesting\SolutionCrawler\UnitTestingWorkCoordinator.cs (1)
415foreach (var changedDocumentId in projectChanges.GetChangedDocuments())
Microsoft.CodeAnalysis.LanguageServer.Protocol (3)
Features\CodeCleanup\AbstractCodeCleanupService.cs (1)
263projectChanges.GetChangedDocuments().Any(documentId => documentId != updatedDocument.Id) ||
Handler\CodeActions\CodeActionResolveHelper.cs (2)
111if (projectChange.GetChangedDocuments().Any(docId => HasDocumentNameChange(docId, newSolution, solution)) 183projectChanges.SelectMany(pc => pc.GetChangedDocuments()),
Microsoft.CodeAnalysis.Workspaces (10)
CodeActions\Operations\ApplyChangesOperation.cs (1)
115var changedDocuments = changedProject.GetChangedDocuments()
CodeFixes\FixAllOccurrences\BatchFixAllProvider.cs (1)
170var changedDocumentIds = new SolutionChanges(changedSolution, solution).GetProjectChanges().SelectMany(p => p.GetChangedDocuments());
Editing\SymbolEditor.cs (1)
78foreach (var id in projectChanges.GetChangedDocuments())
LinkedFileDiffMerging\LinkedFileDiffMergingSession.cs (1)
26foreach (var documentId in solutionChanges.GetProjectChanges().SelectMany(p => p.GetChangedDocuments()))
Remote\RemoteUtilities.cs (1)
32foreach (var docId in projectChange.GetChangedDocuments())
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Extensions\ISolutionExtensions.cs (1)
24foreach (var documentId in projectChanges.GetChangedDocuments())
Workspace\Workspace.cs (4)
317changedDocumentIds.AddRange(projectChanges.GetChangedDocuments()); 1655foreach (var docId in projectChange.GetChangedDocuments()) 1772&& projectChanges.GetChangedDocuments().Any(id => projectChanges.NewProject.GetDocument(id)!.HasInfoChanged(projectChanges.OldProject.GetDocument(id)!))) 1994foreach (var documentId in projectChanges.GetChangedDocuments())
Microsoft.CodeAnalysis.Workspaces.Test.Utilities (2)
SolutionUtilities.cs (2)
42var documentId = projectDifferences.GetChangedDocuments().Single(); 61changedDocuments.AddRange(projectDifference.GetChangedDocuments());
Microsoft.VisualStudio.LanguageServices (2)
ProjectSystem\VisualStudioWorkspaceImpl.cs (1)
668foreach (var changedDocumentId in projectChanges.GetChangedDocuments())
Workspace\VisualStudioSymbolRenamedCodeActionOperationFactoryWorkspaceService.cs (1)
67var updatedDocumentIds = _updatedSolution.GetChanges(_startingSolution).GetProjectChanges().SelectMany(p => p.GetChangedDocuments());