CodeWalker/CodeWalker.WinForms/CodeWalker.WinForms.csproj

24 lines
794 B
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
2017-09-21 18:33:05 +08:00
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net48</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
2023-11-12 01:59:17 +08:00
<UseWPF>true</UseWPF>
<LangVersion>latest</LangVersion>
2017-09-21 18:33:05 +08:00
</PropertyGroup>
2023-11-12 01:59:17 +08:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DockPanelSuite.ThemeVS2015" Version="3.0.6" />
<PackageReference Include="SharpDX" Version="4.2.0" />
<PackageReference Include="SharpDX.Mathematics" Version="4.2.0" />
2018-03-03 21:03:08 +08:00
</ItemGroup>
2017-09-21 18:33:05 +08:00
</Project>