forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServiceStack.Server.Source.csproj
More file actions
35 lines (31 loc) · 1.81 KB
/
ServiceStack.Server.Source.csproj
File metadata and controls
35 lines (31 loc) · 1.81 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>ServiceStack.Server</PackageId>
<AssemblyName>ServiceStack.Server</AssemblyName>
<TargetFrameworks>net45;netstandard2.0</TargetFrameworks>
<Title>ServiceStack Server integration with Redis and OrmLite</Title>
<PackageDescription>
Integration libraries and adapters with other major ServiceStack server components.
Includes high-level API's that use OrmLite and Redis including:
AutoQuery, Redis MQ, OrmLiteAuthRepository, OrmLiteCacheClient, OrmLiteAppSettings,
RedisServerEvents and RedisRequestLogger.
</PackageDescription>
<PackageTags>ServiceStack;AutoQuery;OrmLite;Redis;MQ;Caching;ServerEvents</PackageTags>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<DefineConstants>$(DefineConstants);SOURCE</DefineConstants>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\ServiceStack.Text\src\ServiceStack.Text\ServiceStack.Text.csproj" />
<ProjectReference Include="..\..\..\ServiceStack.OrmLite\src\ServiceStack.OrmLite\ServiceStack.OrmLite.Source.csproj" />
<ProjectReference Include="..\..\..\ServiceStack.Redis\src\ServiceStack.Redis\ServiceStack.Redis.Source.csproj" />
<ProjectReference Include="..\ServiceStack.Interfaces\ServiceStack.Interfaces.csproj" />
<ProjectReference Include="..\ServiceStack.Client\ServiceStack.Client.Source.csproj" />
<ProjectReference Include="..\ServiceStack.Common\ServiceStack.Common.Source.csproj" />
<ProjectReference Include="..\ServiceStack\ServiceStack.Source.csproj" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
<Reference Include="System.Xml" />
<Reference Include="System.Data" />
<Reference Include="System.ComponentModel.DataAnnotations" />
</ItemGroup>
</Project>