forked from npgsql/npgsql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNpgsql.Benchmarks.csproj
More file actions
23 lines (18 loc) · 838 Bytes
/
Npgsql.Benchmarks.csproj
File metadata and controls
23 lines (18 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
<PropertyGroup>
<DebugType>portable</DebugType>
<AssemblyName>Npgsql.Benchmarks</AssemblyName>
<OutputType>Exe</OutputType>
<!-- Suppress security audit errors as errors (especially from SqlClient) in this benchmark-only project -->
<WarningsNotAsErrors>NU1901;NU1902;NU1903;NU1904</WarningsNotAsErrors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" />
<PackageReference Include="Microsoft.Data.SqlClient" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="../../src/Npgsql/Npgsql.csproj" />
<ProjectReference Include="../../src/Npgsql.NodaTime/Npgsql.NodaTime.csproj" />
<ProjectReference Include="../../src/Npgsql.NetTopologySuite/Npgsql.NetTopologySuite.csproj" />
</ItemGroup>
</Project>