2 overrides of IgnoreUnchangeableDocumentsWhenApplyingChanges
Microsoft.CodeAnalysis.Workspaces.Test.Utilities (1)
Workspaces\TestWorkspace`1.cs (1)
52internal override bool IgnoreUnchangeableDocumentsWhenApplyingChanges { get; }
Microsoft.VisualStudio.LanguageServices (1)
ProjectSystem\VisualStudioWorkspace.cs (1)
36internal override bool IgnoreUnchangeableDocumentsWhenApplyingChanges => true;
5 references to IgnoreUnchangeableDocumentsWhenApplyingChanges
Microsoft.CodeAnalysis.EditorFeatures (2)
InlineRename\InlineRenameSession.cs (1)
408if (Workspace.IgnoreUnchangeableDocumentsWhenApplyingChanges)
Preview\AbstractPreviewFactoryService.cs (1)
82var ignoreUnchangeableDocuments = oldSolution.Workspace.IgnoreUnchangeableDocumentsWhenApplyingChanges;
Microsoft.CodeAnalysis.Workspaces (2)
Workspace\Workspace.cs (2)
1775var changedDocumentIds = projectChanges.GetChangedDocuments(onlyGetDocumentsWithTextChanges: true, IgnoreUnchangeableDocumentsWhenApplyingChanges).ToImmutableArray(); 2025if (newDoc.HasTextChanged(oldDoc, IgnoreUnchangeableDocumentsWhenApplyingChanges))
Microsoft.VisualStudio.LanguageServices (1)
Preview\PreviewEngine.cs (1)
115var changedDocuments = projectChanges.SelectMany(p => p.GetChangedDocuments(onlyGetDocumentsWithTextChanges: true, _oldSolution.Workspace.IgnoreUnchangeableDocumentsWhenApplyingChanges));