From 7a2127b50e7414865bdafbc755a5d3c0bab9b539 Mon Sep 17 00:00:00 2001 From: GeWuYou <95328647+GeWuYou@users.noreply.github.com> Date: Wed, 15 Apr 2026 22:51:10 +0800 Subject: [PATCH] =?UTF-8?q?refactor(cqrs):=20=E6=9B=B4=E6=96=B0Cqrs?= =?UTF-8?q?=E5=91=BD=E5=90=8D=E7=A9=BA=E9=97=B4=E8=B7=AF=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将GFramework.Core.Cqrs.Command更改为GFramework.Cqrs.Command - 将GFramework.Core.Cqrs.Query更改为GFramework.Cqrs.Query - 将GFramework.Core.Cqrs.Request更改为GFramework.Cqrs.Request - 将GFramework.Core.Cqrs.Notification更改为GFramework.Cqrs.Notification --- .../Cqrs/CqrsPublicNamespaceCompatibilityTests.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/GFramework.Core.Tests/Cqrs/CqrsPublicNamespaceCompatibilityTests.cs b/GFramework.Core.Tests/Cqrs/CqrsPublicNamespaceCompatibilityTests.cs index 40506524..dd119413 100644 --- a/GFramework.Core.Tests/Cqrs/CqrsPublicNamespaceCompatibilityTests.cs +++ b/GFramework.Core.Tests/Cqrs/CqrsPublicNamespaceCompatibilityTests.cs @@ -24,10 +24,10 @@ public sealed class CqrsPublicNamespaceCompatibilityTests { Assert.Multiple(() => { - AssertLegacyType(typeof(CommandBase), "GFramework.Core.Cqrs.Command"); - AssertLegacyType(typeof(QueryBase), "GFramework.Core.Cqrs.Query"); - AssertLegacyType(typeof(RequestBase), "GFramework.Core.Cqrs.Request"); - AssertLegacyType(typeof(NotificationBase), "GFramework.Core.Cqrs.Notification"); + AssertLegacyType(typeof(CommandBase), "GFramework.Cqrs.Command"); + AssertLegacyType(typeof(QueryBase), "GFramework.Cqrs.Query"); + AssertLegacyType(typeof(RequestBase), "GFramework.Cqrs.Request"); + AssertLegacyType(typeof(NotificationBase), "GFramework.Cqrs.Notification"); }); }