-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDnsClientX.Benchmarks.csproj
More file actions
27 lines (27 loc) · 1.09 KB
/
DnsClientX.Benchmarks.csproj
File metadata and controls
27 lines (27 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<AssemblyName>DnsClientX.Benchmarks</AssemblyName>
<AssemblyTitle>DnsClientX Benchmarks</AssemblyTitle>
<Title>DnsClientX Performance Benchmarks</Title>
<Description>Performance benchmarks for DnsClientX DNS library using BenchmarkDotNet.</Description>
<VersionPrefix>1.0.7</VersionPrefix>
<AssemblyVersion>1.0.7</AssemblyVersion>
<FileVersion>1.0.7</FileVersion>
<Company>Evotec</Company>
<Authors>Przemyslaw Klys</Authors>
<Copyright>(c) 2011 - 2025 Przemyslaw Klys @ Evotec. All rights reserved.</Copyright>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>Latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.15.6" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DnsClientX\DnsClientX.csproj" />
</ItemGroup>
</Project>