blob: 9f3f02d9cf15b6980b544128d1e507119fbbd25f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<RuntimeIdentifiers>win-x86;win-x64</RuntimeIdentifiers>
<EnableDynamicLoading>true</EnableDynamicLoading>
<Description>Latest .NET Core MBA</Description>
</PropertyGroup>
<ItemGroup>
<TrimmerRootAssembly Include="System.Diagnostics.Tools" />
<TrimmerRootAssembly Include="System.Runtime" />
<TrimmerRootAssembly Include="System.Runtime.InteropServices" />
<TrimmerRootAssembly Include="System.Runtime.Loader" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Nerdbank.GitVersioning" Version="3.3.37" PrivateAssets="all" />
<PackageReference Include="WixToolset.Mba.Core" Version="4.0.*" />
</ItemGroup>
</Project>
|