forked from ServiceStack/ServiceStack.OrmLite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServiceStack.OrmLite.SqlServer.Source.csproj
More file actions
25 lines (21 loc) · 1.16 KB
/
Copy pathServiceStack.OrmLite.SqlServer.Source.csproj
File metadata and controls
25 lines (21 loc) · 1.16 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>ServiceStack.OrmLite.SqlServer</PackageId>
<AssemblyName>ServiceStack.OrmLite.SqlServer</AssemblyName>
<TargetFrameworks>net45;netstandard2.0</TargetFrameworks>
<Title>OrmLite.SqlServer - Fast, code-first, config-free POCO ORM</Title>
<PackageDescription>
Light, simple and fast convention-based code-first POCO ORM for Sql Server.
Support for Creating and Dropping Table Schemas from POCOs, Complex Property types transparently stored in schemaless text blobs in SQLServer.
</PackageDescription>
<PackageTags>SQLServer;OrmLite;RDBMS;SQL;POCO;Code-First;ORM;Schema-less;Blobs</PackageTags>
<DefineConstants>$(DefineConstants);ASYNC</DefineConstants>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\ServiceStack.OrmLite\ServiceStack.OrmLite.Source.csproj" />
<ProjectReference Include="..\..\..\ServiceStack\src\ServiceStack.Common\ServiceStack.Common.Source.csproj" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<PackageReference Include="System.Data.SqlClient" Version="4.8.1" />
</ItemGroup>
</Project>