-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(dynamo): revit 2024 support (#2971)
- Loading branch information
Showing
10 changed files
with
122 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
ConnectorDynamo/ConnectorDynamo/Properties/launchSettings.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"profiles": { | ||
"Dynamo Revit 2024": { | ||
"commandName": "Executable", | ||
"executablePath": "C:\\Program Files\\Autodesk\\Revit 2024\\Revit.exe" | ||
} | ||
} | ||
} |
44 changes: 44 additions & 0 deletions
44
Objects/Converters/ConverterDynamo/ConverterDynamoRevit2024/ConverterDynamoRevit2024.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<RootNamespace>Objects.Converter.Dynamo</RootNamespace> | ||
<AssemblyName>Objects.Converter.DynamoRevit2024</AssemblyName> | ||
<Configurations>Debug;Release</Configurations> | ||
<DefineConstants>$(DefineConstants);REVIT;REVIT2024</DefineConstants> | ||
<PackageId>Speckle.Objects.Converter.DynamoRevit</PackageId> | ||
<Product>Objects.Converter.DynamoRevit</Product> | ||
<Description>Converter for Dynamo 2 for Revit 2024</Description> | ||
<PackageTags>$(PackageTags) objects converter dynamo revit</PackageTags> | ||
<CopyToKitFolder>true</CopyToKitFolder> | ||
</PropertyGroup> | ||
|
||
<!-- Revit 2024 uses Dynamo 2.10 --> | ||
<ItemGroup> | ||
<PackageReference Include="DynamoVisualProgramming.Core" Version="2.10.1.3976"> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
<PackageReference Include="DynamoVisualProgramming.DynamoServices" Version="2.10.1.3976" /> | ||
<PackageReference Include="DynamoVisualProgramming.ZeroTouchLibrary" Version="2.10.1.3976"> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
<PackageReference Include="Speckle.Revit.API" Version="2024.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\..\..\ConnectorRevit\RevitSharedResources2024\RevitSharedResources2024.csproj" /> | ||
<ProjectReference Include="..\..\..\..\Core\Core\Core.csproj" /> | ||
<ProjectReference Include="..\..\..\Objects\Objects.csproj" /> | ||
<ProjectReference Include="..\..\ConverterDxf\ConverterDxf\ConverterDxf.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Reference Include="RevitNodes"> | ||
<HintPath>..\..\..\..\ConnectorDynamo\RevitNodes-2.6.1.dll</HintPath> | ||
</Reference> | ||
</ItemGroup> | ||
|
||
<Import Project="..\ConverterDynamoShared\ConverterDynamoShared.projitems" Label="Shared" /> | ||
|
||
<Import Project="..\..\ConverterRevit\ConverterRevitShared\ConverterRevitShared.projitems" Label="Shared" /> | ||
</Project> |
8 changes: 8 additions & 0 deletions
8
Objects/Converters/ConverterDynamo/ConverterDynamoRevit2024/Properties/launchSettings.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"profiles": { | ||
"ConverterDynamo": { | ||
"commandName": "Executable", | ||
"executablePath": "C:\\Program Files\\Dynamo\\Dynamo Core\\2.7\\DynamoSandbox.exe" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters