-
-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathPerf.csproj
More file actions
24 lines (21 loc) · 769 Bytes
/
Perf.csproj
File metadata and controls
24 lines (21 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<SkipSourceLink>true</SkipSourceLink>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.14.0" />
</ItemGroup>
<ItemGroup>
<Compile Update="CommandBenchmark.*.cs">
<DependentUpon>CommandBenchmark.cs</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup Condition="!$(Configuration.EndsWith('NuGet'))">
<ProjectReference Include="..\FirebirdSql.Data.FirebirdClient\FirebirdSql.Data.FirebirdClient.csproj" />
</ItemGroup>
<ItemGroup Condition="$(Configuration.EndsWith('NuGet'))">
<PackageReference Include="FirebirdSql.Data.FirebirdClient" Version="8.5.4" />
</ItemGroup>
</Project>