From 2c87d8e98867d2da14b3def4ab9eedb855d8d8b5 Mon Sep 17 00:00:00 2001 From: Jack Kanarish Date: Mon, 10 Sep 2018 11:17:51 -0400 Subject: [PATCH] fix: add preprocessor for 2008/crestron support --- ICD.Common.Utils/Xml/AbstractGenericXmlConverter.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ICD.Common.Utils/Xml/AbstractGenericXmlConverter.cs b/ICD.Common.Utils/Xml/AbstractGenericXmlConverter.cs index 7325c41..49b3a9f 100644 --- a/ICD.Common.Utils/Xml/AbstractGenericXmlConverter.cs +++ b/ICD.Common.Utils/Xml/AbstractGenericXmlConverter.cs @@ -1,5 +1,9 @@ using System; +#if SIMPLSHARP +using Crestron.SimplSharp.CrestronXml; +#else using System.Xml; +#endif using ICD.Common.Properties; namespace ICD.Common.Utils.Xml