forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServiceStack.Server.csproj
More file actions
38 lines (34 loc) · 1.57 KB
/
ServiceStack.Server.csproj
File metadata and controls
38 lines (34 loc) · 1.57 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
<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
- RedisRequestLogger
</PackageDescription>
<PackageTags>ServiceStack;AutoQuery;OrmLite;Redis;MQ;Caching;ServerEvents</PackageTags>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\ServiceStack.Interfaces\ServiceStack.Interfaces.csproj" />
<ProjectReference Include="..\ServiceStack.Client\ServiceStack.Client.csproj" />
<ProjectReference Include="..\ServiceStack.Common\ServiceStack.Common.csproj" />
<ProjectReference Include="..\ServiceStack\ServiceStack.csproj" />
<PackageReference Include="ServiceStack.Text" Version="$(Version)" />
<PackageReference Include="ServiceStack.OrmLite" Version="$(Version)" />
<PackageReference Include="ServiceStack.Redis" Version="$(Version)" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
<Reference Include="System.Xml" />
<Reference Include="System.Data" />
<Reference Include="System.ComponentModel.DataAnnotations" />
</ItemGroup>
</Project>