blob: 9e0d550cbc8cd6bd39749e16f69929b6f746261d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<RuntimeIdentifiers>win-x86;win-x64</RuntimeIdentifiers>
<EnableDynamicLoading>true</EnableDynamicLoading>
<Description>Earliest .NET Core MBA</Description>
</PropertyGroup>
<ItemGroup>
<TrimmerRootAssembly Include="System.Runtime.Loader" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Nerdbank.GitVersioning" Version="2.1.65" PrivateAssets="all" />
<PackageReference Include="WixToolset.Mba.Core" Version="4.0.35" />
</ItemGroup>
</Project>
|