From f098b63eedeae2f4a9f617e707e72f305f0daa65 Mon Sep 17 00:00:00 2001 From: Isak Naslund Date: Thu, 4 May 2023 08:15:12 +0200 Subject: [PATCH] Fix namespace of RoundingSettings to correctly include the "Adapters" word --- XML_oM/GBXML/RoundingSettings.cs | 2 +- XML_oM/Settings/GBXMLSettings.cs | 2 +- XML_oM/Versioning_62.json | 26 ++++++++++++++++++++++++++ XML_oM/XML_oM.csproj | 7 +++++-- 4 files changed, 33 insertions(+), 4 deletions(-) create mode 100644 XML_oM/Versioning_62.json diff --git a/XML_oM/GBXML/RoundingSettings.cs b/XML_oM/GBXML/RoundingSettings.cs index 2368ea2..1dba496 100644 --- a/XML_oM/GBXML/RoundingSettings.cs +++ b/XML_oM/GBXML/RoundingSettings.cs @@ -30,7 +30,7 @@ using BH.oM.Base; -namespace BH.oM.XML.GBXML +namespace BH.oM.Adapters.XML.GBXML { public class RoundingSettings : BHoMObject { diff --git a/XML_oM/Settings/GBXMLSettings.cs b/XML_oM/Settings/GBXMLSettings.cs index 6f59155..bdde8cb 100644 --- a/XML_oM/Settings/GBXMLSettings.cs +++ b/XML_oM/Settings/GBXMLSettings.cs @@ -26,7 +26,7 @@ using BH.oM.Adapters.XML.Enums; using System.ComponentModel; -using BH.oM.XML.GBXML; +using BH.oM.Adapters.XML.GBXML; namespace BH.oM.Adapters.XML.Settings { diff --git a/XML_oM/Versioning_62.json b/XML_oM/Versioning_62.json new file mode 100644 index 0000000..4ac06b0 --- /dev/null +++ b/XML_oM/Versioning_62.json @@ -0,0 +1,26 @@ +{ + "Namespace": { + "ToNew": { + }, + "ToOld": { + } + }, + "Type": { + "ToNew": { + "BH.oM.XML.GBXML.RoundingSettings": "BH.oM.Adapters.XML.GBXML.RoundingSettings" + }, + "ToOld": { + "BH.oM.Adapters.XML.GBXML.RoundingSettings": "BH.oM.XML.GBXML.RoundingSettings" + } + }, + "Property": { + "ToNew": { + }, + "ToOld": { + } + }, + "MessageForDeleted": { + }, + "MessageForNoUpgrade": { + } +} \ No newline at end of file diff --git a/XML_oM/XML_oM.csproj b/XML_oM/XML_oM.csproj index 4d9f866..878b281 100644 --- a/XML_oM/XML_oM.csproj +++ b/XML_oM/XML_oM.csproj @@ -1,4 +1,4 @@ - + @@ -124,10 +124,13 @@ + + + xcopy "$(TargetDir)$(TargetFileName)" "C:\ProgramData\BHoM\Assemblies" /Y - + \ No newline at end of file