Jint.AotExample.csproj 395 B

12345678910111213141516
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <Nullable>enable</Nullable>
  6. <IsPackable>false</IsPackable>
  7. <PublishAot>true</PublishAot>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <ProjectReference Include="..\Jint\Jint.csproj" />
  11. <TrimmerRootAssembly Include="Jint" />
  12. </ItemGroup>
  13. </Project>