Skip to content

Commit 869f2de

Browse files
authored
Start of milestone changes for 8.0 (#1506)
2 parents df3249e + 5a06ccf commit 869f2de

File tree

9 files changed

+11
-17
lines changed

9 files changed

+11
-17
lines changed

Revit_Adapter/Revit_Adapter.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
<PropertyGroup>
44
<TargetFramework>net472</TargetFramework>
5-
<AssemblyVersion>7.0.0.0</AssemblyVersion>
5+
<AssemblyVersion>8.0.0.0</AssemblyVersion>
66
<Description>https://github.com/BHoM/Revit_Toolkit</Description>
77
<Version>6.0.0</Version>
88
<Authors>BHoM</Authors>
99
<Copyright>Copyright © https://github.com/BHoM</Copyright>
1010
<RootNamespace>BH.Adapter.Revit</RootNamespace>
11-
<FileVersion>7.3.0.0</FileVersion>
11+
<FileVersion>8.0.0.0</FileVersion>
1212
</PropertyGroup>
1313

1414
<PropertyGroup>

Revit_Core_Adapter/Revit_Core_Adapter.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<AssemblyVersion>7.0.0.0</AssemblyVersion>
4+
<AssemblyVersion>8.0.0.0</AssemblyVersion>
55
<Description>https://github.com/BHoM/Revit_Toolkit</Description>
66
<Version>6.0.0</Version>
77
<Authors>BHoM</Authors>
88
<Copyright>Copyright © https://github.com/BHoM</Copyright>
99
<RootNamespace>BH.Revit.Adapter.Core</RootNamespace>
10-
<FileVersion>7.3.0.0</FileVersion>
10+
<FileVersion>8.0.0.0</FileVersion>
1111
</PropertyGroup>
1212

1313
<PropertyGroup>

Revit_Core_Engine/Query/LinkedElementsInView.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ public static partial class Query
3333
/**** Public methods ****/
3434
/***************************************************/
3535

36-
[PreviousVersion("7.3", "BH.Revit.Engine.Core.Query.LinkedElementsInView(Autodesk.Revit.DB.ViewPlan, Autodesk.Revit.DB.RevitLinkInstance, System.Collections.Generic.List<Autodesk.Revit.DB.ElementFilter>)")]
3736
[Description("Return elements from the revit link instance located in the view scope (including hidden elements)")]
3837
[Input("view", "View to get visible elements from. The view needs to belong to the host document.")]
3938
[Input("linkInstance", "Revit link instance to get the elements from.")]

Revit_Core_Engine/Query/SpecFromName.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ public static partial class Query
3434
/**** Public methods ****/
3535
/***************************************************/
3636

37-
[PreviousVersion("7.3", "BH.Revit.Engine.Core.Query.UnitTypeByPropertyName(System.String)")]
3837
[Description("Returns Revit spec object (enum for Revit up to 2020 or ForgeTypeId for later versions) based on SpecTypeId property name that represents it.")]
3938
[Input("name", "Name of SpecTypeId property to be queried for the correspondent spec.")]
4039
[Output("spec", "Spec object under the input SpecTypeId property name.")]

Revit_Core_Engine/Query/SpecName.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ public static partial class Query
3333
/**** Public methods ****/
3434
/***************************************************/
3535

36-
[PreviousVersion("7.3", "BH.Revit.Engine.Core.Query.UnitTypePropertyName(Autodesk.Revit.DB.UnitType)")]
37-
[PreviousVersion("7.3", "BH.Revit.Engine.Core.Query.UnitTypePropertyName(Autodesk.Revit.DB.ForgeTypeId)")]
3836
[Description("Returns name of SpecTypeId property that contains a given Revit spec object (enum for Revit up to 2020 or ForgeTypeId for later versions).")]
3937
[Input("spec", "Spec object to be queried for the correspondent SpecTypeId property name.")]
4038
[Output("name", "Name of SpecTypeId property that contains the input spec object.")]
@@ -55,7 +53,6 @@ public static string SpecName(this ForgeTypeId spec)
5553

5654
/***************************************************/
5755

58-
[PreviousVersion("7.3", "BH.Revit.Engine.Core.Query.UnitTypePropertyName(Autodesk.Revit.DB.Parameter)")]
5956
[Description("Returns name of SpecTypeId property that contains given Revit parameter's spec object (enum for Revit up to 2020 or ForgeTypeId for later versions).")]
6057
[Input("parameter", "Parameter to be queried for the correspondent SpecTypeId property name.")]
6158
[Output("name", "Name of SpecTypeId property that contains the spec object correspondent to the input parameter.")]

Revit_Core_Engine/Query/ViewSolid.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*
1+
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
33
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
44
*
@@ -35,7 +35,6 @@ public static partial class Query
3535
/**** Public methods ****/
3636
/***************************************************/
3737

38-
[PreviousVersion("7.3", "BH.Revit.Engine.Core.Query.ViewSolid(Autodesk.Revit.DB.View)")]
3938
[Description("Returns a solid that represents the 3-dimensional extents of a given view.")]
4039
[Input("view", "View to compute the solids.")]
4140
[Input("createUnlimitedIfViewUncropped", "If false, the method will return null in case of missing crop box (i.e. the view is unlimited, so it cannot be represented by a solid). If true, uncropped views will produce an 'unlimited' solid roughly 1e+6 by 1e+6 in dimensions perpendicular to the view direction, with depth equal to view depth or 1e+4 in case of views without depth.")]

Revit_Core_Engine/Revit_Core_Engine.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<AssemblyVersion>7.0.0.0</AssemblyVersion>
3+
<AssemblyVersion>8.0.0.0</AssemblyVersion>
44
<Description>https://github.com/BHoM/Revit_Toolkit</Description>
55
<Version>6.0.0</Version>
66
<Authors>BHoM</Authors>
77
<Copyright>Copyright © https://github.com/BHoM</Copyright>
88
<RootNamespace>BH.Revit.Engine.Core</RootNamespace>
9-
<FileVersion>7.3.0.0</FileVersion>
9+
<FileVersion>8.0.0.0</FileVersion>
1010
</PropertyGroup>
1111

1212
<PropertyGroup>

Revit_Engine/Revit_Engine.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
<PropertyGroup>
44
<TargetFramework>net472</TargetFramework>
5-
<AssemblyVersion>7.0.0.0</AssemblyVersion>
5+
<AssemblyVersion>8.0.0.0</AssemblyVersion>
66
<Description>https://github.com/BHoM/Revit_Toolkit</Description>
77
<Version>6.0.0</Version>
88
<Authors>BHoM</Authors>
99
<Copyright>Copyright © https://github.com/BHoM</Copyright>
1010
<RootNamespace>BH.Engine.Revit</RootNamespace>
11-
<FileVersion>7.3.0.0</FileVersion>
11+
<FileVersion>8.0.0.0</FileVersion>
1212
</PropertyGroup>
1313

1414
<PropertyGroup>

Revit_oM/Revit_oM.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
<PropertyGroup>
44
<TargetFramework>net472</TargetFramework>
5-
<AssemblyVersion>7.0.0.0</AssemblyVersion>
5+
<AssemblyVersion>8.0.0.0</AssemblyVersion>
66
<Description>https://github.com/BHoM/Revit_Toolkit</Description>
77
<Version>6.0.0</Version>
88
<Authors>BHoM</Authors>
99
<Copyright>Copyright © https://github.com/BHoM</Copyright>
1010
<RootNamespace>BH.oM.Revit</RootNamespace>
11-
<FileVersion>7.3.0.0</FileVersion>
11+
<FileVersion>8.0.0.0</FileVersion>
1212
</PropertyGroup>
1313

1414
<PropertyGroup>

0 commit comments

Comments
 (0)