fix: Fixing bug where xml fragments were being written with prepended document info

This commit is contained in:
Chris Cameron
2019-01-09 16:33:33 -05:00
parent ad47c890a8
commit 466dc6deb5

View File

@@ -159,7 +159,8 @@ namespace ICD.Common.Utils.Xml
{
return new XmlWriterSettings
{
Indent = true
Indent = true,
ConformanceLevel = ConformanceLevel.Auto
};
}
#endif