XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet

XFEExtension.NetCore.ServerInteractive

[DLL] Server interaction extension, including user identity verification and querying in conjunction with AutoConfig

公开
关注 0 Fork 0 Star 0
返回提交历史

XFEstudio/XFEExtension.NetCore.ServerInteractive

增强错误处理并升级版本号至1.1.18

在 ServerCoreReturnArgs 的 Error 方法中增加 IsStandardError 标记,提升错误标准化处理能力。项目版本号从 1.1.17 升级到 1.1.18。

3e6d8c0
XFE工作室室长 <mail@xfegzs.com>
提交于

代码差异

2 个文件 +5 -4
Modified XFEExtension.NetCore.ServerInteractive/Models/ServerModels/ServerCoreReturnArgs.cs +1 -0
@@ -128,6 +128,7 @@ public class ServerCoreReturnArgs : Exception
128 128 {
129 129 ReturnMessage = message;
130 130 Handled = handled;
131 IsStandardError = true;
131 132 StatusCode = code;
132 133 return this;
133 134 }
Modified XFEExtension.NetCore.ServerInteractive/XFEExtension.NetCore.ServerInteractive.csproj +4 -4
@@ -5,7 +5,7 @@
5 5 <ImplicitUsings>enable</ImplicitUsings>
6 6 <Nullable>enable</Nullable>
7 7 <GenerateDocumentationFile>True</GenerateDocumentationFile>
8 <Version>1.1.17</Version>
8 <Version>1.1.18</Version>
9 9 <Title>XFEExtension.NetCore.ServerInteractive</Title>
10 10 <RepositoryUrl>https://github.com/XFEstudio/XFEExtension.NetCore.ServerInteractive</RepositoryUrl>
11 11 <AnalysisLevel>latest</AnalysisLevel>
@@ -21,10 +21,10 @@
21 21 <PackageReleaseNotes>
22 22 ## 调整
23 23
24 新增IsStandardError属性及依赖包版本优化
24 增强错误处理并升级版本号至1.1.18
25 25
26 本次提交新增IsStandardError属性,完善异常处理逻辑,相关接口和类同步更新。
27 项目依赖包版本改为通配符,提升兼容性,版本号升级至1.1.17。
26 在 ServerCoreReturnArgs 的 Error 方法中增加 IsStandardError 标记,提升错误标准化处理能力。
27 项目版本号从 1.1.17 升级到 1.1.18。
28 28
29 29 ## 新增
30 30