Skip to content

Commit a750a16

Browse files
BHoMBotFraser Greenroyd
authored andcommitted
Update copyright headers to 2023
1 parent 9df9575 commit a750a16

21 files changed

+42
-21
lines changed

CSharp_Engine/Compute/ApplyGroups.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -85,3 +85,4 @@ private static BlockNode ApplyGroup(Dictionary<Guid, INode> nodes, NodeGroup gro
8585
}
8686

8787

88+

CSharp_Engine/Compute/Compile.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -75,3 +75,4 @@ public static MethodInfo CompileMethod(string code, List<string> refFiles)
7575
}
7676
}
7777

78+

CSharp_Engine/Compute/MakeStandAlone.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -132,3 +132,4 @@ private static List<MethodBase> CollectPrivateMethods(IEnumerable<MethodBase> me
132132
}
133133

134134

135+

CSharp_Engine/Compute/NodeSequence.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -130,3 +130,4 @@ private static List<ReceiverState> NextReceivers(List<DataParam> emitters, Dicti
130130
}
131131

132132

133+

CSharp_Engine/Compute/Variables.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -176,3 +176,4 @@ private static string VariableName(string name, Dictionary<string, int> nameCoun
176176
}
177177

178178

179+

CSharp_Engine/Convert/ToCSharpSyntaxNode.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -80,3 +80,4 @@ private static List<ParameterSyntax> MethodParameters(this ClusterContent conten
8080
}
8181

8282

83+

CSharp_Engine/Convert/ToCSharpText.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -160,3 +160,4 @@ private static string WrapWithType(string code, MethodInfo method)
160160
}
161161

162162

163+

CSharp_Engine/Objects/NodeState.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -51,3 +51,4 @@ public class NodeState
5151
}
5252

5353

54+

CSharp_Engine/Objects/ReceiverState.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -54,3 +54,4 @@ public class ReceiverState
5454
}
5555

5656

57+

CSharp_Engine/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -58,3 +58,4 @@
5858
[assembly: AssemblyFileVersion("6.1.0.0")]
5959

6060

61+

CSharp_Engine/Query/ArgumentValue.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -69,3 +69,4 @@ public static ExpressionSyntax ArgumentValue(this ReceiverParam receiver, Dictio
6969
}
7070

7171

72+

CSharp_Engine/Query/Body.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -88,3 +88,4 @@ private static StatementSyntax ReturnStatement(Variable variable)
8888
}
8989

9090

91+

CSharp_Engine/Query/Children.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -56,3 +56,4 @@ public static List<Guid> Children(this NodeGroup group)
5656
}
5757

5858

59+

CSharp_Engine/Query/DepthDifference.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -92,3 +92,4 @@ private static int DepthDifference(this Type t1, Type t2)
9292
}
9393

9494

95+

CSharp_Engine/Query/Expression.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -240,3 +240,4 @@ private static string MethodName(this Type type)
240240
}
241241

242242

243+

CSharp_Engine/Query/OutputVariables.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -179,3 +179,4 @@ private static Dictionary<Guid, Variable> OutputVariables(this INode node, Dicti
179179
}
180180

181181

182+

CSharp_Engine/Query/ReturnType.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -78,3 +78,4 @@ public static TypeSyntax IReturnType(this INode node, int depth = 0)
7878
}
7979

8080

81+

CSharp_Engine/Query/Statements.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -357,3 +357,4 @@ private static void PromoteToList(Dictionary<Guid, Variable> variables, Guid id)
357357
}
358358

359359

360+

CSharp_Engine/Query/SyntaxToken.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -58,3 +58,4 @@ public static SyntaxToken SyntaxToken(this Variable variable)
5858
}
5959

6060

61+

CSharp_oM/Others/Variable.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -53,3 +53,4 @@ public class Variable : BHoMObject
5353
}
5454

5555

56+

CSharp_oM/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -58,3 +58,4 @@
5858
[assembly: AssemblyFileVersion("6.1.0.0")]
5959

6060

61+

0 commit comments

Comments
 (0)