Code
·
20 lines
·
552 bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Optimize>true</Optimize>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.15.8" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\VanDerHeijden.Logging.File\VanDerHeijden.Logging.File.csproj" />
</ItemGroup>
</Project>