Skip to content

Commit 0abfa4e

Browse files
author
Hevin
committed
add dependency of netstandard1.3
1 parent fd521c9 commit 0abfa4e

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

Jiguang.JPush/Jiguang.JPush.csproj

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netstandard1.3</TargetFramework>
4+
<TargetFrameworks Condition="'$(LibraryFrameworks)'==''">netstandard1.1;netstandard1.3</TargetFrameworks>
5+
<TargetFrameworks Condition="'$(LibraryFrameworks)'!=''">$(LibraryFrameworks)</TargetFrameworks>
56
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
67
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
78
<Description>The CSharp api client by Jiguang.</Description>
@@ -10,11 +11,17 @@
1011
<Product>JPush</Product>
1112
<Copyright>MIT</Copyright>
1213
<PackageLicenseUrl></PackageLicenseUrl>
13-
<Version>1.0.5</Version>
14+
<Version>1.0.6</Version>
1415
</PropertyGroup>
1516

1617
<ItemGroup>
1718
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
1819
</ItemGroup>
1920

21+
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.3'">
22+
<PackageReference Include="System.Net.Http">
23+
<Version>4.3.2</Version>
24+
</PackageReference>
25+
</ItemGroup>
26+
2027
</Project>

0 commit comments

Comments
 (0)