Disable dehydration when doing an untrimmed NativeAOT build

This commit is contained in:
Alex Barney 2024-06-30 10:13:19 -07:00
parent e757dff9b9
commit 86336f06ec

View file

@ -44,7 +44,11 @@
<StackTraceSupport>false</StackTraceSupport> <StackTraceSupport>false</StackTraceSupport>
</PropertyGroup> </PropertyGroup>
<ItemGroup Condition=" '$(BuildType)' == 'native-untrimmed' "> <PropertyGroup Condition=" '$(BuildType)' == 'native-untrimmed' ">
<IlcDehydrate>false</IlcDehydrate>
</PropertyGroup>
<ItemGroup Condition=" '$(BuildType)' == 'native-untrimmed' ">
<TrimmerRootAssembly Include="LibHac" /> <TrimmerRootAssembly Include="LibHac" />
</ItemGroup> </ItemGroup>