Skip to content

Commit dafebf5

Browse files
authored
Merge pull request #31 from specklesystems/jrm/re-add-rhino6-support
re-add rhino 6 support
2 parents 89cd7ff + e3f4fb0 commit dafebf5

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

GrasshopperAsyncComponent/GrasshopperAsyncComponent.csproj

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup Label="Compiler Properties">
3-
<TargetFramework>net48</TargetFramework>
3+
<TargetFrameworks>net462;net48</TargetFrameworks>
44
<RootNamespace>GrasshopperAsyncComponent</RootNamespace>
55
<AssemblyName>GrasshopperAsyncComponent</AssemblyName>
66
</PropertyGroup>
@@ -20,10 +20,18 @@
2020
</PropertyGroup>
2121

2222
<ItemGroup Label="Package References">
23-
<PackageReference Include="Grasshopper" Version="7.4.21078.1001" IncludeAssets="compile;build" PrivateAssets="all" />
2423
<PackageReference Include="PolySharp" Version="1.14.1" />
2524
</ItemGroup>
2625

26+
<ItemGroup Condition=" '$(TargetFramework)' == 'net462'">
27+
<PackageReference Include="Grasshopper" Version="6.28.20199.17141" IncludeAssets="compile;build" PrivateAssets="all" />
28+
</ItemGroup>
29+
30+
<ItemGroup Condition=" '$(TargetFramework)' == 'net48'">
31+
<PackageReference Include="Grasshopper" Version="7.4.21078.1001" IncludeAssets="compile;build" PrivateAssets="all" />
32+
</ItemGroup>
33+
34+
2735
<ItemGroup>
2836
<Reference Include="System.Windows.Forms" />
2937
</ItemGroup>

0 commit comments

Comments
 (0)