blob: 376390219efb4710b347c69efc69893c8b61b63a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<RuntimeIdentifiers>win-x86;win-x64</RuntimeIdentifiers>
<Description>WPF .NET Core MBA</Description>
<UseWPF>true</UseWPF>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="WixToolset.BootstrapperApplicationApi" />
</ItemGroup>
</Project>
|