From 466dc6deb51bdd6cf2323b0e99e4789b5e97ab00 Mon Sep 17 00:00:00 2001 From: Chris Cameron Date: Wed, 9 Jan 2019 16:33:33 -0500 Subject: [PATCH] fix: Fixing bug where xml fragments were being written with prepended document info --- ICD.Common.Utils/Xml/IcdXmlTextWriter.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ICD.Common.Utils/Xml/IcdXmlTextWriter.cs b/ICD.Common.Utils/Xml/IcdXmlTextWriter.cs index a2d5288..deff604 100644 --- a/ICD.Common.Utils/Xml/IcdXmlTextWriter.cs +++ b/ICD.Common.Utils/Xml/IcdXmlTextWriter.cs @@ -159,7 +159,8 @@ namespace ICD.Common.Utils.Xml { return new XmlWriterSettings { - Indent = true + Indent = true, + ConformanceLevel = ConformanceLevel.Auto }; } #endif