Skip to content

Commit

Permalink
Fix namespace of RoundingSettings to correctly include the "Adapters"…
Browse files Browse the repository at this point in the history
… word
  • Loading branch information
IsakNaslundBh authored and Fraser Greenroyd committed Jun 21, 2023
1 parent 7f90675 commit f098b63
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 4 deletions.
2 changes: 1 addition & 1 deletion XML_oM/GBXML/RoundingSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

using BH.oM.Base;

namespace BH.oM.XML.GBXML
namespace BH.oM.Adapters.XML.GBXML
{
public class RoundingSettings : BHoMObject
{
Expand Down
2 changes: 1 addition & 1 deletion XML_oM/Settings/GBXMLSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
26 changes: 26 additions & 0 deletions XML_oM/Versioning_62.json
Original file line number Diff line number Diff line change
@@ -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": {
}
}
7 changes: 5 additions & 2 deletions XML_oM/XML_oM.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTarget="" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
Expand Down Expand Up @@ -124,10 +124,13 @@
<Compile Include="Settings\KMLSettings.cs" />
<Compile Include="XMLConfig.cs" />
</ItemGroup>
<ItemGroup>
<None Include="Versioning_62.json" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" Condition="" />
<PropertyGroup>
<PostBuildEvent>
xcopy "$(TargetDir)$(TargetFileName)" "C:\ProgramData\BHoM\Assemblies" /Y
</PostBuildEvent>
</PropertyGroup>
</Project>
</Project>

0 comments on commit f098b63

Please sign in to comment.