refactor(GFramework.Cqrs): 添加全局using引用System.Reflection

- 在GlobalUsings.cs文件中新增System.Reflection的全局引用
- 便于后续代码中直接使用Reflection相关功能
- 减少重复的using声明语句
This commit is contained in:
GeWuYou 2026-04-16 08:52:39 +08:00
parent bc9336428e
commit 00a1038d0a

View File

@ -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;