2 overrides of IgnoreUnchangeableDocumentsWhenApplyingChanges
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (1)
Workspaces\TestWorkspace.cs (1)
54internal override bool IgnoreUnchangeableDocumentsWhenApplyingChanges { get; }
Microsoft.VisualStudio.LanguageServices (1)
ProjectSystem\VisualStudioWorkspace.cs (1)
89internal override bool IgnoreUnchangeableDocumentsWhenApplyingChanges => true;
5 references to IgnoreUnchangeableDocumentsWhenApplyingChanges
Microsoft.CodeAnalysis.EditorFeatures (2)
InlineRename\InlineRenameSession.cs (1)
412if (_workspace.IgnoreUnchangeableDocumentsWhenApplyingChanges)
Preview\AbstractPreviewFactoryService.cs (1)
83var ignoreUnchangeableDocuments = oldSolution.Workspace.IgnoreUnchangeableDocumentsWhenApplyingChanges;
Microsoft.CodeAnalysis.Workspaces (2)
Workspace\Workspace.cs (2)
1457var changedDocumentIds = projectChanges.GetChangedDocuments(onlyGetDocumentsWithTextChanges: true, IgnoreUnchangeableDocumentsWhenApplyingChanges).ToImmutableArray(); 1707if (newDoc.HasTextChanged(oldDoc, IgnoreUnchangeableDocumentsWhenApplyingChanges))
Microsoft.VisualStudio.LanguageServices (1)
Preview\PreviewEngine.cs (1)
118var changedDocuments = projectChanges.SelectMany(p => p.GetChangedDocuments(onlyGetDocumentsWithTextChanges: true, _oldSolution.Workspace.IgnoreUnchangeableDocumentsWhenApplyingChanges));