Skip to content

Commit f1069ec

Browse files
authored
7.2 Deployment (#491)
2 parents f1ace84 + 28f9f28 commit f1069ec

File tree

11 files changed

+30
-30
lines changed

11 files changed

+30
-30
lines changed

.ci/code/UI_Test/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,6 @@
5555
// by using the '*' as shown below:
5656
// [assembly: AssemblyVersion("1.0.*")]
5757
[assembly: AssemblyVersion("7.0.0.0")]
58-
[assembly: AssemblyFileVersion("7.1.0.0")]
58+
[assembly: AssemblyFileVersion("7.2.0.0")]
5959

6060

BHoM_UI/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
// by using the '*' as shown below:
5656
// [assembly: AssemblyVersion("1.0.*")]
5757
[assembly: AssemblyVersion("7.0.0.0")]
58-
[assembly: AssemblyFileVersion("7.1.0.0")]
58+
[assembly: AssemblyFileVersion("7.2.0.0")]
5959

6060

6161

BHoM_Windows_UI/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,4 @@
5555
// by using the '*' as shown below:
5656
// [assembly: AssemblyVersion("1.0.*")]
5757
[assembly: AssemblyVersion("7.0.0.0")]
58-
[assembly: AssemblyFileVersion("7.1.0.0")]
58+
[assembly: AssemblyFileVersion("7.2.0.0")]

UI_Engine/Compute/Constructor.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ public static partial class Compute
3636
/**** Public Methods ****/
3737
/*************************************/
3838

39-
[Input("type", "The type of object to create a constructor for")]
40-
[Input("parameters", "The properties that should be used as parameters for the constructor")]
41-
[Output("constructor", "The compiled constructor")]
39+
[Input("type", "The type of object to create a constructor for.")]
40+
[Input("parameters", "The properties that should be used as parameters for the constructor.")]
41+
[Output("constructor", "The compiled constructor.")]
4242
public static Func<object[], object> Constructor(Type type, List<ParamInfo> parameters)
4343
{
4444
ParameterExpression lambdaInput = Expression.Parameter(typeof(object[]), "x");

UI_Engine/Compute/ConstructorText.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ public static partial class Compute
3737
/**** Public Methods ****/
3838
/*************************************/
3939

40-
[Input("type", "The type of object to create a constructor for")]
41-
[Input("maxParams", "The maximum number of parameters to include in the text")]
42-
[Input("maxChars", "The maximum number of characters for the output text")]
43-
[Output("text", "The text corresponding to the description of the constructor generated for that type")]
40+
[Input("type", "The type of object to create a constructor for.")]
41+
[Input("maxParams", "The maximum number of parameters to include in the text.")]
42+
[Input("maxChars", "The maximum number of characters for the output text.")]
43+
[Output("text", "The text corresponding to the description of the constructor generated for that type.")]
4444
public static string ConstructorText(this Type type, int maxParams = 5, int maxChars = 40)
4545
{
4646
string text = type.Namespace + "." + type.Name + "." + type.Name + "() {";

UI_Engine/Compute/SaveSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public static partial class Compute
4040
/**** Public Methods ****/
4141
/*************************************/
4242

43-
[Description(@"Saves the settings for a toolkit into C:/ProgramData/BHoM/Settings. If Any previoulsy saved settings for that toolkit will be overwritten")]
43+
[Description(@"Saves the settings for a toolkit into C:/ProgramData/BHoM/Settings. If Any previoulsy saved settings for that toolkit will be overwritten.")]
4444
[Input("settings", "Settings for a toolkit that need to be saved permanently.")]
4545
[Output("success", "Returns true if the settings were saved successfully.")]
4646
public static bool SaveSettings(ISettings settings)

UI_Engine/Create/ParamInfo.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ public static partial class Create
3434
/**** Public Methods ****/
3535
/*************************************/
3636

37-
[Input("name", "The name of the parameter")]
38-
[Input("type", "The framework type of the parameter, e.g. BH.oM.Base.BHoMObject")]
39-
[Input("kind", "Whether the parameter is an input of an output. Input is the default value")]
40-
[Output("parameter", "The bhom parameter used in the bhom abstract syntax")]
37+
[Input("name", "The name of the parameter.")]
38+
[Input("type", "The framework type of the parameter, e.g. BH.oM.Base.BHoMObject.")]
39+
[Input("kind", "Whether the parameter is an input of an output. Input is the default value.")]
40+
[Output("parameter", "The bhom parameter used in the bhom abstract syntax.")]
4141
public static ParamInfo ParamInfo(string name, Type type = null, ParamKind kind = ParamKind.Input)
4242
{
4343
if (type == null)
@@ -53,8 +53,8 @@ public static ParamInfo ParamInfo(string name, Type type = null, ParamKind kind
5353

5454
/*************************************/
5555

56-
[Input("property", "The system property to convert to bhom")]
57-
[Output("parameter", "The bhom parameter used in the bhom abstract syntax")]
56+
[Input("property", "The system property to convert to bhom.")]
57+
[Output("parameter", "The bhom parameter used in the bhom abstract syntax.")]
5858
public static ParamInfo ParamInfo(this PropertyInfo property, object instance = null)
5959
{
6060
ParamInfo info = new ParamInfo
@@ -78,8 +78,8 @@ public static ParamInfo ParamInfo(this PropertyInfo property, object instance =
7878

7979
/*************************************/
8080

81-
[Input("property", "The system property to convert to bhom")]
82-
[Output("parameter", "The bhom parameter used in the bhom abstract syntax")]
81+
[Input("parameter", "The system parameter to convert to bhom.")]
82+
[Output("parameter", "The bhom parameter used in the bhom abstract syntax.")]
8383
public static ParamInfo ParamInfo(this ParameterInfo parameter, string description = "")
8484
{
8585
Type paramType = parameter.ParameterType;

UI_Engine/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
// by using the '*' as shown below:
5656
// [assembly: AssemblyVersion("1.0.*")]
5757
[assembly: AssemblyVersion("7.0.0.0")]
58-
[assembly: AssemblyFileVersion("7.1.0.0")]
58+
[assembly: AssemblyFileVersion("7.2.0.0")]
5959

6060

6161

UI_Engine/Query/AreMatching.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public static partial class Query
3737
/**** Public Methods ****/
3838
/*************************************/
3939

40-
public static bool AreMatching(List<ParamInfo> newList, List<ParamInfo> oldList)
40+
public static bool AreMatching(this List<ParamInfo> newList, List<ParamInfo> oldList)
4141
{
4242
if (newList.Count != oldList.Count)
4343
return false;
@@ -48,7 +48,7 @@ public static bool AreMatching(List<ParamInfo> newList, List<ParamInfo> oldList)
4848

4949
/*************************************/
5050

51-
public static bool AreMatching(List<PropertyInfo> props, List<ParamInfo> oldList)
51+
public static bool AreMatching(this List<PropertyInfo> props, List<ParamInfo> oldList)
5252
{
5353
return oldList.All(x => props.Exists(p => p.Name == x.Name && p.PropertyType == x.DataType));
5454
}

UI_Engine/Query/Settings.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ public static partial class Query
4040
/**** Public Methods ****/
4141
/*************************************/
4242

43-
[Description(@"Extract settings of a given type from C:/ProgramData/BHoM/Settings")]
44-
[Input("type", "Object type of the settings you want to recover")]
45-
[Output("settings", @"Settings recovered from the corresponding file in C:/ProgramData/BHoM/Settings")]
46-
public static ISettings Settings(Type type)
43+
[Description(@"Extract settings of a given type from C:/ProgramData/BHoM/Settings.")]
44+
[Input("type", "Object type of the settings you want to recover.")]
45+
[Output("settings", @"Settings recovered from the corresponding file in C:/ProgramData/BHoM/Settings.")]
46+
public static ISettings Settings(this Type type)
4747
{
4848
if (type == null)
4949
{
@@ -65,9 +65,9 @@ public static ISettings Settings(Type type)
6565

6666
/*************************************/
6767

68-
[Description(@"Extract settings for a given toolkit from C:/ProgramData/BHoM/Settings")]
69-
[Input("toolkitName", "Toolkit you want to recover the settings for")]
70-
[Output("settings", @"Settings recovered from the corresponding file in C:/ProgramData/BHoM/Settings")]
68+
[Description(@"Extract settings for a given toolkit from C:/ProgramData/BHoM/Settings.")]
69+
[Input("toolkitName", "Toolkit you want to recover the settings for.")]
70+
[Output("settings", @"Settings recovered from the corresponding file in C:/ProgramData/BHoM/Settings.")]
7171
public static ISettings Settings(string toolkitName)
7272
{
7373
// Make sure the file exists

0 commit comments

Comments
 (0)