From da3941d6afd468e5c836b360854dd5cb4ec46df8 Mon Sep 17 00:00:00 2001 From: GwWuYou <95328647+GeWuYou@users.noreply.github.com> Date: Tue, 9 Dec 2025 18:28:55 +0800 Subject: [PATCH] =?UTF-8?q?refactor(framework):=20=E9=87=8D=E6=9E=84?= =?UTF-8?q?=E6=A1=86=E6=9E=B6=E5=91=BD=E5=90=8D=E7=A9=BA=E9=97=B4=E5=92=8C?= =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E5=90=8D=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将所有 GWFramework 命名空间重命名为 GFramework - 更新解决方案文件中的项目名称和路径引用 - 修改项目文件中的 PackageId、Product 和 URL 配置 - 统一框架内各模块的命名空间前缀为 GFramework - 调整根命名空间配置以匹配新的项目结构 --- GWFramework.csproj => GFramework .csproj | 11 ++++++----- GWFramework.sln => GFramework.sln | 2 +- framework/architecture/Architecture.cs | 17 ++++++++--------- framework/architecture/IArchitecture.cs | 14 +++++++------- framework/command/AbstractCommand.cs | 7 +++---- framework/command/ICanSendCommand.cs | 4 ++-- framework/command/ICommand.cs | 14 +++++++------- framework/controller/IController.cs | 14 +++++++------- framework/events/DefaultUnRegister.cs | 2 +- framework/events/EasyEvent.cs | 2 +- framework/events/EasyEventGeneric.cs | 2 +- framework/events/EasyEvents.cs | 2 +- framework/events/ICanRegisterEvent.cs | 4 ++-- framework/events/ICanSendEvent.cs | 4 ++-- framework/events/IEasyEvent.cs | 2 +- framework/events/IUnRegister.cs | 2 +- framework/events/IUnRegisterList.cs | 2 +- framework/events/OrEvent.cs | 4 ++-- framework/events/TypeEventSystem.cs | 2 +- framework/events/UnRegisterList.cs | 2 +- framework/extensions/CanGetExtensions.cs | 8 ++++---- .../extensions/CanRegisterEventExtensions.cs | 4 ++-- framework/extensions/CanSendExtensions.cs | 8 ++++---- framework/extensions/OrEventExtensions.cs | 4 ++-- framework/extensions/UnRegisterListExtension.cs | 4 ++-- framework/ioc/IocContainer.cs | 5 +---- framework/model/AbstractModel.cs | 5 ++--- framework/model/ICanGetModel.cs | 4 ++-- framework/model/IModel.cs | 8 ++++---- framework/property/BindableProperty.cs | 6 ++---- .../property/BindablePropertyUnRegister.cs | 5 ++--- framework/property/IBindableProperty.cs | 2 +- framework/property/IReadonlyBindableProperty.cs | 5 ++--- framework/query/AbstractQuery.cs | 4 ++-- framework/query/ICanSendQuery.cs | 4 ++-- framework/query/IQuery.cs | 8 ++++---- framework/rule/IBelongToArchitecture.cs | 4 ++-- framework/rule/ICanSetArchitecture.cs | 4 ++-- framework/system/AbstractSystem.cs | 6 +++--- framework/system/ICanGetSystem.cs | 4 ++-- framework/system/ISystem.cs | 10 +++++----- framework/utility/ICanGetUtility.cs | 4 ++-- framework/utility/IUtility.cs | 2 +- 43 files changed, 111 insertions(+), 120 deletions(-) rename GWFramework.csproj => GFramework .csproj (68%) rename GWFramework.sln => GFramework.sln (83%) diff --git a/GWFramework.csproj b/GFramework .csproj similarity index 68% rename from GWFramework.csproj rename to GFramework .csproj index 625f496..e0d1f01 100644 --- a/GWFramework.csproj +++ b/GFramework .csproj @@ -4,21 +4,22 @@ net9.0 enable enable - GWFramework + GeWuYou.GFramework gewuyou - GWFramework + GeWuYou.GFramework A game development framework inspired by QFramework Copyright © 2025 - https://github.com/GeWuYou/GWFramework - https://github.com/GeWuYou/GWFramework + https://github.com/GeWuYou/GFramework + https://github.com/GeWuYou/GFramework MIT - game;framework;godot + game;framework false git true true true snupkg + GFramework \ No newline at end of file diff --git a/GWFramework.sln b/GFramework.sln similarity index 83% rename from GWFramework.sln rename to GFramework.sln index 1723f00..f1df0b6 100644 --- a/GWFramework.sln +++ b/GFramework.sln @@ -1,6 +1,6 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GWFramework", "GWFramework.csproj", "{9BEDDD6C-DF8B-4E71-9C75-F44EC669ABBD}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GFramework ", "GFramework .csproj", "{9BEDDD6C-DF8B-4E71-9C75-F44EC669ABBD}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/framework/architecture/Architecture.cs b/framework/architecture/Architecture.cs index 4d4ab9f..77b8aac 100644 --- a/framework/architecture/Architecture.cs +++ b/framework/architecture/Architecture.cs @@ -1,13 +1,12 @@ -using GWFramework.framework.command; -using GWFramework.framework.events; -using GWFramework.framework.ioc; -using GWFramework.framework.model; -using GWFramework.framework.query; -using GWFramework.framework.system; -using GWFramework.framework.utility; +using GFramework.framework.command; +using GFramework.framework.events; +using GFramework.framework.ioc; +using GFramework.framework.model; +using GFramework.framework.query; +using GFramework.framework.system; +using GFramework.framework.utility; - -namespace GWFramework.framework.architecture; +namespace GFramework.framework.architecture; /// /// 架构基类,提供系统、模型、工具等组件的注册与管理功能。 diff --git a/framework/architecture/IArchitecture.cs b/framework/architecture/IArchitecture.cs index 1cbee0d..0b2ee8c 100644 --- a/framework/architecture/IArchitecture.cs +++ b/framework/architecture/IArchitecture.cs @@ -1,11 +1,11 @@ -using GWFramework.framework.command; -using GWFramework.framework.events; -using GWFramework.framework.model; -using GWFramework.framework.query; -using GWFramework.framework.system; -using GWFramework.framework.utility; +using GFramework.framework.command; +using GFramework.framework.events; +using GFramework.framework.model; +using GFramework.framework.query; +using GFramework.framework.system; +using GFramework.framework.utility; -namespace GWFramework.framework.architecture; +namespace GFramework.framework.architecture; /// /// 架构接口,定义了应用程序架构的核心功能,包括系统、模型、工具的注册和获取, diff --git a/framework/command/AbstractCommand.cs b/framework/command/AbstractCommand.cs index c2b900b..ef01313 100644 --- a/framework/command/AbstractCommand.cs +++ b/framework/command/AbstractCommand.cs @@ -1,8 +1,7 @@ -using GWFramework.framework.architecture; -using GWFramework.framework.rule; +using GFramework.framework.architecture; +using GFramework.framework.rule; - -namespace GWFramework.framework.command; +namespace GFramework.framework.command; /// /// 抽象命令类,实现 ICommand 接口,为具体命令提供基础架构支持 diff --git a/framework/command/ICanSendCommand.cs b/framework/command/ICanSendCommand.cs index ff225fd..8df3169 100644 --- a/framework/command/ICanSendCommand.cs +++ b/framework/command/ICanSendCommand.cs @@ -1,6 +1,6 @@ -using GWFramework.framework.rule; +using GFramework.framework.rule; -namespace GWFramework.framework.command; +namespace GFramework.framework.command; /// /// 定义一个可以发送命令的接口,继承自IBelongToArchitecture接口。 diff --git a/framework/command/ICommand.cs b/framework/command/ICommand.cs index a7b1713..e5ae761 100644 --- a/framework/command/ICommand.cs +++ b/framework/command/ICommand.cs @@ -1,11 +1,11 @@ -using GWFramework.framework.events; -using GWFramework.framework.model; -using GWFramework.framework.query; -using GWFramework.framework.rule; -using GWFramework.framework.system; -using GWFramework.framework.utility; +using GFramework.framework.events; +using GFramework.framework.model; +using GFramework.framework.query; +using GFramework.framework.rule; +using GFramework.framework.system; +using GFramework.framework.utility; -namespace GWFramework.framework.command; +namespace GFramework.framework.command; /// /// 命令接口,定义了无返回值命令的基本契约 diff --git a/framework/controller/IController.cs b/framework/controller/IController.cs index 92dc097..8dfebd4 100644 --- a/framework/controller/IController.cs +++ b/framework/controller/IController.cs @@ -1,11 +1,11 @@ -using GWFramework.framework.command; -using GWFramework.framework.events; -using GWFramework.framework.model; -using GWFramework.framework.query; -using GWFramework.framework.system; -using GWFramework.framework.utility; +using GFramework.framework.command; +using GFramework.framework.events; +using GFramework.framework.model; +using GFramework.framework.query; +using GFramework.framework.system; +using GFramework.framework.utility; -namespace GWFramework.framework.controller; +namespace GFramework.framework.controller; /// /// 控制器接口,定义了控制器需要实现的所有功能契约 diff --git a/framework/events/DefaultUnRegister.cs b/framework/events/DefaultUnRegister.cs index 9611272..f6b4f58 100644 --- a/framework/events/DefaultUnRegister.cs +++ b/framework/events/DefaultUnRegister.cs @@ -1,4 +1,4 @@ -namespace GWFramework.framework.events; +namespace GFramework.framework.events; /// diff --git a/framework/events/EasyEvent.cs b/framework/events/EasyEvent.cs index 9edc8df..cf53642 100644 --- a/framework/events/EasyEvent.cs +++ b/framework/events/EasyEvent.cs @@ -1,4 +1,4 @@ -namespace GWFramework.framework.events; +namespace GFramework.framework.events; /// /// 简单事件类,用于注册、注销和触发无参事件回调 diff --git a/framework/events/EasyEventGeneric.cs b/framework/events/EasyEventGeneric.cs index cac77c6..d75ab97 100644 --- a/framework/events/EasyEventGeneric.cs +++ b/framework/events/EasyEventGeneric.cs @@ -1,4 +1,4 @@ -namespace GWFramework.framework.events; +namespace GFramework.framework.events; /// /// 泛型事件类,支持一个泛型参数 T 的事件注册、注销与触发。 diff --git a/framework/events/EasyEvents.cs b/framework/events/EasyEvents.cs index 8360db8..6fd74a8 100644 --- a/framework/events/EasyEvents.cs +++ b/framework/events/EasyEvents.cs @@ -1,4 +1,4 @@ -namespace GWFramework.framework.events; +namespace GFramework.framework.events; /// /// EasyEvents事件管理器类,用于全局事件的注册、获取和管理 diff --git a/framework/events/ICanRegisterEvent.cs b/framework/events/ICanRegisterEvent.cs index 37cb385..aa40ee5 100644 --- a/framework/events/ICanRegisterEvent.cs +++ b/framework/events/ICanRegisterEvent.cs @@ -1,6 +1,6 @@ -using GWFramework.framework.rule; +using GFramework.framework.rule; -namespace GWFramework.framework.events; +namespace GFramework.framework.events; /// /// 定义一个可以注册事件的接口,继承自IBelongToArchitecture接口。 diff --git a/framework/events/ICanSendEvent.cs b/framework/events/ICanSendEvent.cs index a142230..d2744e8 100644 --- a/framework/events/ICanSendEvent.cs +++ b/framework/events/ICanSendEvent.cs @@ -1,6 +1,6 @@ -using GWFramework.framework.rule; +using GFramework.framework.rule; -namespace GWFramework.framework.events; +namespace GFramework.framework.events; /// /// 定义一个可以发送事件的接口,继承自IBelongToArchitecture接口。 diff --git a/framework/events/IEasyEvent.cs b/framework/events/IEasyEvent.cs index bc27b68..34e7a78 100644 --- a/framework/events/IEasyEvent.cs +++ b/framework/events/IEasyEvent.cs @@ -1,4 +1,4 @@ -namespace GWFramework.framework.events; +namespace GFramework.framework.events; /// /// 事件接口,定义了事件注册的基本功能 diff --git a/framework/events/IUnRegister.cs b/framework/events/IUnRegister.cs index 39881bb..13575b9 100644 --- a/framework/events/IUnRegister.cs +++ b/framework/events/IUnRegister.cs @@ -1,4 +1,4 @@ -namespace GWFramework.framework.events; +namespace GFramework.framework.events; /// /// 提供注销功能的接口 diff --git a/framework/events/IUnRegisterList.cs b/framework/events/IUnRegisterList.cs index a1ad422..3f15959 100644 --- a/framework/events/IUnRegisterList.cs +++ b/framework/events/IUnRegisterList.cs @@ -1,4 +1,4 @@ -namespace GWFramework.framework.events; +namespace GFramework.framework.events; /// /// 提供统一注销功能的接口,用于管理需要注销的对象列表 diff --git a/framework/events/OrEvent.cs b/framework/events/OrEvent.cs index 2fb0f24..07a587f 100644 --- a/framework/events/OrEvent.cs +++ b/framework/events/OrEvent.cs @@ -1,6 +1,6 @@ -using GWFramework.framework.extensions; +using GFramework.framework.extensions; -namespace GWFramework.framework.events; +namespace GFramework.framework.events; /// /// OrEvent类用于实现事件的或逻辑组合,当任意一个注册的事件触发时,都会触发OrEvent本身 diff --git a/framework/events/TypeEventSystem.cs b/framework/events/TypeEventSystem.cs index 580e640..4be8834 100644 --- a/framework/events/TypeEventSystem.cs +++ b/framework/events/TypeEventSystem.cs @@ -1,4 +1,4 @@ -namespace GWFramework.framework.events; +namespace GFramework.framework.events; /// /// TypeEventSystem diff --git a/framework/events/UnRegisterList.cs b/framework/events/UnRegisterList.cs index 4fd4c96..855db26 100644 --- a/framework/events/UnRegisterList.cs +++ b/framework/events/UnRegisterList.cs @@ -1,4 +1,4 @@ -namespace GWFramework.framework.events; +namespace GFramework.framework.events; /// diff --git a/framework/extensions/CanGetExtensions.cs b/framework/extensions/CanGetExtensions.cs index 914500e..03bace6 100644 --- a/framework/extensions/CanGetExtensions.cs +++ b/framework/extensions/CanGetExtensions.cs @@ -1,8 +1,8 @@ -using GWFramework.framework.model; -using GWFramework.framework.system; -using GWFramework.framework.utility; +using GFramework.framework.model; +using GFramework.framework.system; +using GFramework.framework.utility; -namespace GWFramework.framework.extensions; +namespace GFramework.framework.extensions; /// /// 提供获取模型对象扩展方法的静态类 diff --git a/framework/extensions/CanRegisterEventExtensions.cs b/framework/extensions/CanRegisterEventExtensions.cs index 3f990fa..3e73a79 100644 --- a/framework/extensions/CanRegisterEventExtensions.cs +++ b/framework/extensions/CanRegisterEventExtensions.cs @@ -1,6 +1,6 @@ -using GWFramework.framework.events; +using GFramework.framework.events; -namespace GWFramework.framework.extensions; +namespace GFramework.framework.extensions; /// /// 事件注册扩展类,提供ICanRegisterEvent接口的扩展方法用于注册和注销事件 diff --git a/framework/extensions/CanSendExtensions.cs b/framework/extensions/CanSendExtensions.cs index ff4fccb..a5ff398 100644 --- a/framework/extensions/CanSendExtensions.cs +++ b/framework/extensions/CanSendExtensions.cs @@ -1,8 +1,8 @@ -using GWFramework.framework.command; -using GWFramework.framework.events; -using GWFramework.framework.query; +using GFramework.framework.command; +using GFramework.framework.events; +using GFramework.framework.query; -namespace GWFramework.framework.extensions; +namespace GFramework.framework.extensions; /// /// 提供发送命令功能的扩展类 diff --git a/framework/extensions/OrEventExtensions.cs b/framework/extensions/OrEventExtensions.cs index 4835f09..72d3c9c 100644 --- a/framework/extensions/OrEventExtensions.cs +++ b/framework/extensions/OrEventExtensions.cs @@ -1,6 +1,6 @@ -using GWFramework.framework.events; +using GFramework.framework.events; -namespace GWFramework.framework.extensions; +namespace GFramework.framework.extensions; /// /// 提供Or事件扩展方法的静态类 diff --git a/framework/extensions/UnRegisterListExtension.cs b/framework/extensions/UnRegisterListExtension.cs index f6e0804..9eb3dd9 100644 --- a/framework/extensions/UnRegisterListExtension.cs +++ b/framework/extensions/UnRegisterListExtension.cs @@ -1,6 +1,6 @@ -using GWFramework.framework.events; +using GFramework.framework.events; -namespace GWFramework.framework.extensions; +namespace GFramework.framework.extensions; /// diff --git a/framework/ioc/IocContainer.cs b/framework/ioc/IocContainer.cs index f5bbbfd..293e558 100644 --- a/framework/ioc/IocContainer.cs +++ b/framework/ioc/IocContainer.cs @@ -1,7 +1,4 @@ -using System; -using System.Collections.Generic; - -namespace GWFramework.framework.ioc; +namespace GFramework.framework.ioc; /// /// IOC容器类,用于管理对象的注册和获取 diff --git a/framework/model/AbstractModel.cs b/framework/model/AbstractModel.cs index f2a4ac9..84f1acb 100644 --- a/framework/model/AbstractModel.cs +++ b/framework/model/AbstractModel.cs @@ -1,7 +1,6 @@ -using GWFramework.framework.model; -using GWFramework.framework.architecture; +using GFramework.framework.architecture; -namespace GWFramework.framework.model; +namespace GFramework.framework.model; /// /// 抽象模型基类,实现IModel接口,提供模型的基本架构支持 diff --git a/framework/model/ICanGetModel.cs b/framework/model/ICanGetModel.cs index a62ac4c..a549b77 100644 --- a/framework/model/ICanGetModel.cs +++ b/framework/model/ICanGetModel.cs @@ -1,6 +1,6 @@ -using GWFramework.framework.rule; +using GFramework.framework.rule; -namespace GWFramework.framework.model; +namespace GFramework.framework.model; /// /// 定义一个接口,表示可以获取模型的架构组件。 diff --git a/framework/model/IModel.cs b/framework/model/IModel.cs index a9a9bb8..a7a6478 100644 --- a/framework/model/IModel.cs +++ b/framework/model/IModel.cs @@ -1,8 +1,8 @@ -using GWFramework.framework.events; -using GWFramework.framework.rule; -using GWFramework.framework.utility; +using GFramework.framework.events; +using GFramework.framework.rule; +using GFramework.framework.utility; -namespace GWFramework.framework.model; +namespace GFramework.framework.model; /// /// 模型接口,定义了模型的基本行为和功能 diff --git a/framework/property/BindableProperty.cs b/framework/property/BindableProperty.cs index 51a65d1..6880b83 100644 --- a/framework/property/BindableProperty.cs +++ b/framework/property/BindableProperty.cs @@ -1,8 +1,6 @@ -using System; -using System.Collections.Generic; -using GWFramework.framework.events; +using GFramework.framework.events; -namespace GWFramework.framework.property; +namespace GFramework.framework.property; /// diff --git a/framework/property/BindablePropertyUnRegister.cs b/framework/property/BindablePropertyUnRegister.cs index 6a7cfa0..51fb903 100644 --- a/framework/property/BindablePropertyUnRegister.cs +++ b/framework/property/BindablePropertyUnRegister.cs @@ -1,7 +1,6 @@ -using System; -using GWFramework.framework.events; +using GFramework.framework.events; -namespace GWFramework.framework.property; +namespace GFramework.framework.property; /// diff --git a/framework/property/IBindableProperty.cs b/framework/property/IBindableProperty.cs index ade4df1..c677184 100644 --- a/framework/property/IBindableProperty.cs +++ b/framework/property/IBindableProperty.cs @@ -1,4 +1,4 @@ -namespace GWFramework.framework.property; +namespace GFramework.framework.property; /// /// 可绑定属性接口,继承自只读可绑定属性接口,提供可读写的属性绑定功能 diff --git a/framework/property/IReadonlyBindableProperty.cs b/framework/property/IReadonlyBindableProperty.cs index c587b9b..1f2a45d 100644 --- a/framework/property/IReadonlyBindableProperty.cs +++ b/framework/property/IReadonlyBindableProperty.cs @@ -1,7 +1,6 @@ -using System; -using GWFramework.framework.events; +using GFramework.framework.events; -namespace GWFramework.framework.property; +namespace GFramework.framework.property; /// diff --git a/framework/query/AbstractQuery.cs b/framework/query/AbstractQuery.cs index 4e8c8db..ab73f7b 100644 --- a/framework/query/AbstractQuery.cs +++ b/framework/query/AbstractQuery.cs @@ -1,6 +1,6 @@ -using GWFramework.framework.architecture; +using GFramework.framework.architecture; -namespace GWFramework.framework.query; +namespace GFramework.framework.query; /// /// 抽象查询类,提供查询操作的基础实现 diff --git a/framework/query/ICanSendQuery.cs b/framework/query/ICanSendQuery.cs index 83028a9..1664b9e 100644 --- a/framework/query/ICanSendQuery.cs +++ b/framework/query/ICanSendQuery.cs @@ -1,6 +1,6 @@ -using GWFramework.framework.rule; +using GFramework.framework.rule; -namespace GWFramework.framework.query; +namespace GFramework.framework.query; /// /// 定义一个可以发送查询的接口契约 diff --git a/framework/query/IQuery.cs b/framework/query/IQuery.cs index ef62695..28f8d74 100644 --- a/framework/query/IQuery.cs +++ b/framework/query/IQuery.cs @@ -1,8 +1,8 @@ -using GWFramework.framework.model; -using GWFramework.framework.rule; -using GWFramework.framework.system; +using GFramework.framework.model; +using GFramework.framework.rule; +using GFramework.framework.system; -namespace GWFramework.framework.query; +namespace GFramework.framework.query; /// diff --git a/framework/rule/IBelongToArchitecture.cs b/framework/rule/IBelongToArchitecture.cs index efd50d0..274ef55 100644 --- a/framework/rule/IBelongToArchitecture.cs +++ b/framework/rule/IBelongToArchitecture.cs @@ -1,6 +1,6 @@ -using GWFramework.framework.architecture; +using GFramework.framework.architecture; -namespace GWFramework.framework.rule; +namespace GFramework.framework.rule; /// diff --git a/framework/rule/ICanSetArchitecture.cs b/framework/rule/ICanSetArchitecture.cs index 0c59c21..dcc2250 100644 --- a/framework/rule/ICanSetArchitecture.cs +++ b/framework/rule/ICanSetArchitecture.cs @@ -1,6 +1,6 @@ -using GWFramework.framework.architecture; +using GFramework.framework.architecture; -namespace GWFramework.framework.rule; +namespace GFramework.framework.rule; /// /// 定义一个接口,用于设置架构实例 diff --git a/framework/system/AbstractSystem.cs b/framework/system/AbstractSystem.cs index 99be60c..8ad9245 100644 --- a/framework/system/AbstractSystem.cs +++ b/framework/system/AbstractSystem.cs @@ -1,7 +1,7 @@ -using GWFramework.framework.architecture; -using GWFramework.framework.rule; +using GFramework.framework.architecture; +using GFramework.framework.rule; -namespace GWFramework.framework.system; +namespace GFramework.framework.system; /// /// 抽象系统基类,实现系统接口的基本功能 diff --git a/framework/system/ICanGetSystem.cs b/framework/system/ICanGetSystem.cs index d071434..f9557d4 100644 --- a/framework/system/ICanGetSystem.cs +++ b/framework/system/ICanGetSystem.cs @@ -1,6 +1,6 @@ -using GWFramework.framework.rule; +using GFramework.framework.rule; -namespace GWFramework.framework.system; +namespace GFramework.framework.system; /// /// 定义一个接口,表示可以获取系统的对象。 diff --git a/framework/system/ISystem.cs b/framework/system/ISystem.cs index 36a79bb..7dcbabc 100644 --- a/framework/system/ISystem.cs +++ b/framework/system/ISystem.cs @@ -1,9 +1,9 @@ -using GWFramework.framework.events; -using GWFramework.framework.model; -using GWFramework.framework.rule; -using GWFramework.framework.utility; +using GFramework.framework.events; +using GFramework.framework.model; +using GFramework.framework.rule; +using GFramework.framework.utility; -namespace GWFramework.framework.system; +namespace GFramework.framework.system; /// /// 系统接口,定义了系统的基本行为和功能 diff --git a/framework/utility/ICanGetUtility.cs b/framework/utility/ICanGetUtility.cs index 57cd06e..2a54708 100644 --- a/framework/utility/ICanGetUtility.cs +++ b/framework/utility/ICanGetUtility.cs @@ -1,6 +1,6 @@ -using GWFramework.framework.rule; +using GFramework.framework.rule; -namespace GWFramework.framework.utility; +namespace GFramework.framework.utility; /// /// 定义一个接口,表示可以获取工具类的对象 diff --git a/framework/utility/IUtility.cs b/framework/utility/IUtility.cs index 7de802d..a644a31 100644 --- a/framework/utility/IUtility.cs +++ b/framework/utility/IUtility.cs @@ -1,4 +1,4 @@ -namespace GWFramework.framework.utility; +namespace GFramework.framework.utility; /// /// IUtility接口定义了通用工具类的基本契约