-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
trimming.csproj
27 lines (24 loc) · 960 Bytes
/
trimming.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<Project Sdk="Microsoft.NET.Sdk">
<!--
This project exists solely so that we can get full trimming analysis of the
library projects when running dotnet publish.
-->
<PropertyGroup>
<AssemblyName>trimming</AssemblyName>
<IsPublishable>true</IsPublishable>
<OutputType>Exe</OutputType>
<PublishTrimmed>true</PublishTrimmed>
<RootNamespace>Vezel.Cathode.Trimming</RootNamespace>
<SelfContained>true</SelfContained>
</PropertyGroup>
<ItemGroup>
<TrimmerRootAssembly Include="Vezel.Cathode" />
<TrimmerRootAssembly Include="Vezel.Cathode.Common" />
<TrimmerRootAssembly Include="Vezel.Cathode.Extensions" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="../common/common.csproj" />
<ProjectReference Include="../core/core.csproj" />
<ProjectReference Include="../extensions/extensions.csproj" />
</ItemGroup>
</Project>