1234567891011121314151617181920212223 |
- <Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
-
- <TargetFramework>net5.0</TargetFramework>
- <LangVersion>9.0</LangVersion>
-
- <AssemblyTitle>EmbedIO Benchmarks</AssemblyTitle>
- <Description>Test suite to be executed with TechEmpower FrameworkBenchmarks.</Description>
-
- <StartupObject>Benchmarks.Program</StartupObject>
- <OutputType>Exe</OutputType>
-
- <ServerGarbageCollection>true</ServerGarbageCollection>
- <TieredCompilation>false</TieredCompilation>
-
- </PropertyGroup>
-
- <ItemGroup>
- <PackageReference Include="EmbedIO" Version="3.4.3" />
- </ItemGroup>
-
- </Project>
|