From bb7258dcb4b21409541b21d909ee6126c4273b6f Mon Sep 17 00:00:00 2001 From: gdlcf88 Date: Fri, 12 Apr 2024 23:07:20 +0800 Subject: [PATCH] Upgrade to ABP 8.1.0 --- Directory.Build.props | 2 +- common.props | 2 +- .../Controllers/WeChatController.cs | 1 + .../Controllers/WeChatThirdPartyPlatformController.cs | 1 + .../Controller/WeChatPayController.cs | 1 + 5 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Directory.Build.props b/Directory.Build.props index 1d924f5..dd71390 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,7 +1,7 @@ - 8.0.0 + 8.1.0 17.8.0 diff --git a/common.props b/common.props index d0887ea..b964dc1 100644 --- a/common.props +++ b/common.props @@ -1,7 +1,7 @@ latest - 3.0.0-preview.9 + 3.0.0-preview.10 $(NoWarn);CS1591 true EasyAbp Team diff --git a/src/Official/EasyAbp.Abp.WeChat.Official.HttpApi/Controllers/WeChatController.cs b/src/Official/EasyAbp.Abp.WeChat.Official.HttpApi/Controllers/WeChatController.cs index e10b4a5..18e332f 100644 --- a/src/Official/EasyAbp.Abp.WeChat.Official.HttpApi/Controllers/WeChatController.cs +++ b/src/Official/EasyAbp.Abp.WeChat.Official.HttpApi/Controllers/WeChatController.cs @@ -3,6 +3,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; +using Asp.Versioning; using EasyAbp.Abp.WeChat.Common; using EasyAbp.Abp.WeChat.Common.RequestHandling.Dtos; using EasyAbp.Abp.WeChat.Official.RequestHandling; diff --git a/src/OpenPlatform/EasyAbp.Abp.WeChat.OpenPlatform.HttpApi/Controllers/WeChatThirdPartyPlatformController.cs b/src/OpenPlatform/EasyAbp.Abp.WeChat.OpenPlatform.HttpApi/Controllers/WeChatThirdPartyPlatformController.cs index c370327..d1ba5dd 100644 --- a/src/OpenPlatform/EasyAbp.Abp.WeChat.OpenPlatform.HttpApi/Controllers/WeChatThirdPartyPlatformController.cs +++ b/src/OpenPlatform/EasyAbp.Abp.WeChat.OpenPlatform.HttpApi/Controllers/WeChatThirdPartyPlatformController.cs @@ -3,6 +3,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; +using Asp.Versioning; using EasyAbp.Abp.WeChat.Common; using EasyAbp.Abp.WeChat.Common.RequestHandling.Dtos; using EasyAbp.Abp.WeChat.OpenPlatform.RequestHandling; diff --git a/src/Pay/EasyAbp.Abp.WeChat.Pay.HttpApi/Controller/WeChatPayController.cs b/src/Pay/EasyAbp.Abp.WeChat.Pay.HttpApi/Controller/WeChatPayController.cs index 7d232a0..838c44f 100644 --- a/src/Pay/EasyAbp.Abp.WeChat.Pay.HttpApi/Controller/WeChatPayController.cs +++ b/src/Pay/EasyAbp.Abp.WeChat.Pay.HttpApi/Controller/WeChatPayController.cs @@ -1,6 +1,7 @@ using System; using System.IO; using System.Threading.Tasks; +using Asp.Versioning; using EasyAbp.Abp.WeChat.Common; using EasyAbp.Abp.WeChat.Pay.RequestHandling; using EasyAbp.Abp.WeChat.Pay.RequestHandling.Dtos;