Benchmarks.csproj 658 B

1234567891011121314151617181920212223
  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="EmbedIO" Version="3.4.3" />
  14. </ItemGroup>
  15. </Project>