Skip to content

Commit

Permalink
Start of milestone changes for 8.0 (#551)
Browse files Browse the repository at this point in the history
  • Loading branch information
adecler authored Sep 23, 2024
2 parents 201efb9 + a8501ef commit 2bbfc1a
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 27 deletions.
6 changes: 3 additions & 3 deletions .ci/unit-tests/Robot_Adapter_Tests/PushTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ public void PushBarsWithDifferentTags()
for (int i = 0; i < count; i++)
{
Bar bar = Engine.Base.Create.RandomObject(typeof(Bar), i + count) as Bar;
bar.StartNode = bars1[i].StartNode; //Same start node for bars from both sets
bar.Start = bars1[i].Start; //Same start node for bars from both sets
bars2.Add(bar);
}

Expand All @@ -189,8 +189,8 @@ public void PushBarsWithDifferentTags()
foreach (Bar bar in pulledBars)
{
bar.Tags.Count.ShouldBe(1, "Bar should contain 1 tag.");
bar.StartNode.Tags.Count.ShouldBe(2, "StartNode of bars should contain 2 tags.");
bar.EndNode.Tags.Count.ShouldBe(1, "EndNode of bars should contain 1 tag.");
bar.Start.Tags.Count.ShouldBe(2, "StartNode of bars should contain 2 tags.");
bar.End.Tags.Count.ShouldBe(1, "EndNode of bars should contain 1 tag.");
}

//Create a new set to replace the first set of bars
Expand Down
39 changes: 21 additions & 18 deletions .ci/unit-tests/Robot_Adapter_Tests/Robot_Adapter_Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Description>https://github.com/BHoM/Robot_Toolkit</Description>
<FileVersion>8.0.0.0</FileVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

Expand All @@ -27,67 +30,67 @@

<ItemGroup>
<Reference Include="Adapter_oM">
<HintPath>C:\ProgramData\BHoM\Assemblies\Adapter_oM.dll</HintPath>
<HintPath>$(ProgramData)\BHoM\Assemblies\Adapter_oM.dll</HintPath>
<SpecificVersion>false</SpecificVersion>
</Reference>
<Reference Include="Analytical_Engine">
<HintPath>C:\ProgramData\BHoM\Assemblies\Analytical_Engine.dll</HintPath>
<HintPath>$(ProgramData)\BHoM\Assemblies\Analytical_Engine.dll</HintPath>
<SpecificVersion>false</SpecificVersion>
</Reference>
<Reference Include="Analytical_oM">
<HintPath>C:\ProgramData\BHoM\Assemblies\Analytical_oM.dll</HintPath>
<HintPath>$(ProgramData)\BHoM\Assemblies\Analytical_oM.dll</HintPath>
<SpecificVersion>false</SpecificVersion>
</Reference>
<Reference Include="BHoM">
<HintPath>C:\ProgramData\BHoM\Assemblies\BHoM.dll</HintPath>
<SpecificVersion>false</SpecificVersion>
<HintPath>$(ProgramData)\BHoM\Assemblies\BHoM.dll</HintPath>
<SpecificVersion>False</SpecificVersion>
</Reference>
<Reference Include="BHoM_Adapter">
<HintPath>C:\ProgramData\BHoM\Assemblies\BHoM_Adapter.dll</HintPath>
<HintPath>$(ProgramData)\BHoM\Assemblies\BHoM_Adapter.dll</HintPath>
<SpecificVersion>false</SpecificVersion>
</Reference>
<Reference Include="BHoM_Engine">
<HintPath>C:\ProgramData\BHoM\Assemblies\BHoM_Engine.dll</HintPath>
<HintPath>$(ProgramData)\BHoM\Assemblies\BHoM_Engine.dll</HintPath>
<SpecificVersion>false</SpecificVersion>
</Reference>
<Reference Include="Data_oM">
<HintPath>C:\ProgramData\BHoM\Assemblies\Data_oM.dll</HintPath>
<HintPath>$(ProgramData)\BHoM\Assemblies\Data_oM.dll</HintPath>
<SpecificVersion>false</SpecificVersion>
</Reference>
<Reference Include="Dimensional_oM">
<HintPath>C:\ProgramData\BHoM\Assemblies\Dimensional_oM.dll</HintPath>
<HintPath>$(ProgramData)\BHoM\Assemblies\Dimensional_oM.dll</HintPath>
<SpecificVersion>false</SpecificVersion>
</Reference>
<Reference Include="Geometry_Engine">
<HintPath>C:\ProgramData\BHoM\Assemblies\Geometry_Engine.dll</HintPath>
<HintPath>$(ProgramData)\BHoM\Assemblies\Geometry_Engine.dll</HintPath>
<SpecificVersion>false</SpecificVersion>
</Reference>
<Reference Include="Geometry_oM">
<HintPath>C:\ProgramData\BHoM\Assemblies\Geometry_oM.dll</HintPath>
<HintPath>$(ProgramData)\BHoM\Assemblies\Geometry_oM.dll</HintPath>
<SpecificVersion>false</SpecificVersion>
</Reference>
<Reference Include="Physical_oM">
<HintPath>C:\ProgramData\BHoM\Assemblies\Physical_oM.dll</HintPath>
<HintPath>$(ProgramData)\BHoM\Assemblies\Physical_oM.dll</HintPath>
<SpecificVersion>false</SpecificVersion>
</Reference>
<Reference Include="Spatial_Engine">
<HintPath>C:\ProgramData\BHoM\Assemblies\Spatial_Engine.dll</HintPath>
<HintPath>$(ProgramData)\BHoM\Assemblies\Spatial_Engine.dll</HintPath>
<SpecificVersion>false</SpecificVersion>
</Reference>
<Reference Include="Spatial_oM">
<HintPath>C:\ProgramData\BHoM\Assemblies\Spatial_oM.dll</HintPath>
<HintPath>$(ProgramData)\BHoM\Assemblies\Spatial_oM.dll</HintPath>
<SpecificVersion>false</SpecificVersion>
</Reference>
<Reference Include="Structure_AdapterModules">
<HintPath>C:\ProgramData\BHoM\Assemblies\Structure_AdapterModules.dll</HintPath>
<HintPath>$(ProgramData)\BHoM\Assemblies\Structure_AdapterModules.dll</HintPath>
<SpecificVersion>false</SpecificVersion>
</Reference>
<Reference Include="Structure_Engine">
<HintPath>C:\ProgramData\BHoM\Assemblies\Structure_Engine.dll</HintPath>
<HintPath>$(ProgramData)\BHoM\Assemblies\Structure_Engine.dll</HintPath>
<SpecificVersion>false</SpecificVersion>
</Reference>
<Reference Include="Structure_oM">
<HintPath>C:\ProgramData\BHoM\Assemblies\Structure_oM.dll</HintPath>
<HintPath>$(ProgramData)\BHoM\Assemblies\Structure_oM.dll</HintPath>
<SpecificVersion>false</SpecificVersion>
</Reference>
</ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions Robot_Adapter/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("7.0.0.0")]
[assembly: AssemblyFileVersion("7.3.0.0")]
[assembly: AssemblyVersion("8.0.0.0")]
[assembly: AssemblyFileVersion("8.0.0.0")]



Expand Down
4 changes: 2 additions & 2 deletions Robot_Engine/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("7.0.0.0")]
[assembly: AssemblyFileVersion("7.3.0.0")]
[assembly: AssemblyVersion("8.0.0.0")]
[assembly: AssemblyFileVersion("8.0.0.0")]



Expand Down
4 changes: 2 additions & 2 deletions Robot_oM/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("7.0.0.0")]
[assembly: AssemblyFileVersion("7.3.0.0")]
[assembly: AssemblyVersion("8.0.0.0")]
[assembly: AssemblyFileVersion("8.0.0.0")]



Expand Down

0 comments on commit 2bbfc1a

Please sign in to comment.