forked from serenity-is/Serenity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Serenity.Data.csproj
27 lines (27 loc) · 1.27 KB
/
Serenity.Data.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
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\SharedProperties.xml" />
<PropertyGroup>
<AssemblyName>Serenity.Data</AssemblyName>
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
<Title>Serenity Platform - Data Library</Title>
<Description>Contains helper classes for SQL data connections, fluent SQL builders, criteria, join definitions, data mapping, validation...</Description>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Serenity.Core\Serenity.Core.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<PackageReference Include="System.Data.Common" Version="4.3.0" />
<PackageReference Include="System.Data.SqlClient" Version="4.4.3" />
<PackageReference Include="System.Threading.Thread" Version="4.3.0" />
<PackageReference Include="Dapper" Version="1.50.4" />
<PackageReference Include="Microsoft.CSharp" Version="4.4.1" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
<Reference Include="System.Data" />
<Reference Include="System" />
<Reference Include="Microsoft.CSharp" />
</ItemGroup>
</Project>