Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove 6.2 PreviousVersion Attributes #3095

Merged
merged 1 commit into from
Jun 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions BHoM_Engine/BHoM_Engine.csproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
Expand All @@ -13,21 +12,17 @@
<FileVersion>6.2.0.0</FileVersion>
<Configurations>Debug;Release;Test</Configurations>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>..\Build\</OutputPath>
</PropertyGroup>

<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="if not &quot;$(ConfigurationName)&quot; == &quot;Test&quot; (xcopy &quot;$(TargetDir)$(TargetFileName)&quot; &quot;C:\ProgramData\BHoM\Assemblies&quot; /Y)&#xD;&#xA;if not &quot;$(ConfigurationName)&quot; == &quot;Test&quot; (xcopy &quot;$(TargetDir)DeepCloner.dll&quot; &quot;C:\ProgramData\BHoM\Assemblies&quot; /Y)" />
</Target>

<ItemGroup>
<PackageReference Include="DeepCloner" Version="0.10.2" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Microsoft.Windows.Compatibility" Version="5.0.2" />
</ItemGroup>

<ItemGroup>
<Reference Include="BHoM">
<HintPath>$(ProgramData)\BHoM\Assemblies\BHoM.dll</HintPath>
Expand All @@ -40,5 +35,4 @@
<SpecificVersion>false</SpecificVersion>
</Reference>
</ItemGroup>

</Project>
1 change: 0 additions & 1 deletion BHoM_Engine/Convert/ToText.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ public static string ToText(this MemberInfo member, bool includePath = false)
[Input("hiddenStart", "Symbol used to separate hidden input parameters from required input parameters. Usually '{'.")]
[Input("hiddenEnd", "Symbol used for the end of separation of hidden input parameters from required input parameters. Usually '}'.")]
[Output("Text representation.")]
[PreviousVersion("6.2", "BH.Engine.Base.Convert.ToText(System.Reflection.MethodBase, System.Boolean, System.String, System.String, System.String, System.Boolean, System.Boolean, System.Int32, System.Int32, System.Boolean)")]
public static string ToText(this MethodBase method, bool includePath = false, string paramStart = "(", string paramSeparator = ", ", string paramEnd = ")", bool removeIForInterface = true, bool includeParamNames = true, int maxParams = 5, int maxChars = 40, bool includeParamPaths = false, bool includeHidden = true, string hiddenStart = "{", string hiddenEnd = "}")
{
if (method == null)
Expand Down
27 changes: 0 additions & 27 deletions BHoM_Engine/Versioning_62.json

This file was deleted.

7 changes: 0 additions & 7 deletions Serialiser_Engine/Serialiser_Engine.csproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
Expand All @@ -11,32 +10,26 @@
<RootNamespace>BH.Engine.Serialiser</RootNamespace>
<FileVersion>6.2.0.0</FileVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>..\Build\</OutputPath>
</PropertyGroup>

<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="xcopy &quot;$(TargetDir)$(TargetFileName)&quot; &quot;C:\ProgramData\BHoM\Assemblies&quot; /Y&#xD;&#xA;xcopy &quot;$(TargetDir)MongoDB.Bson.dll&quot; &quot;C:\ProgramData\BHoM\Assemblies&quot; /Y&#xD;&#xA;xcopy &quot;$(TargetDir)System.Drawing.Common.dll&quot; &quot;C:\ProgramData\BHoM\Assemblies&quot; /Y&#xD;&#xA;xcopy &quot;$(TargetDir)System.Runtime.CompilerServices.Unsafe.dll&quot; &quot;C:\ProgramData\BHoM\Assemblies&quot; /Y" />
</Target>

<ItemGroup>
<PackageReference Include="Microsoft.Windows.Compatibility" Version="5.0.2" />
<PackageReference Include="MongoDB.Bson" Version="2.18.0" />
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="5.0.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Reflection_Engine\Reflection_Engine.csproj" />
<ProjectReference Include="..\Versioning_Engine\Versioning_Engine.csproj" />
</ItemGroup>

<ItemGroup>
<Reference Include="BHoM">
<HintPath>$(ProgramData)\BHoM\Assemblies\BHoM.dll</HintPath>
<Private>false</Private>
<SpecificVersion>false</SpecificVersion>
</Reference>
</ItemGroup>

</Project>
27 changes: 0 additions & 27 deletions Serialiser_Engine/Versioning_62.json

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
*
Expand Down Expand Up @@ -38,7 +38,6 @@ public static partial class Create
/**** Public Methods ****/
/***************************************************/

[PreviousVersion("6.2", "BH.Engine.Structure.Create.CircularVoidHollowCore(System.Double, System.Double, System.Double, BH.oM.Structure.MaterialFragments.Concrete, System.String)")]
[Description("Creates a HollowCore surface property with circular voids.")]
[InputFromProperty("thickness")]
[Input("holeDiameter", "Diameter of the voided circular holes.", typeof(Length))]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
*
Expand Down Expand Up @@ -38,7 +38,6 @@ public static partial class Create
/**** Public Methods ****/
/***************************************************/

[PreviousVersion("6.2", "BH.Engine.Structure.Create.ElogatedCircularVoidHollowCore(System.Double, System.Double, System.Double, System.Double, BH.oM.Structure.MaterialFragments.Concrete, System.String)")]
[Description("Creates a HollowCore surface property with elongated circular voids.")]
[InputFromProperty("thickness")]
[Input("holeHeight", "Height of the voided elongated circular holes.", typeof(Length))]
Expand Down