From 962c56758a0199ca29faa3985620c9cf622cf165 Mon Sep 17 00:00:00 2001 From: BHoMBot Date: Fri, 29 Mar 2024 12:49:31 +0000 Subject: [PATCH 1/2] Upgrade AssemblyFileVersion to 7.2.0.0 --- GHManipulator_Alligator/AssemblyInfo.cs | 2 +- Grasshopper_Engine/Properties/AssemblyInfo.cs | 2 +- Grasshopper_UI/Properties/AssemblyInfo.cs | 2 +- Grasshopper_oM/Properties/AssemblyInfo.cs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/GHManipulator_Alligator/AssemblyInfo.cs b/GHManipulator_Alligator/AssemblyInfo.cs index 85650a6a..fa464a7b 100644 --- a/GHManipulator_Alligator/AssemblyInfo.cs +++ b/GHManipulator_Alligator/AssemblyInfo.cs @@ -57,7 +57,7 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("7.0.0.0")] -[assembly: AssemblyFileVersion("7.1.0.0")] +[assembly: AssemblyFileVersion("7.2.0.0")] diff --git a/Grasshopper_Engine/Properties/AssemblyInfo.cs b/Grasshopper_Engine/Properties/AssemblyInfo.cs index 7c95cf63..c38df74f 100644 --- a/Grasshopper_Engine/Properties/AssemblyInfo.cs +++ b/Grasshopper_Engine/Properties/AssemblyInfo.cs @@ -55,7 +55,7 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("7.0.0.0")] -[assembly: AssemblyFileVersion("7.1.0.0")] +[assembly: AssemblyFileVersion("7.2.0.0")] diff --git a/Grasshopper_UI/Properties/AssemblyInfo.cs b/Grasshopper_UI/Properties/AssemblyInfo.cs index 59008388..d40798f5 100644 --- a/Grasshopper_UI/Properties/AssemblyInfo.cs +++ b/Grasshopper_UI/Properties/AssemblyInfo.cs @@ -57,7 +57,7 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("7.0.0.0")] -[assembly: AssemblyFileVersion("7.1.0.0")] +[assembly: AssemblyFileVersion("7.2.0.0")] diff --git a/Grasshopper_oM/Properties/AssemblyInfo.cs b/Grasshopper_oM/Properties/AssemblyInfo.cs index cbb416e5..9d042695 100644 --- a/Grasshopper_oM/Properties/AssemblyInfo.cs +++ b/Grasshopper_oM/Properties/AssemblyInfo.cs @@ -55,7 +55,7 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("7.0.0.0")] -[assembly: AssemblyFileVersion("7.1.0.0")] +[assembly: AssemblyFileVersion("7.2.0.0")] From 35d4d3022f2602f0818a496eae61004181708a93 Mon Sep 17 00:00:00 2001 From: Isak Naslund Date: Wed, 29 May 2024 15:14:25 +0200 Subject: [PATCH 2/2] Remove unused method causing Build issues --- Grasshopper_UI/Helpers/CastToGoo.cs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/Grasshopper_UI/Helpers/CastToGoo.cs b/Grasshopper_UI/Helpers/CastToGoo.cs index 494a04a3..acfded18 100644 --- a/Grasshopper_UI/Helpers/CastToGoo.cs +++ b/Grasshopper_UI/Helpers/CastToGoo.cs @@ -39,15 +39,6 @@ namespace BH.UI.Grasshopper { public static partial class Helpers { - /*******************************************/ - /**** Interface Methods ****/ - /*******************************************/ - - public static bool ICastToGoo(object value, ref object target) - { - return CastToGoo(target as dynamic, value as dynamic); - } - /*******************************************/ /**** Public Methods ****/