21 lines
673 B
XML
21 lines
673 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net48;net8.0-windows</TargetFrameworks>
|
|
<!-- we're doing it because tekla is complaning about arm dlls -->
|
|
<!-- we don't really want to support windows arm for now -->
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
<UseWpf>true</UseWpf>
|
|
<EnableWindowsTargeting>true</EnableWindowsTargeting>
|
|
<Configurations>Debug;Release;Local</Configurations>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Web.WebView2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Speckle.Connectors.DUI\Speckle.Connectors.DUI.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|