26 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)
671Assert.Equal(0, changes.GetChangedDocuments().Count()); 674var changedDocuments = changes.GetChangedDocuments().Concat(changes.GetAddedDocuments()); 717Assert.Equal(0, changes.GetChangedDocuments().Count()); 720var changedDocuments = changes.GetChangedDocuments().Concat(changes.GetAddedDocuments());
Microsoft.CodeAnalysis.EditorFeatures (1)
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)
414foreach (var changedDocumentId in projectChanges.GetChangedDocuments())
Microsoft.CodeAnalysis.LanguageServer.Protocol (3)
Features\CodeCleanup\AbstractCodeCleanupService.cs (1)
266projectChanges.GetChangedDocuments().Any(documentId => documentId != updatedDocument.Id) ||
Handler\CodeActions\CodeActionResolveHelper.cs (2)
102if (projectChange.GetChangedDocuments().Any(docId => HasDocumentNameChange(docId, newSolution, solution)) 175projectChanges.SelectMany(pc => pc.GetChangedDocuments()),
Microsoft.CodeAnalysis.Workspaces (9)
CodeActions\Operations\ApplyChangesOperation.cs (1)
115var changedDocuments = changedProject.GetChangedDocuments()
CodeFixes\FixAllOccurrences\BatchFixAllProvider.cs (1)
171var changedDocumentIds = new SolutionChanges(changedSolution, solution).GetProjectChanges().SelectMany(p => p.GetChangedDocuments());
Editing\SymbolEditor.cs (1)
78foreach (var id in projectChanges.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)
308changedDocumentIds.AddRange(projectChanges.GetChangedDocuments()); 1583foreach (var docId in projectChange.GetChangedDocuments()) 1700&& projectChanges.GetChangedDocuments().Any(id => projectChanges.NewProject.GetDocument(id)!.HasInfoChanged(projectChanges.OldProject.GetDocument(id)!))) 1922foreach (var documentId in projectChanges.GetChangedDocuments())
Microsoft.CodeAnalysis.Workspaces.Test.Utilities (2)
SolutionUtilities.cs (2)
40var documentId = projectDifferences.GetChangedDocuments().Single(); 59changedDocuments.AddRange(projectDifference.GetChangedDocuments());
Microsoft.VisualStudio.LanguageServices (2)
ProjectSystem\VisualStudioWorkspaceImpl.cs (1)
660foreach (var changedDocumentId in projectChanges.GetChangedDocuments())
Workspace\VisualStudioSymbolRenamedCodeActionOperationFactoryWorkspaceService.cs (1)
69var updatedDocumentIds = _updatedSolution.GetChanges(_startingSolution).GetProjectChanges().SelectMany(p => p.GetChangedDocuments());