17 references to PreserveFormatting
Microsoft.Build (5)
Construction\ProjectRootElement.cs (4)
1663
RootLink.ReloadFrom(path, throwIfUnsavedChanges, preserveFormatting ??
PreserveFormatting
);
1688
/// Whether the reload should preserve formatting or not. A null value causes the reload to reuse the existing <see cref="
PreserveFormatting
"/> value.
1694
RootLink.ReloadFrom(reader, throwIfUnsavedChanges, preserveFormatting ??
PreserveFormatting
);
1715
XmlDocumentWithLocation 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)
1304
Assert.True(xml0.
PreserveFormatting
);
1307
Assert.False(xml1.
PreserveFormatting
);
1311
Assert.False(xml2.
PreserveFormatting
);
1336
Assert.Equal(initialPreserveFormatting, projectElement.
PreserveFormatting
);
1339
Assert.Equal(expectedFormattingAfterReload, projectElement.
PreserveFormatting
);
1343
Assert.Equal(initialPreserveFormatting, projectElement.
PreserveFormatting
);
1347
Assert.Equal(expectedFormattingAfterReload, projectElement.
PreserveFormatting
);
1351
Assert.Equal(initialPreserveFormatting, projectElement.
PreserveFormatting
);
1354
Assert.Equal(expectedFormattingAfterReload, projectElement.
PreserveFormatting
);
ObjectModelRemoting\Helpers\ViewValidation.construction.cs (2)
534
Assert.Equal(realXml.
PreserveFormatting
, viewXml.
PreserveFormatting
);
ObjectModelRemoting\RemoteProjectsProviderMock\ConstructionLinkMocks\MockProjectRootElementLink.cs (1)
41
public bool PreserveFormatting => this.ProjectXml.
PreserveFormatting
;