diff --git a/EintooAR/Assets/GameScripts/HotFix/GameLogic/AR Brochure/Utility/New/Image/ImageUtility.cs b/EintooAR/Assets/GameScripts/HotFix/GameLogic/AR Brochure/Utility/New/Image/ImageUtility.cs index a4f378cc..a65fefcd 100644 --- a/EintooAR/Assets/GameScripts/HotFix/GameLogic/AR Brochure/Utility/New/Image/ImageUtility.cs +++ b/EintooAR/Assets/GameScripts/HotFix/GameLogic/AR Brochure/Utility/New/Image/ImageUtility.cs @@ -35,7 +35,7 @@ namespace GameLogic url = url.Substring(0, queryIndex); // 获取URL中的文件名部分 - string fileName = Path.GetFileName(url); + string fileName = Path.GetFileNameWithoutExtension(url); return fileName; } catch (Exception ex) diff --git a/EintooAR/Assets/GameScripts/HotFix/GameLogic/RPG/GameProtocol/Server/Generate/NetworkProtocol/OuterMessage.cs b/EintooAR/Assets/GameScripts/HotFix/GameLogic/RPG/GameProtocol/Server/Generate/NetworkProtocol/OuterMessage.cs index f970cb53..97a9543d 100644 --- a/EintooAR/Assets/GameScripts/HotFix/GameLogic/RPG/GameProtocol/Server/Generate/NetworkProtocol/OuterMessage.cs +++ b/EintooAR/Assets/GameScripts/HotFix/GameLogic/RPG/GameProtocol/Server/Generate/NetworkProtocol/OuterMessage.cs @@ -288,6 +288,49 @@ namespace Fantasy public uint ErrorCode { get; set; } } [ProtoContract] + public partial class C2Chat_BoardMessageRequest : AMessage, ICustomRouteRequest, IProto + { + public static C2Chat_BoardMessageRequest Create(Scene scene) + { + return scene.MessagePoolComponent.Rent(); + } + public override void Dispose() + { + Message = default; +#if FANTASY_NET || FANTASY_UNITY + GetScene().MessagePoolComponent.Return(this); +#endif + } + [ProtoIgnore] + public Chat2C_BoardMessageResponse ResponseType { get; set; } + public uint OpCode() { return OuterOpcode.C2Chat_BoardMessageRequest; } + [ProtoIgnore] + public int RouteType => Fantasy.RouteType.ChatRoute; + [ProtoMember(1)] + public string Message { get; set; } + } + [ProtoContract] + public partial class Chat2C_BoardMessageResponse : AMessage, ICustomRouteResponse, IProto + { + public static Chat2C_BoardMessageResponse Create(Scene scene) + { + return scene.MessagePoolComponent.Rent(); + } + public override void Dispose() + { + ErrorCode = default; + Message = default; +#if FANTASY_NET || FANTASY_UNITY + GetScene().MessagePoolComponent.Return(this); +#endif + } + public uint OpCode() { return OuterOpcode.Chat2C_BoardMessageResponse; } + [ProtoMember(1)] + public string Message { get; set; } + [ProtoMember(2)] + public uint ErrorCode { get; set; } + } + [ProtoContract] public partial class C2Chat_TestRequest : AMessage, ICustomRouteRequest, IProto { public static C2Chat_TestRequest Create(Scene scene) diff --git a/EintooAR/Assets/GameScripts/HotFix/GameLogic/RPG/GameProtocol/Server/Generate/NetworkProtocol/OuterOpcode.cs b/EintooAR/Assets/GameScripts/HotFix/GameLogic/RPG/GameProtocol/Server/Generate/NetworkProtocol/OuterOpcode.cs index 999b5336..5669740c 100644 --- a/EintooAR/Assets/GameScripts/HotFix/GameLogic/RPG/GameProtocol/Server/Generate/NetworkProtocol/OuterOpcode.cs +++ b/EintooAR/Assets/GameScripts/HotFix/GameLogic/RPG/GameProtocol/Server/Generate/NetworkProtocol/OuterOpcode.cs @@ -14,8 +14,10 @@ namespace Fantasy public const uint G2C_OpenGameNameInputWindowsMessage = 134227730; public const uint C2G_UpdateAndSaveGameNameRequest = 268445461; public const uint G2C_UpdateAndSaveGameNameResponse = 402663189; - public const uint C2Chat_TestRequest = 2281711377; - public const uint Chat2C_TestResponse = 2415929105; + public const uint C2Chat_BoardMessageRequest = 2281711377; + public const uint Chat2C_BoardMessageResponse = 2415929105; + public const uint C2Chat_TestRequest = 2281711378; + public const uint Chat2C_TestResponse = 2415929106; public const uint C2G_TestMessage = 134227731; public const uint C2G_TestRequest = 268445462; public const uint G2C_TestResponse = 402663190; @@ -29,8 +31,8 @@ namespace Fantasy public const uint C2G_CreateChatRouteRequest = 268445464; public const uint G2C_CreateChatRouteResponse = 402663192; public const uint C2Chat_TestMessage = 2147493649; - public const uint C2Chat_TestMessageRequest = 2281711378; - public const uint Chat2C_TestMessageResponse = 2415929106; + public const uint C2Chat_TestMessageRequest = 2281711379; + public const uint Chat2C_TestMessageResponse = 2415929107; public const uint C2M_MoveToMapRequest = 1476405010; public const uint M2C_MoveToMapResponse = 1610622738; public const uint C2G_SendAddressableToMap = 134227734; diff --git a/GameServer/Config/NetworkProtocol/Inner/InnerMessage.proto b/GameServer/Config/NetworkProtocol/Inner/InnerMessage.proto index c02a092f..da9a5f11 100644 --- a/GameServer/Config/NetworkProtocol/Inner/InnerMessage.proto +++ b/GameServer/Config/NetworkProtocol/Inner/InnerMessage.proto @@ -24,6 +24,10 @@ message Chat2G_OfflineResponse // IRouteResponse } +message Chat2G_BoardMessage // IRouteMessage +{ + string Message = 1; +} diff --git a/GameServer/Config/NetworkProtocol/Outer/OuterMessage.proto b/GameServer/Config/NetworkProtocol/Outer/OuterMessage.proto index 184e3176..6db6532b 100644 --- a/GameServer/Config/NetworkProtocol/Outer/OuterMessage.proto +++ b/GameServer/Config/NetworkProtocol/Outer/OuterMessage.proto @@ -87,6 +87,19 @@ message G2C_UpdateAndSaveGameNameResponse //IResponse } //chat + +message C2Chat_BoardMessageRequest //ICustomRouteRequest,Chat2C_BoardMessageResponse,ChatRoute +{ + string Message = 1; +} +message Chat2C_BoardMessageResponse //ICustomRouteResponse +{ + string Message = 2; +} + + + + message C2Chat_TestRequest // ICustomRouteRequest,Chat2C_TestResponse,ChatRoute { @@ -104,8 +117,6 @@ message Chat2C_TestResponse // ICustomRouteResponse - - message C2G_TestMessage // IMessage { string Tag = 1; diff --git a/GameServer/Server/APlugins/obj/Debug/net9.0/APlugins.AssemblyInfo.cs b/GameServer/Server/APlugins/obj/Debug/net9.0/APlugins.AssemblyInfo.cs index 31594b75..8cfbce26 100644 --- a/GameServer/Server/APlugins/obj/Debug/net9.0/APlugins.AssemblyInfo.cs +++ b/GameServer/Server/APlugins/obj/Debug/net9.0/APlugins.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("APlugins")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+f380af99fa15e1e6045b8a02edffb583f97f5687")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+44d9249c1b3de281ff1e2af3b67b2562b4043873")] [assembly: System.Reflection.AssemblyProductAttribute("APlugins")] [assembly: System.Reflection.AssemblyTitleAttribute("APlugins")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/GameServer/Server/APlugins/obj/Debug/net9.0/APlugins.AssemblyInfoInputs.cache b/GameServer/Server/APlugins/obj/Debug/net9.0/APlugins.AssemblyInfoInputs.cache index b12aaa11..ef72ae11 100644 --- a/GameServer/Server/APlugins/obj/Debug/net9.0/APlugins.AssemblyInfoInputs.cache +++ b/GameServer/Server/APlugins/obj/Debug/net9.0/APlugins.AssemblyInfoInputs.cache @@ -1 +1 @@ -663dff072fc30ff85d5379c5036bccd2b2b51c8d3c02d4ba306b5a8634571881 +c19c21424af3bd461148be8c06a7339355b918e00fe472e5a6c66ccd6d8e6266 diff --git a/GameServer/Server/APlugins/obj/rider.project.model.nuget.info b/GameServer/Server/APlugins/obj/rider.project.model.nuget.info index 4093e9de..8e22ca0d 100644 --- a/GameServer/Server/APlugins/obj/rider.project.model.nuget.info +++ b/GameServer/Server/APlugins/obj/rider.project.model.nuget.info @@ -1 +1 @@ -17435554619246633 \ No newline at end of file +17436510677070484 \ No newline at end of file diff --git a/GameServer/Server/APlugins/obj/rider.project.restore.info b/GameServer/Server/APlugins/obj/rider.project.restore.info index fa8f98c9..c2c970d1 100644 --- a/GameServer/Server/APlugins/obj/rider.project.restore.info +++ b/GameServer/Server/APlugins/obj/rider.project.restore.info @@ -1 +1 @@ -17435661846531578 \ No newline at end of file +17441036760466245 \ No newline at end of file diff --git a/GameServer/Server/Entity/Generate/NetworkProtocol/InnerMessage.cs b/GameServer/Server/Entity/Generate/NetworkProtocol/InnerMessage.cs index 4983cd9c..5214065c 100644 --- a/GameServer/Server/Entity/Generate/NetworkProtocol/InnerMessage.cs +++ b/GameServer/Server/Entity/Generate/NetworkProtocol/InnerMessage.cs @@ -100,6 +100,24 @@ namespace Fantasy public uint ErrorCode { get; set; } } [ProtoContract] + public partial class Chat2G_BoardMessage : AMessage, IRouteMessage, IProto + { + public static Chat2G_BoardMessage Create(Scene scene) + { + return scene.MessagePoolComponent.Rent(); + } + public override void Dispose() + { + Message = default; +#if FANTASY_NET || FANTASY_UNITY + GetScene().MessagePoolComponent.Return(this); +#endif + } + public uint OpCode() { return InnerOpcode.Chat2G_BoardMessage; } + [ProtoMember(1)] + public string Message { get; set; } + } + [ProtoContract] public partial class G2A_TestMessage : AMessage, IRouteMessage, IProto { public static G2A_TestMessage Create(Scene scene) diff --git a/GameServer/Server/Entity/Generate/NetworkProtocol/InnerOpcode.cs b/GameServer/Server/Entity/Generate/NetworkProtocol/InnerOpcode.cs index cd2d78f5..1abaea6a 100644 --- a/GameServer/Server/Entity/Generate/NetworkProtocol/InnerOpcode.cs +++ b/GameServer/Server/Entity/Generate/NetworkProtocol/InnerOpcode.cs @@ -6,7 +6,8 @@ namespace Fantasy public const uint Chat2G_LoginResponse = 1207969553; public const uint G2Chat_OfflineRequest = 1073751826; public const uint Chat2G_OfflineResponse = 1207969554; - public const uint G2A_TestMessage = 939534097; + public const uint Chat2G_BoardMessage = 939534097; + public const uint G2A_TestMessage = 939534098; public const uint G2A_TestRequest = 1073751827; public const uint G2A_TestResponse = 1207969555; public const uint G2M_RequestAddressableId = 1073751828; @@ -18,7 +19,7 @@ namespace Fantasy public const uint G2M_SendAddressableMessage = 1744840465; public const uint G2M_CreateSubSceneRequest = 1073751831; public const uint M2G_CreateSubSceneResponse = 1207969559; - public const uint G2SubScene_SentMessage = 939534098; + public const uint G2SubScene_SentMessage = 939534099; public const uint G2SubScene_AddressableIdRequest = 1073751832; public const uint SubScene2G_AddressableIdResponse = 1207969560; } diff --git a/GameServer/Server/Entity/Generate/NetworkProtocol/OuterMessage.cs b/GameServer/Server/Entity/Generate/NetworkProtocol/OuterMessage.cs index 410d01d4..77d23cd0 100644 --- a/GameServer/Server/Entity/Generate/NetworkProtocol/OuterMessage.cs +++ b/GameServer/Server/Entity/Generate/NetworkProtocol/OuterMessage.cs @@ -297,6 +297,49 @@ namespace Fantasy public uint ErrorCode { get; set; } } [ProtoContract] + public partial class C2Chat_BoardMessageRequest : AMessage, ICustomRouteRequest, IProto + { + public static C2Chat_BoardMessageRequest Create(Scene scene) + { + return scene.MessagePoolComponent.Rent(); + } + public override void Dispose() + { + Message = default; +#if FANTASY_NET || FANTASY_UNITY + GetScene().MessagePoolComponent.Return(this); +#endif + } + [ProtoIgnore] + public Chat2C_BoardMessageResponse ResponseType { get; set; } + public uint OpCode() { return OuterOpcode.C2Chat_BoardMessageRequest; } + [ProtoIgnore] + public int RouteType => Fantasy.RouteType.ChatRoute; + [ProtoMember(1)] + public string Message { get; set; } + } + [ProtoContract] + public partial class Chat2C_BoardMessageResponse : AMessage, ICustomRouteResponse, IProto + { + public static Chat2C_BoardMessageResponse Create(Scene scene) + { + return scene.MessagePoolComponent.Rent(); + } + public override void Dispose() + { + ErrorCode = default; + Message = default; +#if FANTASY_NET || FANTASY_UNITY + GetScene().MessagePoolComponent.Return(this); +#endif + } + public uint OpCode() { return OuterOpcode.Chat2C_BoardMessageResponse; } + [ProtoMember(1)] + public string Message { get; set; } + [ProtoMember(2)] + public uint ErrorCode { get; set; } + } + [ProtoContract] public partial class C2Chat_TestRequest : AMessage, ICustomRouteRequest, IProto { public static C2Chat_TestRequest Create(Scene scene) diff --git a/GameServer/Server/Entity/Generate/NetworkProtocol/OuterOpcode.cs b/GameServer/Server/Entity/Generate/NetworkProtocol/OuterOpcode.cs index 999b5336..5669740c 100644 --- a/GameServer/Server/Entity/Generate/NetworkProtocol/OuterOpcode.cs +++ b/GameServer/Server/Entity/Generate/NetworkProtocol/OuterOpcode.cs @@ -14,8 +14,10 @@ namespace Fantasy public const uint G2C_OpenGameNameInputWindowsMessage = 134227730; public const uint C2G_UpdateAndSaveGameNameRequest = 268445461; public const uint G2C_UpdateAndSaveGameNameResponse = 402663189; - public const uint C2Chat_TestRequest = 2281711377; - public const uint Chat2C_TestResponse = 2415929105; + public const uint C2Chat_BoardMessageRequest = 2281711377; + public const uint Chat2C_BoardMessageResponse = 2415929105; + public const uint C2Chat_TestRequest = 2281711378; + public const uint Chat2C_TestResponse = 2415929106; public const uint C2G_TestMessage = 134227731; public const uint C2G_TestRequest = 268445462; public const uint G2C_TestResponse = 402663190; @@ -29,8 +31,8 @@ namespace Fantasy public const uint C2G_CreateChatRouteRequest = 268445464; public const uint G2C_CreateChatRouteResponse = 402663192; public const uint C2Chat_TestMessage = 2147493649; - public const uint C2Chat_TestMessageRequest = 2281711378; - public const uint Chat2C_TestMessageResponse = 2415929106; + public const uint C2Chat_TestMessageRequest = 2281711379; + public const uint Chat2C_TestMessageResponse = 2415929107; public const uint C2M_MoveToMapRequest = 1476405010; public const uint M2C_MoveToMapResponse = 1610622738; public const uint C2G_SendAddressableToMap = 134227734; diff --git a/GameServer/Server/Entity/obj/Debug/net9.0/Entity.AssemblyInfo.cs b/GameServer/Server/Entity/obj/Debug/net9.0/Entity.AssemblyInfo.cs index 0ebeea41..aaed39aa 100644 --- a/GameServer/Server/Entity/obj/Debug/net9.0/Entity.AssemblyInfo.cs +++ b/GameServer/Server/Entity/obj/Debug/net9.0/Entity.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("Entity")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+47894751e0724034b829def7a67852359b02d23f")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+44d9249c1b3de281ff1e2af3b67b2562b4043873")] [assembly: System.Reflection.AssemblyProductAttribute("Entity")] [assembly: System.Reflection.AssemblyTitleAttribute("Entity")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/GameServer/Server/Entity/obj/Debug/net9.0/Entity.AssemblyInfoInputs.cache b/GameServer/Server/Entity/obj/Debug/net9.0/Entity.AssemblyInfoInputs.cache index 7054a3a2..5fe47552 100644 --- a/GameServer/Server/Entity/obj/Debug/net9.0/Entity.AssemblyInfoInputs.cache +++ b/GameServer/Server/Entity/obj/Debug/net9.0/Entity.AssemblyInfoInputs.cache @@ -1 +1 @@ -11080d70ef29f1e0498d40d3859614eca85bbc477cda1e69c0e86154d55d09de +31795973428e07b3fceaffa0510c02f385d8b020fefa631bb45ac50c0fb11246 diff --git a/GameServer/Server/Entity/obj/Debug/net9.0/Entity.csproj.AssemblyReference.cache b/GameServer/Server/Entity/obj/Debug/net9.0/Entity.csproj.AssemblyReference.cache index b80f9bfa..898f94fa 100644 Binary files a/GameServer/Server/Entity/obj/Debug/net9.0/Entity.csproj.AssemblyReference.cache and b/GameServer/Server/Entity/obj/Debug/net9.0/Entity.csproj.AssemblyReference.cache differ diff --git a/GameServer/Server/Entity/obj/rider.project.model.nuget.info b/GameServer/Server/Entity/obj/rider.project.model.nuget.info index 2dc510fc..b7218794 100644 --- a/GameServer/Server/Entity/obj/rider.project.model.nuget.info +++ b/GameServer/Server/Entity/obj/rider.project.model.nuget.info @@ -1 +1 @@ -17435554619453727 \ No newline at end of file +17436510677332808 \ No newline at end of file diff --git a/GameServer/Server/Entity/obj/rider.project.restore.info b/GameServer/Server/Entity/obj/rider.project.restore.info index fa8f98c9..40bb7af0 100644 --- a/GameServer/Server/Entity/obj/rider.project.restore.info +++ b/GameServer/Server/Entity/obj/rider.project.restore.info @@ -1 +1 @@ -17435661846531578 \ No newline at end of file +17441036760505427 \ No newline at end of file diff --git a/GameServer/Server/Hotfix/Outter/Chat/Helper/ChatHelper.cs b/GameServer/Server/Hotfix/Outter/Chat/Helper/ChatHelper.cs new file mode 100644 index 00000000..bee2c4f6 --- /dev/null +++ b/GameServer/Server/Hotfix/Outter/Chat/Helper/ChatHelper.cs @@ -0,0 +1,27 @@ +using Fantasy; +using Fantasy.Async; +using Fantasy.Platform.Net; + +namespace Hotfix; + +public static class ChatHelper +{ + + /// + /// 全服广播 + /// + /// + /// + public static async FTask BoardCast(Scene scene,string message) + { + var gateConfigs = SceneConfigData.Instance.GetSceneBySceneType(SceneType.Gate); + var netMessageComponent = scene.NetworkMessagingComponent; + foreach (var gateConfig in gateConfigs) + { + await netMessageComponent.CallInnerRoute(gateConfig.RouteId, new Chat2G_BoardMessage() + { + Message = message + }); + } + } +} \ No newline at end of file diff --git a/GameServer/Server/Hotfix/obj/Debug/net9.0/Hotfix.AssemblyInfo.cs b/GameServer/Server/Hotfix/obj/Debug/net9.0/Hotfix.AssemblyInfo.cs index e4ac0f37..2346d17a 100644 --- a/GameServer/Server/Hotfix/obj/Debug/net9.0/Hotfix.AssemblyInfo.cs +++ b/GameServer/Server/Hotfix/obj/Debug/net9.0/Hotfix.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("Hotfix")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+47894751e0724034b829def7a67852359b02d23f")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+44d9249c1b3de281ff1e2af3b67b2562b4043873")] [assembly: System.Reflection.AssemblyProductAttribute("Hotfix")] [assembly: System.Reflection.AssemblyTitleAttribute("Hotfix")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/GameServer/Server/Hotfix/obj/Debug/net9.0/Hotfix.AssemblyInfoInputs.cache b/GameServer/Server/Hotfix/obj/Debug/net9.0/Hotfix.AssemblyInfoInputs.cache index 573893d5..4d3226a7 100644 --- a/GameServer/Server/Hotfix/obj/Debug/net9.0/Hotfix.AssemblyInfoInputs.cache +++ b/GameServer/Server/Hotfix/obj/Debug/net9.0/Hotfix.AssemblyInfoInputs.cache @@ -1 +1 @@ -ac95efd761d72ed2f1c9cc0ba8fcf4764b049d05b7f62024c9fe14a561456187 +97176770e951027e48dc8d131f455ec7d6a559b9295defaf58a669df514bceb5 diff --git a/GameServer/Server/Hotfix/obj/Debug/net9.0/Hotfix.csproj.AssemblyReference.cache b/GameServer/Server/Hotfix/obj/Debug/net9.0/Hotfix.csproj.AssemblyReference.cache index 224deee3..04130c91 100644 Binary files a/GameServer/Server/Hotfix/obj/Debug/net9.0/Hotfix.csproj.AssemblyReference.cache and b/GameServer/Server/Hotfix/obj/Debug/net9.0/Hotfix.csproj.AssemblyReference.cache differ diff --git a/GameServer/Server/Hotfix/obj/rider.project.model.nuget.info b/GameServer/Server/Hotfix/obj/rider.project.model.nuget.info index a8263991..7cce67cd 100644 --- a/GameServer/Server/Hotfix/obj/rider.project.model.nuget.info +++ b/GameServer/Server/Hotfix/obj/rider.project.model.nuget.info @@ -1 +1 @@ -17435554619659440 \ No newline at end of file +17436510677596105 \ No newline at end of file diff --git a/GameServer/Server/Hotfix/obj/rider.project.restore.info b/GameServer/Server/Hotfix/obj/rider.project.restore.info index fa8f98c9..40bb7af0 100644 --- a/GameServer/Server/Hotfix/obj/rider.project.restore.info +++ b/GameServer/Server/Hotfix/obj/rider.project.restore.info @@ -1 +1 @@ -17435661846531578 \ No newline at end of file +17441036760505427 \ No newline at end of file diff --git a/GameServer/Server/Main/obj/Debug/net9.0/Main.AssemblyInfo.cs b/GameServer/Server/Main/obj/Debug/net9.0/Main.AssemblyInfo.cs index 1bbd13cd..4713d14c 100644 --- a/GameServer/Server/Main/obj/Debug/net9.0/Main.AssemblyInfo.cs +++ b/GameServer/Server/Main/obj/Debug/net9.0/Main.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("Main")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+47894751e0724034b829def7a67852359b02d23f")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+44d9249c1b3de281ff1e2af3b67b2562b4043873")] [assembly: System.Reflection.AssemblyProductAttribute("Main")] [assembly: System.Reflection.AssemblyTitleAttribute("Main")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/GameServer/Server/Main/obj/Debug/net9.0/Main.AssemblyInfoInputs.cache b/GameServer/Server/Main/obj/Debug/net9.0/Main.AssemblyInfoInputs.cache index cf84ddc7..689abe62 100644 --- a/GameServer/Server/Main/obj/Debug/net9.0/Main.AssemblyInfoInputs.cache +++ b/GameServer/Server/Main/obj/Debug/net9.0/Main.AssemblyInfoInputs.cache @@ -1 +1 @@ -f5791e4ee329f4d64c33f6ed979fb10299dfb1cbf8ac264c2337ed1a34b09d12 +5a3097ff682434d61c06a4ba773e8820fa8ffc10064fc4bcb136541359fb1cd0 diff --git a/GameServer/Server/Main/obj/Debug/net9.0/Main.csproj.AssemblyReference.cache b/GameServer/Server/Main/obj/Debug/net9.0/Main.csproj.AssemblyReference.cache index eb13e0f9..0b9e561d 100644 Binary files a/GameServer/Server/Main/obj/Debug/net9.0/Main.csproj.AssemblyReference.cache and b/GameServer/Server/Main/obj/Debug/net9.0/Main.csproj.AssemblyReference.cache differ diff --git a/GameServer/Server/Main/obj/rider.project.model.nuget.info b/GameServer/Server/Main/obj/rider.project.model.nuget.info index 0d48bd2f..650bef0d 100644 --- a/GameServer/Server/Main/obj/rider.project.model.nuget.info +++ b/GameServer/Server/Main/obj/rider.project.model.nuget.info @@ -1 +1 @@ -17435554619814614 \ No newline at end of file +17436510677784519 \ No newline at end of file diff --git a/GameServer/Server/Main/obj/rider.project.restore.info b/GameServer/Server/Main/obj/rider.project.restore.info index fa8f98c9..d27a5abe 100644 --- a/GameServer/Server/Main/obj/rider.project.restore.info +++ b/GameServer/Server/Main/obj/rider.project.restore.info @@ -1 +1 @@ -17435661846531578 \ No newline at end of file +17441036760520492 \ No newline at end of file