Skip to content

Commit

Permalink
add Revit 2025 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Tereami committed Apr 25, 2024
1 parent c3209c7 commit 064f12a
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ExplodeRebarSet.sln
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Global
R2022|Any CPU = R2022|Any CPU
R2023|Any CPU = R2023|Any CPU
R2024|Any CPU = R2024|Any CPU
R2025|Any CPU = R2025|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{C12B4A47-E7FD-448A-AF1A-4C9D8FDB2A79}.R2017|Any CPU.ActiveCfg = R2017|Any CPU
Expand All @@ -33,6 +34,8 @@ Global
{C12B4A47-E7FD-448A-AF1A-4C9D8FDB2A79}.R2023|Any CPU.Build.0 = R2023|Any CPU
{C12B4A47-E7FD-448A-AF1A-4C9D8FDB2A79}.R2024|Any CPU.ActiveCfg = R2024|Any CPU
{C12B4A47-E7FD-448A-AF1A-4C9D8FDB2A79}.R2024|Any CPU.Build.0 = R2024|Any CPU
{C12B4A47-E7FD-448A-AF1A-4C9D8FDB2A79}.R2025|Any CPU.ActiveCfg = R2025|Any CPU
{C12B4A47-E7FD-448A-AF1A-4C9D8FDB2A79}.R2025|Any CPU.Build.0 = R2025|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
25 changes: 25 additions & 0 deletions ExplodeRebarSet/ExplodeRebarSet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,15 @@
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<AssemblyName>$(AssemblyName)_2024</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'R2025|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\R2025\</OutputPath>
<DefineConstants>DEBUG;R2025</DefineConstants>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<AssemblyName>$(AssemblyName)_2025</AssemblyName>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>false</SignAssembly>
</PropertyGroup>
Expand Down Expand Up @@ -225,6 +234,22 @@
<Private>False</Private>
</Reference>
</ItemGroup>
</When>
<When Condition=" '$(Configuration)'=='R2025' ">
<ItemGroup>
<Reference Include="RevitAPI">
<HintPath>C:\Program Files\Autodesk\Revit 2025\RevitAPI.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="RevitAPIUI">
<HintPath>C:\Program Files\Autodesk\Revit 2025\RevitAPIUI.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="AdWindows">
<HintPath>C:\Program Files\Autodesk\Revit 2025\AdWindows.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
</When>
</Choose>
<ItemGroup>
Expand Down

0 comments on commit 064f12a

Please sign in to comment.