-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Expand file tree
/
Copy pathDapper.Tests.Performance.csproj
More file actions
68 lines (63 loc) · 2.98 KB
/
Dapper.Tests.Performance.csproj
File metadata and controls
68 lines (63 loc) · 2.98 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>Dapper.Tests.Performance</AssemblyName>
<Description>Dapper Core Performance Suite</Description>
<OutputType>Exe</OutputType>
<TargetFrameworks>net462;net8.0</TargetFrameworks>
<IsTestProject>false</IsTestProject>
<NoWarn>$(NoWarn);IDE0063;IDE0034;IDE0059;IDE0060</NoWarn>
</PropertyGroup>
<ItemGroup>
<!--<PackageReference Include="BLToolkit" Version="4.3.6" />-->
<PackageReference Include="Dashing" />
<PackageReference Include="Belgrade.Sql.Client" />
<PackageReference Include="BenchmarkDotNet" />
<PackageReference Include="DevExpress.Xpo" />
<PackageReference Include="EntityFramework" VersionOverride="6.5.1" />
<PackageReference Include="linq2db.SqlServer" />
<PackageReference Include="MySqlConnector" />
<PackageReference Include="NHibernate" />
<PackageReference Include="Iesi.Collections" />
<PackageReference Include="Mighty" />
<PackageReference Include="PetaPoco" />
<PackageReference Include="RepoDb.SqlServer" />
<PackageReference Include="ServiceStack.OrmLite.SqlServer" />
<PackageReference Include="SqlMarshal" />
<PackageReference Include="System.Data.SQLite" />
<PackageReference Include="System.Reflection.Metadata" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' != 'net462'">
<PackageReference Include="Npgsql" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net462'">
<PackageReference Include="Npgsql" VersionOverride="8.0.6"/>
</ItemGroup>
<ItemGroup>
<!-- NU1903 warnings - pinned for security advisories, not directly used -->
<PackageReference Include="System.Text.RegularExpressions" NoWarn="RT0003" />
<PackageReference Include="System.Private.Uri" NoWarn="RT0003" />
<PackageReference Include="Microsoft.Data.SqlClient" />
<PackageReference Include="System.Net.Http" NoWarn="RT0003" />
<PackageReference Include="Azure.Identity" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="NHibernate\*.xml" />
<Compile Update="Benchmarks.*.cs" DependentUpon="Benchmarks.cs" />
</ItemGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net462'">
<DefineConstants>$(DefineConstants);NET4X</DefineConstants>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net462'">
<ProjectReference Include="../../Dapper.EntityFramework/Dapper.EntityFramework.csproj" />
<PackageReference Include="Microsoft.SqlServer.Types" />
<PackageReference Include="Susanoo.SqlServer" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" VersionOverride="[3.1.10]" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Configuration" />
<Reference Include="System.Data.Linq" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' != 'net462'">
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" />
<PackageReference Include="Norm.net" />
</ItemGroup>
</Project>