continuity/Benchmarks/Benchmarks.csproj
Timothy Schenk 20931b5751
Some checks failed
Test if Server can be built / build-server (push) Failing after 11s
chore: use .net 8 for benchmarking and prematurely test .net 8
2023-10-27 19:27:10 +02:00

15 lines
392 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>preview</LangVersion>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.13.9" />
</ItemGroup>
</Project>