2023-08-10 20:07:40 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
2023-08-11 09:31:30 +00:00
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
2023-10-27 17:27:10 +00:00
|
|
|
<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-10 20:07:40 +00:00
|
|
|
|
2023-08-11 09:31:30 +00:00
|
|
|
<ItemGroup>
|
2023-11-01 16:34:20 +00:00
|
|
|
<PackageReference Include="BenchmarkDotNet" Version="0.13.10" />
|
2023-11-04 09:18:58 +00:00
|
|
|
<PackageReference Include="Meziantou.Analyzer" Version="2.0.104">
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
</PackageReference>
|
2023-08-11 09:31:30 +00:00
|
|
|
</ItemGroup>
|
2023-08-10 20:07:40 +00:00
|
|
|
|
|
|
|
</Project>
|