Jint.AotExample.csproj 439 B

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