-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathVenflow.Benchmarks.csproj
More file actions
28 lines (25 loc) · 1.17 KB
/
Copy pathVenflow.Benchmarks.csproj
File metadata and controls
28 lines (25 loc) · 1.17 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
28
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<UserSecretsId>9ee3e386-8d57-4d94-bde3-820b26e3efdf</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.13.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="5.0.0" />
<PackageReference Include="Dapper" Version="2.0.90" />
<PackageReference Include="RepoDb" Version="1.12.8" />
<PackageReference Include="RepoDb.PostgreSql" Version="1.1.4" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="6.0.0-rc.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Venflow\Venflow.csproj" />
<ProjectReference Include="..\Venflow.Shared\Venflow.Shared.csproj" />
</ItemGroup>
<Target Name="RemoveAnalyzers" BeforeTargets="CoreCompile">
<ItemGroup>
<Analyzer Remove="@(Analyzer)" Condition="%(FileName) == 'Microsoft.Extensions.Logging.Generators'" />
<Analyzer Remove="@(Analyzer)" Condition="%(FileName) == 'System.Text.Json.SourceGeneration'" />
</ItemGroup>
</Target>
</Project>