-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add Revit 2021 and Revit 2022 with some 22 testing * load DI dll * format * more Revit 21 work but it doesn't build, 22 works * Remove Revit 2021 * sln fixes * add shared DI project for Revit * post-merge fixes * redo some ifdefs * share conversions better * Remove class that was added * fix(dui3): fixes the black rectangle of doom basically cef65 versions need the removal of camelcasing convention to happen differently * Carry over what Dim found for 2022 * Fix Revit 2022 issues * fmt * Clean up for 2022 * More cleanup * Remove some ifdefs --------- Co-authored-by: Dimitrie Stefanescu <[email protected]>
- Loading branch information
1 parent
4079599
commit a2761a4
Showing
22 changed files
with
1,615 additions
and
67 deletions.
There are no files selected for viewing
8 changes: 8 additions & 0 deletions
8
Connectors/Revit/Speckle.Connectors.Revit2022/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": { | ||
"ConnectorRevit2022": { | ||
"commandName": "Executable", | ||
"executablePath": "C:\\Program Files\\Autodesk\\Revit 2022\\Revit.exe" | ||
} | ||
} | ||
} |
41 changes: 41 additions & 0 deletions
41
Connectors/Revit/Speckle.Connectors.Revit2022/Speckle.Connectors.Revit2022.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,41 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop"> | ||
<PropertyGroup> | ||
<TargetFramework>net48</TargetFramework> | ||
<PlatformTarget>x64</PlatformTarget> | ||
<UseWpf>true</UseWpf> | ||
<RevitVersion>2022</RevitVersion> | ||
<DefineConstants>$(DefineConstants);REVIT2022</DefineConstants> | ||
<CefSharpAnyCpuSupport>true</CefSharpAnyCpuSupport> | ||
<Prefer32bit>false</Prefer32bit> | ||
</PropertyGroup> | ||
|
||
<Import Project="..\Speckle.Connectors.RevitShared\Speckle.Connectors.RevitShared.projitems" Label="Shared" /> | ||
|
||
<Import Project="..\Speckle.Connectors.RevitShared.Cef\Speckle.Connectors.RevitShared.Cef.projitems" Label="Shared" /> | ||
|
||
<ItemGroup> | ||
<Reference Include="PresentationCore" /> | ||
<Reference Include="PresentationFramework" /> | ||
<Reference Include="System.ComponentModel.Composition" /> | ||
<Reference Include="System.Xaml" /> | ||
<Reference Include="System.Data.DataSetExtensions" /> | ||
<Reference Include="Microsoft.CSharp" /> | ||
<Reference Include="System.Net.Http" /> | ||
<Reference Include="WindowsBase" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\..\Converters\Revit\Speckle.Converters.Revit2022.DependencyInjection\Speckle.Converters.Revit2022.DependencyInjection.csproj" /> | ||
<ProjectReference Include="..\..\..\Converters\Revit\Speckle.Converters.Revit2022\Speckle.Converters.Revit2022.csproj" /> | ||
<ProjectReference Include="..\..\..\DUI3\Speckle.Connectors.DUI\Speckle.Connectors.DUI.csproj" /> | ||
<ProjectReference Include="..\..\..\Sdk\Speckle.Converters.Common.DependencyInjection\Speckle.Converters.Common.DependencyInjection.csproj" /> | ||
<ProjectReference Include="..\..\..\Sdk\Speckle.Converters.Common\Speckle.Converters.Common.csproj" /> | ||
<ProjectReference Include="..\..\..\Sdk\Speckle.Autofac\Speckle.Autofac.csproj" /> | ||
<ProjectReference Include="..\..\..\Sdk\Speckle.Connectors.Utils\Speckle.Connectors.Utils.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="CefSharp.Wpf" NoWarn="NU1903, NU1902" VersionOverride="65.0.1"/> | ||
<PackageReference Include="Revit.Async" /> | ||
</ItemGroup> | ||
</Project> |
Oops, something went wrong.