mirror of
https://github.com/amerkoleci/Vortice.Win32.git
synced 2026-01-14 16:16:04 +08:00
16 lines
488 B
XML
16 lines
488 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project>
|
|
|
|
<!-- Settings that are only set for executables -->
|
|
<PropertyGroup Condition="'$(OutputType)' != 'Library' AND '$(UseWindowsForms)' != 'true'">
|
|
<PublishTrimmed>true</PublishTrimmed>
|
|
</PropertyGroup>
|
|
|
|
<!-- Settings that are only set for libraries -->
|
|
<PropertyGroup Condition="'$(OutputType)' == 'Library'">
|
|
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
|
|
<IsTrimmable>true</IsTrimmable>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|