UnhGHttp.csproj 737 B

1234567891011121314151617181920212223
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net9.0</TargetFramework>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <Nullable>enable</Nullable>
  7. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  8. <IsTestAssetProject>true</IsTestAssetProject>
  9. <ServerGarbageCollection>true</ServerGarbageCollection>
  10. <TieredPGO>true</TieredPGO>
  11. <RuntimeIdentifier>linux-musl-x64</RuntimeIdentifier>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <PackageReference Include="GenHTTP.Modules.Layouting" Version="9.8.0" />
  15. <PackageReference Include="Unhinged.GenHttp.Experimental" Version="9.8.3" />
  16. </ItemGroup>
  17. </Project>