forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServiceStack.Common.Core.csproj
More file actions
28 lines (28 loc) · 1.53 KB
/
ServiceStack.Common.Core.csproj
File metadata and controls
28 lines (28 loc) · 1.53 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>ServiceStack.Common.Core</PackageId>
<AssemblyName>ServiceStack.Common</AssemblyName>
<RootNamespace>ServiceStack.Common</RootNamespace>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<RootNamespace>ServiceStack</RootNamespace>
<Title>ServiceStack.Common .NET Standard 2.0</Title>
<PackageDescription>
ServiceStack Templates, Virtual File System, SimpleContainer and Common library for ServiceStack projects.
</PackageDescription>
<PackageTags>ServiceStack;Common;Framework;Clients;ServiceClients;Gateway</PackageTags>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\ServiceStack.Interfaces\ServiceStack.Interfaces.Core.csproj" />
<PackageReference Include="ServiceStack.Text.Core" Version="$(Version)" />
<PackageReference Include="System.Memory" Version="4.5.2" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<PackageReference Include="System.Dynamic.Runtime" Version="4.3.0" />
<PackageReference Include="System.Net.Requests" Version="4.3.0" />
<PackageReference Include="System.Data.Common" Version="4.3.0" />
<PackageReference Include="System.ComponentModel.Primitives" Version="4.3.0" />
<PackageReference Include="System.Net.NetworkInformation" Version="4.3.0" />
<PackageReference Include="System.Runtime.Serialization.Primitives" Version="4.3.0" />
<PackageReference Include="System.Reflection.TypeExtensions" Version="4.5.0" />
</ItemGroup>
</Project>