Skip to content

Commit

Permalink
Add GH_AssemblyInfo and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
pearswj committed May 17, 2017
1 parent a5800d3 commit 77166b0
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Plankton/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
// 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("0.4.0")]
[assembly: AssemblyVersion("0.4.2")]

// Make internal classes/members visible in other assemblies.
[assembly: InternalsVisibleTo("PlanktonGh"),
Expand Down
1 change: 1 addition & 0 deletions src/PlanktonGh/PlanktonGh.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="RhinoSupport.cs" />
<Compile Include="Properties\GrasshopperAssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Plankton\Plankton.csproj">
Expand Down
2 changes: 1 addition & 1 deletion src/PlanktonGh/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@
// 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("0.4.0")]
[assembly: AssemblyVersion("0.4.2")]
40 changes: 40 additions & 0 deletions src/PlanktonGh/Properties/GrasshopperAssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
using System;
using Grasshopper.Kernel;

namespace PlanktonGh
{
public class PlanktonAssemblyInfo : GH_AssemblyInfo
{
public override string Name
{
get
{
return "plankton";
}
}

public override string Version
{
get
{
return "0.4.2";
}
}

public override string AuthorContact
{
get
{
return "http://www.grasshopper3d.com/group/plankton";
}
}

public override string AuthorName
{
get
{
return "Daniel Piker and Will Pearson";
}
}
}
}

0 comments on commit 77166b0

Please sign in to comment.