Skip to content

Commit

Permalink
Namespace update to Adapters
Browse files Browse the repository at this point in the history
  • Loading branch information
adecler committed Oct 14, 2020
1 parent f8224e6 commit ffa94e5
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Socket_Adapter/Socket_Adapter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* along with this code. If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>.
*/

using BH.oM.Socket;
using BH.oM.Adapters.Socket;
using System.Collections.Generic;

namespace BH.Adapter.Socket
Expand Down
2 changes: 1 addition & 1 deletion Socket_Adapter/Tcp/DataEvent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* along with this code. If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>.
*/

using BH.oM.Socket;
using BH.oM.Adapters.Socket;

namespace BH.Adapter.Socket
{
Expand Down
2 changes: 1 addition & 1 deletion Socket_Adapter/Tcp/DataTransmitter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* along with this code. If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>.
*/

using BH.oM.Socket;
using BH.oM.Adapters.Socket;
using MongoDB.Bson;
using MongoDB.Bson.IO;
using MongoDB.Bson.Serialization;
Expand Down
2 changes: 1 addition & 1 deletion Socket_Adapter/Tcp/SocketLink_Tcp.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* along with this code. If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>.
*/

using BH.oM.Socket;
using BH.oM.Adapters.Socket;
using MongoDB.Bson;
using MongoDB.Bson.Serialization;
using System;
Expand Down
2 changes: 1 addition & 1 deletion Socket_oM/DataPackage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
using System.Collections.Generic;
using BH.oM.Reflection.Debugging;

namespace BH.oM.Socket
namespace BH.oM.Adapters.Socket
{
public class DataPackage : IObject
{
Expand Down
11 changes: 7 additions & 4 deletions Socket_oM/Socket_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" DefaultTargets="Build" 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 @@ -31,11 +31,11 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="BHoM">
<HintPath>C:\ProgramData\BHoM\Assemblies\BHoM.dll</HintPath>
<HintPath>C:\ProgramData\BHoM\Assemblies\BHoM.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Reflection_oM">
<HintPath>C:\ProgramData\BHoM\Assemblies\Reflection_oM.dll</HintPath>
<HintPath>C:\ProgramData\BHoM\Assemblies\Reflection_oM.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="System" />
Expand All @@ -51,6 +51,9 @@
<Compile Include="DataPackage.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="Versioning_40.json" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PostBuildEvent>
Expand All @@ -64,4 +67,4 @@ xcopy "$(TargetDir)$(TargetFileName)" "C:\ProgramData\BHoM\Assemblies" /Y
<Target Name="AfterBuild">
</Target>
-->
</Project>
</Project>
21 changes: 21 additions & 0 deletions Socket_oM/Versioning_40.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"Namespace": {
"ToNew": {
"BH.oM.Socket": "BH.oM.Adapters.Socket"
},
"ToOld": {
}
},
"Type": {
"ToNew": {
},
"ToOld": {
}
},
"Property": {
"ToNew": {
},
"ToOld": {
}
}
}

0 comments on commit ffa94e5

Please sign in to comment.