Skip to content

Commit

Permalink
Fix required to load Robots.gha before Extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
visose committed Dec 30, 2021
1 parent 23dc6ff commit cbcac93
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Extensions</Product>
<Version>1.0.1</Version>
<Version>1.0.2</Version>
<Description>Assorted components for Grasshopper.</Description>
<Authors>Extensions Authors</Authors>
<Copyright>Copyright (c) 2021 $(Authors)</Copyright>
Expand Down
3 changes: 3 additions & 0 deletions RELEASE
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
- version: 1.0.2
changes:
- Update to work with Robots 1.0.4.
- version: 1.0.1
changes:
- Fix check for Robots plugin when loaded after Extensions.
Expand Down
Binary file modified lib/Robots.dll
Binary file not shown.
Binary file renamed lib/Robots.Grasshopper.dll → lib/Robots.gha
Binary file not shown.
4 changes: 2 additions & 2 deletions src/Extensions.Grasshopper/Extensions.Grasshopper.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
<Reference Include="Robots">
<HintPath>..\..\lib\Robots.dll</HintPath>
</Reference>
<Reference Include="Robots.Grasshopper">
<HintPath>..\..\lib\Robots.Grasshopper.dll</HintPath>
<Reference Include="Robots">
<HintPath>..\..\lib\Robots.gha</HintPath>
</Reference>
</ItemGroup>

Expand Down
1 change: 1 addition & 0 deletions src/Extensions.Grasshopper/ExtensionsInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ public ExtensionsInfo()

if (files.Any())
{
Assembly.LoadFile(files.First());
IsRobotsInstalled = true;
break;
}
Expand Down

0 comments on commit cbcac93

Please sign in to comment.