From 77166b01189671644a0d0b34575c5b64cef1cf76 Mon Sep 17 00:00:00 2001 From: Will Pearson Date: Wed, 17 May 2017 20:56:55 +0100 Subject: [PATCH] Add GH_AssemblyInfo and bump version --- src/Plankton/Properties/AssemblyInfo.cs | 2 +- src/PlanktonGh/PlanktonGh.csproj | 1 + src/PlanktonGh/Properties/AssemblyInfo.cs | 2 +- .../Properties/GrasshopperAssemblyInfo.cs | 40 +++++++++++++++++++ 4 files changed, 43 insertions(+), 2 deletions(-) create mode 100644 src/PlanktonGh/Properties/GrasshopperAssemblyInfo.cs diff --git a/src/Plankton/Properties/AssemblyInfo.cs b/src/Plankton/Properties/AssemblyInfo.cs index bc244f5..c99f86a 100644 --- a/src/Plankton/Properties/AssemblyInfo.cs +++ b/src/Plankton/Properties/AssemblyInfo.cs @@ -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"), diff --git a/src/PlanktonGh/PlanktonGh.csproj b/src/PlanktonGh/PlanktonGh.csproj index 80b9d8b..708896e 100644 --- a/src/PlanktonGh/PlanktonGh.csproj +++ b/src/PlanktonGh/PlanktonGh.csproj @@ -66,6 +66,7 @@ Resources.resx + diff --git a/src/PlanktonGh/Properties/AssemblyInfo.cs b/src/PlanktonGh/Properties/AssemblyInfo.cs index ed2eb9e..1dc4e86 100644 --- a/src/PlanktonGh/Properties/AssemblyInfo.cs +++ b/src/PlanktonGh/Properties/AssemblyInfo.cs @@ -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")] diff --git a/src/PlanktonGh/Properties/GrasshopperAssemblyInfo.cs b/src/PlanktonGh/Properties/GrasshopperAssemblyInfo.cs new file mode 100644 index 0000000..5475374 --- /dev/null +++ b/src/PlanktonGh/Properties/GrasshopperAssemblyInfo.cs @@ -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"; + } + } + } +}