forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServiceStack.HttpClient.Source.csproj
More file actions
28 lines (24 loc) · 1.26 KB
/
ServiceStack.HttpClient.Source.csproj
File metadata and controls
28 lines (24 loc) · 1.26 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.HttpClient.Source</PackageId>
<AssemblyName>ServiceStack.HttpClient</AssemblyName>
<RootNamespace>ServiceStack.HttpClient</RootNamespace>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<Title>ServiceStack.HttpClient .NET Standard 2.0</Title>
<PackageDescription>
Typed .NET Core and .NET Framework ServiceClients based on .NET's HttpClient
</PackageDescription>
<PackageTags>ServiceStack;Common;Framework;Clients;ServiceClients;Gateway</PackageTags>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\ServiceStack.Interfaces\ServiceStack.Source.Source.csproj" />
<ProjectReference Include="..\ServiceStack.Client\ServiceStack.Client.Source.csproj" />
<PackageReference Include="ServiceStack.Text" Version="$(Version)" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<PackageReference Include="System.Net.Requests" Version="4.3.0" />
<PackageReference Include="System.Collections.Specialized" Version="4.3.0" />
<PackageReference Include="System.ServiceModel.Primitives" Version="4.5.3" />
<PackageReference Include="System.Xml.XmlSerializer" Version="4.3.0" />
</ItemGroup>
</Project>