mirror of
https://github.com/UglyToad/PdfPig.git
synced 2026-03-10 00:23:29 +08:00
* Enable trimming and AOT analysis for all none-test projects * Try annotating various XmlSerializer related functions with RequiresUnreferencedCode * fix remaining AOT warnings * fix attribute warning message --------- Co-authored-by: Richard Webb <richard.webb@helpsystems.com>
7 lines
351 B
XML
7 lines
351 B
XML
<Project>
|
|
<PropertyGroup Condition="'$(IsTestProject)' != 'true'">
|
|
<IsTrimmable Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net6.0'))">true</IsTrimmable>
|
|
<IsAotCompatible Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net8.0'))">true</IsAotCompatible>
|
|
</PropertyGroup>
|
|
</Project>
|