|
@@ -1,13 +1,13 @@
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
<PropertyGroup>
|
|
|
- <TargetFramework>netstandard2.0</TargetFramework>
|
|
|
+ <TargetFrameworks>netcoreapp2.0;netcoreapp2.1;netcoreapp2.2;</TargetFrameworks>
|
|
|
<Company>Essensoft</Company>
|
|
|
<Authors>Roc</Authors>
|
|
|
<Product>Payment</Product>
|
|
|
- <Version>2.0.0</Version>
|
|
|
- <AssemblyVersion>2.0.0.0</AssemblyVersion>
|
|
|
- <FileVersion>2.0.0.0</FileVersion>
|
|
|
+ <Version>2.1.0</Version>
|
|
|
+ <AssemblyVersion>2.1.0.0</AssemblyVersion>
|
|
|
+ <FileVersion>2.1.0.0</FileVersion>
|
|
|
<Description>Essensoft.AspNetCore.Payment.LianLianPay</Description>
|
|
|
<Copyright>© Essensoft 2018</Copyright>
|
|
|
<PackageProjectUrl>https://github.com/Essensoft/Payment</PackageProjectUrl>
|
|
@@ -22,11 +22,24 @@
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
- <PackageReference Include="Microsoft.AspNetCore.Http" Version="2.1.1" />
|
|
|
- <PackageReference Include="Microsoft.Extensions.Http" Version="2.1.1" />
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
|
|
|
</ItemGroup>
|
|
|
+
|
|
|
+ <ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.0' ">
|
|
|
+ <PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.0.*" />
|
|
|
+ <PackageReference Include="Microsoft.Extensions.Http" Version="2.0.*" />
|
|
|
+ </ItemGroup>
|
|
|
+
|
|
|
+ <ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.1' ">
|
|
|
+ <PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.1.*" />
|
|
|
+ <PackageReference Include="Microsoft.Extensions.Http" Version="2.1.*" />
|
|
|
+ </ItemGroup>
|
|
|
|
|
|
+ <ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.2' ">
|
|
|
+ <PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.2.*" />
|
|
|
+ <PackageReference Include="Microsoft.Extensions.Http" Version="2.2.*" />
|
|
|
+ </ItemGroup>
|
|
|
+
|
|
|
<ItemGroup>
|
|
|
<ProjectReference Include="..\Essensoft.AspNetCore.Payment.Security\Essensoft.AspNetCore.Payment.Security.csproj" />
|
|
|
</ItemGroup>
|