Benchmarks.csproj 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net10.0</TargetFramework>
  4. <LangVersion>14.0</LangVersion>
  5. <ImplicitUsings>true</ImplicitUsings>
  6. <OutputType>Exe</OutputType>
  7. <AssemblyTitle>GenHTTP Benchmarks</AssemblyTitle>
  8. <Description>Test suite to be executed with TechEmpower FrameworkBenchmarks.</Description>
  9. <DefineConstants>$(DefineConstants);$(GENHTTP_ENGINE_NAME)</DefineConstants>
  10. <ServerGarbageCollection>true</ServerGarbageCollection>
  11. <TieredPGO>true</TieredPGO>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <None Remove="Resources\Fortunes.html" />
  15. <None Remove="Resources\Template.html" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <EmbeddedResource Include="Resources\Template.html" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <PackageReference Include="$(GENHTTP_ENGINE_PACKAGE)" Version="10.2.0" />
  22. <PackageReference Include="GenHTTP.Modules.Webservices" Version="10.2.0" />
  23. <PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.1" />
  24. <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.0" />
  25. </ItemGroup>
  26. </Project>