forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServiceStack.Interfaces.Core.csproj
More file actions
24 lines (20 loc) · 1.03 KB
/
ServiceStack.Interfaces.Core.csproj
File metadata and controls
24 lines (20 loc) · 1.03 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>ServiceStack.Interfaces.Core</PackageId>
<AssemblyName>ServiceStack.Interfaces</AssemblyName>
<RootNamespace>ServiceStack.Interfaces</RootNamespace>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<Title>ServiceStack.Interfaces .NET Standard 2.0</Title>
<PackageDescription>
Lightweight and implementation-free interfaces for DTO's, providers and adapters.
</PackageDescription>
<PackageTags>ServiceStack;Common;Framework;Clients;ServiceClients;Gateway</PackageTags>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.4" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<PackageReference Include="System.Runtime.Serialization.Primitives" Version="4.3.0" />
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="1.1.0" />
</ItemGroup>
</Project>