Benchmarks.csproj 728 B

123456789101112131415161718192021222324
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net5.0</TargetFramework>
  4. <LangVersion>9.0</LangVersion>
  5. <AssemblyTitle>EmbedIO Benchmarks</AssemblyTitle>
  6. <Description>Test suite to be executed with TechEmpower FrameworkBenchmarks.</Description>
  7. <StartupObject>Benchmarks.Program</StartupObject>
  8. <OutputType>Exe</OutputType>
  9. <ServerGarbageCollection>true</ServerGarbageCollection>
  10. <TieredCompilation>false</TieredCompilation>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <PackageReference Include="System.Text.Json" Version="5.0.0" />
  14. <PackageReference Include="Watson" Version="4.0.0.3" />
  15. </ItemGroup>
  16. </Project>