continuity/Benchmarks/Benchmarks.csproj

16 lines
386 B
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
2023-08-11 09:31:30 +00:00
<PropertyGroup>
<OutputType>Exe</OutputType>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>preview</LangVersion>
2023-10-27 18:13:55 +00:00
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
2023-08-11 09:31:30 +00:00
</PropertyGroup>
2023-08-11 09:31:30 +00:00
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.13.10" />
2023-08-11 09:31:30 +00:00
</ItemGroup>
</Project>