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