17 references to PreserveFormatting
Microsoft.Build (5)
Construction\ProjectRootElement.cs (4)
1641RootLink.ReloadFrom(path, throwIfUnsavedChanges, preserveFormatting ?? PreserveFormatting); 1666/// Whether the reload should preserve formatting or not. A null value causes the reload to reuse the existing <see cref="PreserveFormatting"/> value. 1672RootLink.ReloadFrom(reader, throwIfUnsavedChanges, preserveFormatting ?? PreserveFormatting); 1693XmlDocumentWithLocation newDocument = documentProducer(preserveFormatting ?? PreserveFormatting);
ObjectModelRemoting\ConstructionObjectLinks\ProjectRootElementLink.cs (1)
66/// Access to remote <see cref="ProjectRootElement.PreserveFormatting"/>.
Microsoft.Build.Engine.OM.UnitTests (12)
Construction\ProjectRootElement_Tests.cs (9)
1291Assert.True(xml0.PreserveFormatting); 1294Assert.False(xml1.PreserveFormatting); 1298Assert.False(xml2.PreserveFormatting); 1323Assert.Equal(initialPreserveFormatting, projectElement.PreserveFormatting); 1326Assert.Equal(expectedFormattingAfterReload, projectElement.PreserveFormatting); 1330Assert.Equal(initialPreserveFormatting, projectElement.PreserveFormatting); 1333Assert.Equal(expectedFormattingAfterReload, projectElement.PreserveFormatting); 1337Assert.Equal(initialPreserveFormatting, projectElement.PreserveFormatting); 1340Assert.Equal(expectedFormattingAfterReload, projectElement.PreserveFormatting);
ObjectModelRemoting\Helpers\ViewValidation.construction.cs (2)
534Assert.Equal(realXml.PreserveFormatting, viewXml.PreserveFormatting);
ObjectModelRemoting\RemoteProjectsProviderMock\ConstructionLinkMocks\MockProjectRootElementLink.cs (1)
41public bool PreserveFormatting => this.ProjectXml.PreserveFormatting;