Skip to content

Commit cbcac93

Browse files
committed
Fix required to load Robots.gha before Extensions
1 parent 23dc6ff commit cbcac93

6 files changed

Lines changed: 7 additions & 3 deletions

File tree

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<Product>Extensions</Product>
5-
<Version>1.0.1</Version>
5+
<Version>1.0.2</Version>
66
<Description>Assorted components for Grasshopper.</Description>
77
<Authors>Extensions Authors</Authors>
88
<Copyright>Copyright (c) 2021 $(Authors)</Copyright>

RELEASE

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
- version: 1.0.2
2+
changes:
3+
- Update to work with Robots 1.0.4.
14
- version: 1.0.1
25
changes:
36
- Fix check for Robots plugin when loaded after Extensions.

lib/Robots.dll

0 Bytes
Binary file not shown.

src/Extensions.Grasshopper/Extensions.Grasshopper.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
<Reference Include="Robots">
1414
<HintPath>..\..\lib\Robots.dll</HintPath>
1515
</Reference>
16-
<Reference Include="Robots.Grasshopper">
17-
<HintPath>..\..\lib\Robots.Grasshopper.dll</HintPath>
16+
<Reference Include="Robots">
17+
<HintPath>..\..\lib\Robots.gha</HintPath>
1818
</Reference>
1919
</ItemGroup>
2020

src/Extensions.Grasshopper/ExtensionsInfo.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ public ExtensionsInfo()
1717

1818
if (files.Any())
1919
{
20+
Assembly.LoadFile(files.First());
2021
IsRobotsInstalled = true;
2122
break;
2223
}

0 commit comments

Comments
 (0)