Skip to content

Commit

Permalink
feat(autocad): CNX-250 Adds 2022 connector and converter (#131)
Browse files Browse the repository at this point in the history
* adds autocad 2022 connector and converter

also changes dependencyinjection to be a shared project

* fix: selection events no longer crash 2022

co-authored with ogu and claire

---------

Co-authored-by: Dimitrie Stefanescu <[email protected]>
  • Loading branch information
clairekuang and didimitrie authored Aug 9, 2024
1 parent a1e95ee commit e85c568
Show file tree
Hide file tree
Showing 15 changed files with 1,203 additions and 30 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net48</TargetFramework>
<PlatformTarget>x64</PlatformTarget>
<AutoCADVersion>2022</AutoCADVersion>
<DefineConstants>$(DefineConstants);AUTOCAD2022;AUTOCAD</DefineConstants>
<Configurations>Debug;Release;Local</Configurations>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Speckle.AutoCAD.API" VersionOverride="2022.0.2" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\..\Converters\Autocad\Speckle.Converters.Autocad2022.DependencyInjection\Speckle.Converters.Autocad2022.DependencyInjection.csproj" />
<ProjectReference Include="..\..\..\DUI3\Speckle.Connectors.DUI.WebView\Speckle.Connectors.DUI.WebView.csproj" />
<ProjectReference Include="..\..\..\Sdk\Speckle.Converters.Common\Speckle.Converters.Common.csproj" />
</ItemGroup>

<Import Project="..\Speckle.Connectors.AutocadShared\Speckle.Connectors.AutocadShared.projitems" Label="Shared" />
</Project>
Loading

0 comments on commit e85c568

Please sign in to comment.