21 lines
591 B
XML
21 lines
591 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net7.0-windows10.0.17763.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<UseWPF>true</UseWPF>
|
|
<SupportedOSPlatformVersion>10.0.17763.0</SupportedOSPlatformVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="WindowsAPICodePack-Core" Version="1.1.2" />
|
|
<PackageReference Include="WindowsAPICodePack-Shell" Version="1.1.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Cupola\Cupola.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|