From 00a1038d0a0801199cd0e1542c4f35adcdb820c5 Mon Sep 17 00:00:00 2001 From: GeWuYou <95328647+GeWuYou@users.noreply.github.com> Date: Thu, 16 Apr 2026 08:52:39 +0800 Subject: [PATCH] =?UTF-8?q?refactor(GFramework.Cqrs):=20=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E5=85=A8=E5=B1=80using=E5=BC=95=E7=94=A8System.Reflection?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在GlobalUsings.cs文件中新增System.Reflection的全局引用 - 便于后续代码中直接使用Reflection相关功能 - 减少重复的using声明语句 --- GFramework.Cqrs/GlobalUsings.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/GFramework.Cqrs/GlobalUsings.cs b/GFramework.Cqrs/GlobalUsings.cs index 97f2d13a..b60938a5 100644 --- a/GFramework.Cqrs/GlobalUsings.cs +++ b/GFramework.Cqrs/GlobalUsings.cs @@ -3,5 +3,6 @@ global using System.Collections.Generic; global using System.Linq; global using System.Threading; global using System.Threading.Tasks; +global using System.Reflection; global using Microsoft.Extensions.DependencyInjection; global using System.Diagnostics;