17 references to PreserveFormatting
Microsoft.Build (5)
Construction\ProjectRootElement.cs (4)
1671
RootLink.ReloadFrom(path, throwIfUnsavedChanges, preserveFormatting ??
PreserveFormatting
);
1696
/// Whether the reload should preserve formatting or not. A null value causes the reload to reuse the existing <see cref="
PreserveFormatting
"/> value.
1702
RootLink.ReloadFrom(reader, throwIfUnsavedChanges, preserveFormatting ??
PreserveFormatting
);
1723
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)
1300
Assert.True(xml0.
PreserveFormatting
);
1303
Assert.False(xml1.
PreserveFormatting
);
1307
Assert.False(xml2.
PreserveFormatting
);
1332
Assert.Equal(initialPreserveFormatting, projectElement.
PreserveFormatting
);
1335
Assert.Equal(expectedFormattingAfterReload, projectElement.
PreserveFormatting
);
1339
Assert.Equal(initialPreserveFormatting, projectElement.
PreserveFormatting
);
1343
Assert.Equal(expectedFormattingAfterReload, projectElement.
PreserveFormatting
);
1347
Assert.Equal(initialPreserveFormatting, projectElement.
PreserveFormatting
);
1350
Assert.Equal(expectedFormattingAfterReload, projectElement.
PreserveFormatting
);
ObjectModelRemoting\Helpers\ViewValidation.construction.cs (2)
533
Assert.Equal(realXml.
PreserveFormatting
, viewXml.
PreserveFormatting
);
ObjectModelRemoting\RemoteProjectsProviderMock\ConstructionLinkMocks\MockProjectRootElementLink.cs (1)
41
public bool PreserveFormatting => this.ProjectXml.
PreserveFormatting
;