-
Notifications
You must be signed in to change notification settings - Fork 222
/
Copy pathSmartSql.Test.Performance.csproj
31 lines (26 loc) · 1.1 KB
/
SmartSql.Test.Performance.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.13.8" />
<PackageReference Include="Dapper" Version="1.60.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.3.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="2.3.0" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.5" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SmartSql.ScriptTag\SmartSql.ScriptTag.csproj" />
<ProjectReference Include="..\SmartSql.Test\SmartSql.Test.csproj" />
<ProjectReference Include="..\SmartSql.TypeHandler\SmartSql.TypeHandler.csproj" />
<ProjectReference Include="..\SmartSql\SmartSql.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="Maps\AllPrimitive.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="SmartSqlMapConfig.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>