blob: 12ca0d133e041b84ca0fc4af7e719c2d3a30d1a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RuntimeIdentifiers>win-x86;win-x64</RuntimeIdentifiers>
<EnableDynamicLoading>true</EnableDynamicLoading>
<Description>WPF .NET Core MBA</Description>
<UseWPF>true</UseWPF>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Nerdbank.GitVersioning" Version="2.1.65" PrivateAssets="all" />
<PackageReference Include="WixToolset.Mba.Core" Version="4.0.32" />
</ItemGroup>
</Project>
|