Update .NET Core publish policy to create trimmed single-file executables

This commit is contained in:
Katy Coe
2019-10-22 16:23:36 +02:00
parent bfc6409526
commit 6075358dfe
3 changed files with 15 additions and 8 deletions

View File

@@ -6,6 +6,14 @@
<IsPackable>false</IsPackable>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<Compile Remove="TestAssemblies\**" />
<Compile Remove="TestBinaries\**" />