Try running AOT compile again

This commit is contained in:
2025-06-19 18:19:31 -07:00
parent 66db26c74c
commit 7160515121
@@ -5,19 +5,22 @@
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<!-- Reduce File Size from 6MB to 1.5MB -->
<PublishTrimmed>true</PublishTrimmed>
<TrimMode>link</TrimMode>
<RunAOTCompilation>false</RunAOTCompilation>
<RunAOTCompilation>true</RunAOTCompilation>
<InvariantGlobalization>true</InvariantGlobalization>
<BlazorEnableCompression>true</BlazorEnableCompression>
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
<StripSymbols>true</StripSymbols>
</PropertyGroup>
<!-- Retain important files on trimming -->
<ItemGroup>
<TrimmerRootDescriptor Include="ILLink.Descriptors.xml" />
</ItemGroup>
<!-- Packages -->
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.Authorization" Version="9.0.3" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="9.0.3" />
@@ -25,6 +28,7 @@
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
<!-- Project References -->
<ItemGroup>
<ProjectReference Include="..\MistoxWebsite.Shared\MistoxWebsite.Shared.csproj" />
</ItemGroup>