forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServiceStack.Server.Core.csproj
More file actions
34 lines (31 loc) · 1.74 KB
/
ServiceStack.Server.Core.csproj
File metadata and controls
34 lines (31 loc) · 1.74 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>ServiceStack.Server.Core</PackageId>
<AssemblyName>ServiceStack.Server</AssemblyName>
<RootNamespace>ServiceStack.Server</RootNamespace>
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
<Title>ServiceStack.Server .NET Standard 2.0</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>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<DefineConstants>$(DefineConstants);NETCORE;NETSTANDARD2_0</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'net6.0' ">
<DefineConstants>$(DefineConstants);NETCORE;NET6_0;NET6_0_OR_GREATER</DefineConstants>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\ServiceStack.Interfaces\ServiceStack.Interfaces.Core.csproj" />
<ProjectReference Include="..\ServiceStack.Client\ServiceStack.Client.Core.csproj" />
<ProjectReference Include="..\ServiceStack.Common\ServiceStack.Common.Core.csproj" />
<ProjectReference Include="..\ServiceStack\ServiceStack.Core.csproj" />
<PackageReference Include="ServiceStack.Text.Core" Version="$(Version)" />
<PackageReference Include="ServiceStack.OrmLite.Core" Version="$(Version)" />
<PackageReference Include="ServiceStack.Redis.Core" Version="$(Version)" />
</ItemGroup>
</Project>