diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..998f1d3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +.idea +Bin +bin +obj +__MACOSX diff --git a/.idea/.idea.Server/.idea/.gitignore b/.idea/.idea.Server/.idea/.gitignore deleted file mode 100644 index 52325c1..0000000 --- a/.idea/.idea.Server/.idea/.gitignore +++ /dev/null @@ -1,13 +0,0 @@ -# 默认忽略的文件 -/shelf/ -/workspace.xml -# Rider 忽略的文件 -/.idea.Server.iml -/modules.xml -/projectSettingsUpdater.xml -/contentModel.xml -# 基于编辑器的 HTTP 客户端请求 -/httpRequests/ -# Datasource local storage ignored files -/dataSources/ -/dataSources.local.xml diff --git a/.idea/.idea.Server/.idea/indexLayout.xml b/.idea/.idea.Server/.idea/indexLayout.xml deleted file mode 100644 index 7b08163..0000000 --- a/.idea/.idea.Server/.idea/indexLayout.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/Entity/Game/Item/PlayerItemContainerComponent.cs b/Entity/Game/Item/PlayerItemContainerComponent.cs index 050b78f..822b213 100644 --- a/Entity/Game/Item/PlayerItemContainerComponent.cs +++ b/Entity/Game/Item/PlayerItemContainerComponent.cs @@ -20,8 +20,8 @@ public sealed class PlayerItemContainerComponent : Entity public Dictionary Items = new Dictionary(); /// - /// 钓组信息 + /// 物品绑定信息 /// [BsonDictionaryOptions(DictionaryRepresentation.ArrayOfArrays)] - public Dictionary> FishingRig = new Dictionary>(); + public Dictionary> Binding = new Dictionary>(); } \ No newline at end of file diff --git a/Entity/Generate/ConfigTable/Entity/BobberConfig.cs b/Entity/Generate/ConfigTable/Entity/BobberConfig.cs index 53fe5f7..b728eca 100644 --- a/Entity/Generate/ConfigTable/Entity/BobberConfig.cs +++ b/Entity/Generate/ConfigTable/Entity/BobberConfig.cs @@ -11,15 +11,20 @@ using NBF.ConfigTable; namespace NBF { [ProtoContract] - public sealed partial class BobberConfig : ASerialize, IConfigTable + public sealed partial class BobberConfig : ASerialize, IConfigTable { - [ProtoMember(1)] public uint Id { get; set; } // Id - [ProtoMember(2)] public uint Displacement { get; set; } // 位移 - [ProtoMember(3)] public uint NightLight { get; set; } // 是否夜光 - [ProtoIgnore] public uint Key => Id; - + + [ProtoMember(1)] + public uint Id { get; set; } // Id + [ProtoMember(2)] + public uint Displacement { get; set; } // 位移 + [ProtoMember(3)] + public uint NightLight { get; set; } // 是否夜光 + [ProtoIgnore] + public uint Key => Id; + #region Static - + private static ConfigContext Context => ConfigTableHelper.Table(); public static BobberConfig Get(uint key) @@ -31,7 +36,7 @@ namespace NBF { return Context.Get(match); } - + public static BobberConfig Fist() { return Context.Fist(); @@ -51,7 +56,7 @@ namespace NBF { return Context.Last(match); } - + public static int Count() { return Context.Count(); @@ -71,12 +76,10 @@ namespace NBF { return Context.GetList(match); } - public static void ParseJson(Newtonsoft.Json.Linq.JArray arr) { ConfigTableHelper.ParseLine(arr); } - #endregion } } \ No newline at end of file diff --git a/Entity/Generate/ConfigTable/Entity/ItemConfig.cs b/Entity/Generate/ConfigTable/Entity/ItemConfig.cs index bdbcd39..1b1a417 100644 --- a/Entity/Generate/ConfigTable/Entity/ItemConfig.cs +++ b/Entity/Generate/ConfigTable/Entity/ItemConfig.cs @@ -19,7 +19,7 @@ namespace NBF [ProtoMember(2)] public string Model { get; set; } // 模型 [ProtoMember(3)] - public uint Type { get; set; } // 类型 + public uint Type { get; set; } // 子类型 [ProtoMember(4)] public uint Quality { get; set; } // 品质 [ProtoMember(5)] diff --git a/Entity/Generate/ConfigTable/Entity/LureConfig.cs b/Entity/Generate/ConfigTable/Entity/LureConfig.cs index 95b61f7..08ce607 100644 --- a/Entity/Generate/ConfigTable/Entity/LureConfig.cs +++ b/Entity/Generate/ConfigTable/Entity/LureConfig.cs @@ -19,6 +19,8 @@ namespace NBF [ProtoMember(2)] public uint[] Hook { get; set; } = Array.Empty(); // 勾 [ProtoMember(3)] + public uint HookNum { get; set; } // 装配鱼钩数量 + [ProtoMember(4)] public uint EfficacyBase { get; set; } // 吸引力 [ProtoIgnore] public uint Key => Id; diff --git a/Entity/Generate/NetworkProtocol/GameMessage.cs b/Entity/Generate/NetworkProtocol/GameMessage.cs index fee0e91..0b19d18 100644 --- a/Entity/Generate/NetworkProtocol/GameMessage.cs +++ b/Entity/Generate/NetworkProtocol/GameMessage.cs @@ -157,8 +157,9 @@ namespace Fantasy } public override void Dispose() { - RodId = default; + ItemId = default; RigId = default; + OldRigId = default; IsAdd = default; #if FANTASY_NET || FANTASY_UNITY GetScene().MessagePoolComponent.Return(this); @@ -170,10 +171,12 @@ namespace Fantasy [ProtoIgnore] public int RouteType => Fantasy.RouteType.GameRoute; [ProtoMember(1)] - public long RodId { get; set; } + public long ItemId { get; set; } [ProtoMember(2)] public long RigId { get; set; } [ProtoMember(3)] + public long OldRigId { get; set; } + [ProtoMember(4)] public bool IsAdd { get; set; } } /// diff --git a/Entity/Generate/NetworkProtocol/SocialMessage.cs b/Entity/Generate/NetworkProtocol/SocialMessage.cs index cf1ab9b..67ff31b 100644 --- a/Entity/Generate/NetworkProtocol/SocialMessage.cs +++ b/Entity/Generate/NetworkProtocol/SocialMessage.cs @@ -483,7 +483,7 @@ namespace Fantasy } public override void Dispose() { - Message = default; + Msg = default; #if FANTASY_NET || FANTASY_UNITY GetScene().MessagePoolComponent.Return(this); #endif @@ -492,7 +492,7 @@ namespace Fantasy [ProtoIgnore] public int RouteType => Fantasy.RouteType.SocialRoute; [ProtoMember(1)] - public ChatMessageInfo Message { get; set; } + public ChatMessageInfo Msg { get; set; } } /// /// /////////// ******** 工会 *******///////////// diff --git a/Entity/bin/Debug/net9.0/Entity.deps.json b/Entity/bin/Debug/net9.0/Entity.deps.json deleted file mode 100644 index e441805..0000000 --- a/Entity/bin/Debug/net9.0/Entity.deps.json +++ /dev/null @@ -1,408 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v9.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v9.0": { - "Entity/1.0.0": { - "dependencies": { - "Fantasy-Net": "2025.2.0", - "Microsoft.IdentityModel.Tokens": "8.14.0", - "System.IdentityModel.Tokens.Jwt": "8.14.0", - "ThirdParty": "1.0.0" - }, - "runtime": { - "Entity.dll": {} - } - }, - "CommandLineParser/2.9.1": { - "runtime": { - "lib/netstandard2.0/CommandLine.dll": { - "assemblyVersion": "2.9.1.0", - "fileVersion": "2.9.1.0" - } - } - }, - "DnsClient/1.6.1": { - "dependencies": { - "Microsoft.Win32.Registry": "5.0.0" - }, - "runtime": { - "lib/net5.0/DnsClient.dll": { - "assemblyVersion": "1.6.1.0", - "fileVersion": "1.6.1.0" - } - } - }, - "Fantasy-Net/2025.2.0": { - "dependencies": { - "CommandLineParser": "2.9.1", - "MongoDB.Bson": "3.5.0", - "MongoDB.Driver": "3.5.0", - "Newtonsoft.Json": "13.0.4", - "protobuf-net": "3.2.56" - }, - "runtime": { - "lib/net9.0/Fantasy-Net.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {}, - "Microsoft.Extensions.Logging.Abstractions/8.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" - } - }, - "Microsoft.IdentityModel.Abstractions/8.14.0": { - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { - "assemblyVersion": "8.14.0.0", - "fileVersion": "8.14.0.60815" - } - } - }, - "Microsoft.IdentityModel.JsonWebTokens/8.14.0": { - "dependencies": { - "Microsoft.IdentityModel.Tokens": "8.14.0" - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "assemblyVersion": "8.14.0.0", - "fileVersion": "8.14.0.60815" - } - } - }, - "Microsoft.IdentityModel.Logging/8.14.0": { - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "8.14.0" - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { - "assemblyVersion": "8.14.0.0", - "fileVersion": "8.14.0.60815" - } - } - }, - "Microsoft.IdentityModel.Tokens/8.14.0": { - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.IdentityModel.Logging": "8.14.0" - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { - "assemblyVersion": "8.14.0.0", - "fileVersion": "8.14.0.60815" - } - } - }, - "Microsoft.NETCore.Platforms/5.0.0": {}, - "Microsoft.Win32.Registry/5.0.0": { - "dependencies": { - "System.Security.AccessControl": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - } - }, - "MongoDB.Bson/3.5.0": { - "dependencies": { - "System.Memory": "4.5.5", - "System.Runtime.CompilerServices.Unsafe": "5.0.0" - }, - "runtime": { - "lib/net6.0/MongoDB.Bson.dll": { - "assemblyVersion": "3.5.0.0", - "fileVersion": "3.5.0.0" - } - } - }, - "MongoDB.Driver/3.5.0": { - "dependencies": { - "DnsClient": "1.6.1", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "MongoDB.Bson": "3.5.0", - "SharpCompress": "0.30.1", - "Snappier": "1.0.0", - "System.Buffers": "4.5.1", - "ZstdSharp.Port": "0.7.3" - }, - "runtime": { - "lib/net6.0/MongoDB.Driver.dll": { - "assemblyVersion": "3.5.0.0", - "fileVersion": "3.5.0.0" - } - } - }, - "Newtonsoft.Json/13.0.4": { - "runtime": { - "lib/net6.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.4.30916" - } - } - }, - "protobuf-net/3.2.56": { - "dependencies": { - "protobuf-net.Core": "3.2.56" - }, - "runtime": { - "lib/net8.0/protobuf-net.dll": { - "assemblyVersion": "3.0.0.0", - "fileVersion": "3.2.56.57311" - } - } - }, - "protobuf-net.Core/3.2.56": { - "runtime": { - "lib/net8.0/protobuf-net.Core.dll": { - "assemblyVersion": "3.0.0.0", - "fileVersion": "3.2.56.57311" - } - } - }, - "SharpCompress/0.30.1": { - "runtime": { - "lib/net5.0/SharpCompress.dll": { - "assemblyVersion": "0.30.1.0", - "fileVersion": "0.30.1.0" - } - } - }, - "Snappier/1.0.0": { - "runtime": { - "lib/net5.0/Snappier.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "System.Buffers/4.5.1": {}, - "System.IdentityModel.Tokens.Jwt/8.14.0": { - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "8.14.0", - "Microsoft.IdentityModel.Tokens": "8.14.0" - }, - "runtime": { - "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": { - "assemblyVersion": "8.14.0.0", - "fileVersion": "8.14.0.60815" - } - } - }, - "System.Memory/4.5.5": {}, - "System.Runtime.CompilerServices.Unsafe/5.0.0": {}, - "System.Security.AccessControl/5.0.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - } - }, - "System.Security.Principal.Windows/5.0.0": {}, - "ZstdSharp.Port/0.7.3": { - "runtime": { - "lib/net7.0/ZstdSharp.dll": { - "assemblyVersion": "0.7.3.0", - "fileVersion": "0.7.3.0" - } - } - }, - "ThirdParty/1.0.0": { - "runtime": { - "ThirdParty.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - } - } - }, - "libraries": { - "Entity/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "CommandLineParser/2.9.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OE0sl1/sQ37bjVsPKKtwQlWDgqaxWgtme3xZz7JssWUzg5JpMIyHgCTY9MVMxOg48fJ1AgGT3tgdH5m/kQ5xhA==", - "path": "commandlineparser/2.9.1", - "hashPath": "commandlineparser.2.9.1.nupkg.sha512" - }, - "DnsClient/1.6.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4H/f2uYJOZ+YObZjpY9ABrKZI+JNw3uizp6oMzTXwDw6F+2qIPhpRl/1t68O/6e98+vqNiYGu+lswmwdYUy3gg==", - "path": "dnsclient/1.6.1", - "hashPath": "dnsclient.1.6.1.nupkg.sha512" - }, - "Fantasy-Net/2025.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vCkduwxkMlH8GozyS+ZlWGLC4nGjFGaL13Ah4w5HL55XAJaAhe+RX+gbSRNBeJf1Uu0cjG2MgVyS4NX7bXdN4g==", - "path": "fantasy-net/2025.2.0", - "hashPath": "fantasy-net.2025.2.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==", - "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", - "path": "microsoft.extensions.logging.abstractions/8.0.0", - "hashPath": "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Abstractions/8.14.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iwbCpSjD3ehfTwBhtSNEtKPK0ICun6ov7Ibx6ISNA9bfwIyzI2Siwyi9eJFCJBwxowK9xcA1mj+jBWiigeqgcQ==", - "path": "microsoft.identitymodel.abstractions/8.14.0", - "hashPath": "microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.JsonWebTokens/8.14.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4jOpiA4THdtpLyMdAb24dtj7+6GmvhOhxf5XHLYWmPKF8ApEnApal1UnJsKO4HxUWRXDA6C4WQVfYyqsRhpNpQ==", - "path": "microsoft.identitymodel.jsonwebtokens/8.14.0", - "hashPath": "microsoft.identitymodel.jsonwebtokens.8.14.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Logging/8.14.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eqqnemdW38CKZEHS6diA50BV94QICozDZEvSrsvN3SJXUFwVB9gy+/oz76gldP7nZliA16IglXjXTCTdmU/Ejg==", - "path": "microsoft.identitymodel.logging/8.14.0", - "hashPath": "microsoft.identitymodel.logging.8.14.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Tokens/8.14.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lKIZiBiGd36k02TCdMHp1KlNWisyIvQxcYJvIkz7P4gSQ9zi8dgh6S5Grj8NNG7HWYIPfQymGyoZ6JB5d1Lo1g==", - "path": "microsoft.identitymodel.tokens/8.14.0", - "hashPath": "microsoft.identitymodel.tokens.8.14.0.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", - "path": "microsoft.netcore.platforms/5.0.0", - "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512" - }, - "Microsoft.Win32.Registry/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", - "path": "microsoft.win32.registry/5.0.0", - "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512" - }, - "MongoDB.Bson/3.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JGNK6BanLDEifgkvPLqVFCPus5EDCy416pxf1dxUBRSVd3D9+NB3AvMVX190eXlk5/UXuCxpsQv7jWfNKvppBQ==", - "path": "mongodb.bson/3.5.0", - "hashPath": "mongodb.bson.3.5.0.nupkg.sha512" - }, - "MongoDB.Driver/3.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ST90u7psyMkNNOWFgSkexsrB3kPn7Ynl2DlMFj2rJyYuc6SIxjmzu4ufy51yzM+cPVE1SvVcdb5UFobrRw6cMg==", - "path": "mongodb.driver/3.5.0", - "hashPath": "mongodb.driver.3.5.0.nupkg.sha512" - }, - "Newtonsoft.Json/13.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pdgNNMai3zv51W5aq268sujXUyx7SNdE2bj1wZcWjAQrKMFZV260lbqYop1d2GM67JI1huLRwxo9ZqnfF/lC6A==", - "path": "newtonsoft.json/13.0.4", - "hashPath": "newtonsoft.json.13.0.4.nupkg.sha512" - }, - "protobuf-net/3.2.56": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4IPJeTYAMNewlN8MDaFkcmR/9hLhJeo9eARnTh104zh7mf+vXT2gu5MUfUnkSQU+CH578Q6vcdU7LQDQPG6eaw==", - "path": "protobuf-net/3.2.56", - "hashPath": "protobuf-net.3.2.56.nupkg.sha512" - }, - "protobuf-net.Core/3.2.56": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d6QOukTpDzs7zZv9tPnBZMtvHDNeHJQXUhMx54g4urUQsXK3oo9U70H9HvklYq7hlQ4A7AHJl7EVEqyCXXIl8Q==", - "path": "protobuf-net.core/3.2.56", - "hashPath": "protobuf-net.core.3.2.56.nupkg.sha512" - }, - "SharpCompress/0.30.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==", - "path": "sharpcompress/0.30.1", - "hashPath": "sharpcompress.0.30.1.nupkg.sha512" - }, - "Snappier/1.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rFtK2KEI9hIe8gtx3a0YDXdHOpedIf9wYCEYtBEmtlyiWVX3XlCNV03JrmmAi/Cdfn7dxK+k0sjjcLv4fpHnqA==", - "path": "snappier/1.0.0", - "hashPath": "snappier.1.0.0.nupkg.sha512" - }, - "System.Buffers/4.5.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", - "path": "system.buffers/4.5.1", - "hashPath": "system.buffers.4.5.1.nupkg.sha512" - }, - "System.IdentityModel.Tokens.Jwt/8.14.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EYGgN/S+HK7S6F3GaaPLFAfK0UzMrkXFyWCvXpQWFYmZln3dqtbyIO7VuTM/iIIPMzkelg8ZLlBPvMhxj6nOAA==", - "path": "system.identitymodel.tokens.jwt/8.14.0", - "hashPath": "system.identitymodel.tokens.jwt.8.14.0.nupkg.sha512" - }, - "System.Memory/4.5.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", - "path": "system.memory/4.5.5", - "hashPath": "system.memory.4.5.5.nupkg.sha512" - }, - "System.Runtime.CompilerServices.Unsafe/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==", - "path": "system.runtime.compilerservices.unsafe/5.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512" - }, - "System.Security.AccessControl/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", - "path": "system.security.accesscontrol/5.0.0", - "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512" - }, - "System.Security.Principal.Windows/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", - "path": "system.security.principal.windows/5.0.0", - "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" - }, - "ZstdSharp.Port/0.7.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-U9Ix4l4cl58Kzz1rJzj5hoVTjmbx1qGMwzAcbv1j/d3NzrFaESIurQyg+ow4mivCgkE3S413y+U9k4WdnEIkRA==", - "path": "zstdsharp.port/0.7.3", - "hashPath": "zstdsharp.port.0.7.3.nupkg.sha512" - }, - "ThirdParty/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/Entity/bin/Debug/net9.0/Entity.dll b/Entity/bin/Debug/net9.0/Entity.dll deleted file mode 100644 index e3649fb..0000000 Binary files a/Entity/bin/Debug/net9.0/Entity.dll and /dev/null differ diff --git a/Entity/bin/Debug/net9.0/Entity.pdb b/Entity/bin/Debug/net9.0/Entity.pdb deleted file mode 100644 index aa1be2e..0000000 Binary files a/Entity/bin/Debug/net9.0/Entity.pdb and /dev/null differ diff --git a/Entity/bin/Debug/net9.0/Fantasy.config b/Entity/bin/Debug/net9.0/Fantasy.config deleted file mode 100644 index b50d8ab..0000000 --- a/Entity/bin/Debug/net9.0/Fantasy.config +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Entity/bin/Debug/net9.0/Fantasy.xsd b/Entity/bin/Debug/net9.0/Fantasy.xsd deleted file mode 100644 index 6a64f66..0000000 --- a/Entity/bin/Debug/net9.0/Fantasy.xsd +++ /dev/null @@ -1,345 +0,0 @@ - - - - - - - Fantasy框架配置文件根元素 - - - - - - 配置表路径设置 - - - - - 网络运行时配置 - - - - - 会话运行时配置 - - - - - 服务器配置 - - - - - - - - - - - 配置表文件路径 - - - - - - - - - - 机器配置列表 - - - - - 进程配置列表 - - - - - 世界配置列表 - - - - - 场景配置列表 - - - - - 单位配置列表 - - - - - - - - - - - - - - - - 机器ID - - - - - 外网IP地址 - - - - - 外网绑定IP地址 - - - - - 内网绑定IP地址 - - - - - - - - - - - - - - - 进程ID - - - - - 所属机器ID - - - - - 启动分组 - - - - - - - - - - - - - - - - 数据库类型 - - - - - - - - - - - - - - - - - - 数据库名称 - - - - - 数据库连接字符串 - - - - - - - - - 世界中配置的数据库 - - - - - - - - 世界ID - - - - - 世界名称 - - - - - - - - - - - - - - - 场景ID - - - - - 进程配置ID - - - - - 世界配置ID - - - - - 场景运行模式 - - - - - - - - - - - - 场景类型字符串 - - - - - 网络协议类型 - - - - - - - - - - - - - - 外网端口 - - - - - 内网端口 - - - - - - - - - 服务器内部网络协议 - - - - - - - - - - - 消息体最大长度(字节),默认1048560字节(约1.02MB) - - - - - - - - - Session idle check timeout (in milliseconds) - - - - - Session idle check interval (in milliseconds) - - - - - - - - - - - - - - - - 单位字典数据 - - - - - - 单位ID - - - - - 单位名称 - - - - - 单位模型 - - - - - - - - - - - 字典键 - - - - - 字典值 - - - - - - - - \ No newline at end of file diff --git a/Entity/bin/Debug/net9.0/ThirdParty.dll b/Entity/bin/Debug/net9.0/ThirdParty.dll deleted file mode 100644 index c68db15..0000000 Binary files a/Entity/bin/Debug/net9.0/ThirdParty.dll and /dev/null differ diff --git a/Entity/bin/Debug/net9.0/ThirdParty.pdb b/Entity/bin/Debug/net9.0/ThirdParty.pdb deleted file mode 100644 index 6d74378..0000000 Binary files a/Entity/bin/Debug/net9.0/ThirdParty.pdb and /dev/null differ diff --git a/Entity/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/Entity/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs deleted file mode 100644 index feda5e9..0000000 --- a/Entity/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")] diff --git a/Entity/obj/Debug/net9.0/Entity.AssemblyInfo.cs b/Entity/obj/Debug/net9.0/Entity.AssemblyInfo.cs deleted file mode 100644 index 4e9ca95..0000000 --- a/Entity/obj/Debug/net9.0/Entity.AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -//------------------------------------------------------------------------------ -// -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 -// -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 -// -//------------------------------------------------------------------------------ - -using System; -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+7b10d4cb317c9f310649a9cb4afe3882d4b12624")] -[assembly: System.Reflection.AssemblyProductAttribute("Entity")] -[assembly: System.Reflection.AssemblyTitleAttribute("Entity")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// 由 MSBuild WriteCodeFragment 类生成。 - diff --git a/Entity/obj/Debug/net9.0/Entity.AssemblyInfoInputs.cache b/Entity/obj/Debug/net9.0/Entity.AssemblyInfoInputs.cache deleted file mode 100644 index 946fdb5..0000000 --- a/Entity/obj/Debug/net9.0/Entity.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -4925a41a1713fbdc3c4b16a99814eedf9add8ff230ff3e204d8dc265b8ca499e diff --git a/Entity/obj/Debug/net9.0/Entity.GeneratedMSBuildEditorConfig.editorconfig b/Entity/obj/Debug/net9.0/Entity.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 3dbeb6a..0000000 --- a/Entity/obj/Debug/net9.0/Entity.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,15 +0,0 @@ -is_global = true -build_property.TargetFramework = net9.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = Entity -build_property.ProjectDir = D:\work\Fishing2Server\Entity\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.EffectiveAnalysisLevelStyle = 9.0 -build_property.EnableCodeStyleSeverity = diff --git a/Entity/obj/Debug/net9.0/Entity.GlobalUsings.g.cs b/Entity/obj/Debug/net9.0/Entity.GlobalUsings.g.cs deleted file mode 100644 index 8578f3d..0000000 --- a/Entity/obj/Debug/net9.0/Entity.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -global using global::System; -global using global::System.Collections.Generic; -global using global::System.IO; -global using global::System.Linq; -global using global::System.Net.Http; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/Entity/obj/Debug/net9.0/Entity.assets.cache b/Entity/obj/Debug/net9.0/Entity.assets.cache deleted file mode 100644 index 79321ef..0000000 Binary files a/Entity/obj/Debug/net9.0/Entity.assets.cache and /dev/null differ diff --git a/Entity/obj/Debug/net9.0/Entity.csproj.AssemblyReference.cache b/Entity/obj/Debug/net9.0/Entity.csproj.AssemblyReference.cache deleted file mode 100644 index ebe7baf..0000000 Binary files a/Entity/obj/Debug/net9.0/Entity.csproj.AssemblyReference.cache and /dev/null differ diff --git a/Entity/obj/Debug/net9.0/Entity.csproj.CoreCompileInputs.cache b/Entity/obj/Debug/net9.0/Entity.csproj.CoreCompileInputs.cache deleted file mode 100644 index 2d32e9b..0000000 --- a/Entity/obj/Debug/net9.0/Entity.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -6062551d1ab69f267bcbdefc9b276d4b2471f6b61b2a4e2cc6c5f261ac8ee2b5 diff --git a/Entity/obj/Debug/net9.0/Entity.csproj.FileListAbsolute.txt b/Entity/obj/Debug/net9.0/Entity.csproj.FileListAbsolute.txt deleted file mode 100644 index 7e0352f..0000000 --- a/Entity/obj/Debug/net9.0/Entity.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,17 +0,0 @@ -D:\work\Fishing2ServerNew\Fishing2\Server\Entity\bin\Debug\net9.0\Fantasy.config -D:\work\Fishing2ServerNew\Fishing2\Server\Entity\bin\Debug\net9.0\Fantasy.xsd -D:\work\Fishing2ServerNew\Fishing2\Server\Entity\bin\Debug\net9.0\Entity.deps.json -D:\work\Fishing2ServerNew\Fishing2\Server\Entity\bin\Debug\net9.0\Entity.dll -D:\work\Fishing2ServerNew\Fishing2\Server\Entity\bin\Debug\net9.0\Entity.pdb -D:\work\Fishing2ServerNew\Fishing2\Server\Entity\obj\Debug\net9.0\Entity.csproj.AssemblyReference.cache -D:\work\Fishing2ServerNew\Fishing2\Server\Entity\obj\Debug\net9.0\Entity.GeneratedMSBuildEditorConfig.editorconfig -D:\work\Fishing2ServerNew\Fishing2\Server\Entity\obj\Debug\net9.0\Entity.AssemblyInfoInputs.cache -D:\work\Fishing2ServerNew\Fishing2\Server\Entity\obj\Debug\net9.0\Entity.AssemblyInfo.cs -D:\work\Fishing2ServerNew\Fishing2\Server\Entity\obj\Debug\net9.0\Entity.csproj.CoreCompileInputs.cache -D:\work\Fishing2ServerNew\Fishing2\Server\Entity\obj\Debug\net9.0\Entity.dll -D:\work\Fishing2ServerNew\Fishing2\Server\Entity\obj\Debug\net9.0\refint\Entity.dll -D:\work\Fishing2ServerNew\Fishing2\Server\Entity\obj\Debug\net9.0\Entity.pdb -D:\work\Fishing2ServerNew\Fishing2\Server\Entity\obj\Debug\net9.0\ref\Entity.dll -D:\work\Fishing2ServerNew\Fishing2\Server\Entity\bin\Debug\net9.0\ThirdParty.dll -D:\work\Fishing2ServerNew\Fishing2\Server\Entity\bin\Debug\net9.0\ThirdParty.pdb -D:\work\Fishing2ServerNew\Fishing2\Server\Entity\obj\Debug\net9.0\Entity.csproj.Up2Date diff --git a/Entity/obj/Debug/net9.0/Entity.csproj.Up2Date b/Entity/obj/Debug/net9.0/Entity.csproj.Up2Date deleted file mode 100644 index e69de29..0000000 diff --git a/Entity/obj/Debug/net9.0/Entity.dll b/Entity/obj/Debug/net9.0/Entity.dll deleted file mode 100644 index e3649fb..0000000 Binary files a/Entity/obj/Debug/net9.0/Entity.dll and /dev/null differ diff --git a/Entity/obj/Debug/net9.0/Entity.pdb b/Entity/obj/Debug/net9.0/Entity.pdb deleted file mode 100644 index aa1be2e..0000000 Binary files a/Entity/obj/Debug/net9.0/Entity.pdb and /dev/null differ diff --git a/Entity/obj/Debug/net9.0/ref/Entity.dll b/Entity/obj/Debug/net9.0/ref/Entity.dll deleted file mode 100644 index 973d2df..0000000 Binary files a/Entity/obj/Debug/net9.0/ref/Entity.dll and /dev/null differ diff --git a/Entity/obj/Debug/net9.0/refint/Entity.dll b/Entity/obj/Debug/net9.0/refint/Entity.dll deleted file mode 100644 index 973d2df..0000000 Binary files a/Entity/obj/Debug/net9.0/refint/Entity.dll and /dev/null differ diff --git a/Entity/obj/Entity.csproj.nuget.dgspec.json b/Entity/obj/Entity.csproj.nuget.dgspec.json deleted file mode 100644 index 941e191..0000000 --- a/Entity/obj/Entity.csproj.nuget.dgspec.json +++ /dev/null @@ -1,156 +0,0 @@ -{ - "format": 1, - "restore": { - "D:\\work\\Fishing2Server\\Entity\\Entity.csproj": {} - }, - "projects": { - "D:\\work\\Fishing2Server\\Entity\\Entity.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\work\\Fishing2Server\\Entity\\Entity.csproj", - "projectName": "Entity", - "projectPath": "D:\\work\\Fishing2Server\\Entity\\Entity.csproj", - "packagesPath": "C:\\Users\\FIREBAT\\.nuget\\packages\\", - "outputPath": "D:\\work\\Fishing2Server\\Entity\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\FIREBAT\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net9.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net9.0": { - "targetAlias": "net9.0", - "projectReferences": { - "D:\\work\\Fishing2Server\\ThirdParty\\ThirdParty.csproj": { - "projectPath": "D:\\work\\Fishing2Server\\ThirdParty\\ThirdParty.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "direct" - }, - "SdkAnalysisLevel": "9.0.300" - }, - "frameworks": { - "net9.0": { - "targetAlias": "net9.0", - "dependencies": { - "Fantasy-Net": { - "target": "Package", - "version": "[2025.2.0, )" - }, - "Microsoft.IdentityModel.Tokens": { - "target": "Package", - "version": "[8.14.0, )" - }, - "System.IdentityModel.Tokens.Jwt": { - "target": "Package", - "version": "[8.14.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" - } - } - }, - "D:\\work\\Fishing2Server\\ThirdParty\\ThirdParty.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\work\\Fishing2Server\\ThirdParty\\ThirdParty.csproj", - "projectName": "ThirdParty", - "projectPath": "D:\\work\\Fishing2Server\\ThirdParty\\ThirdParty.csproj", - "packagesPath": "C:\\Users\\FIREBAT\\.nuget\\packages\\", - "outputPath": "D:\\work\\Fishing2Server\\ThirdParty\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\FIREBAT\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net8.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net8.0": { - "targetAlias": "net8.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "direct" - }, - "SdkAnalysisLevel": "9.0.300" - }, - "frameworks": { - "net8.0": { - "targetAlias": "net8.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/Entity/obj/Entity.csproj.nuget.g.props b/Entity/obj/Entity.csproj.nuget.g.props deleted file mode 100644 index d208a02..0000000 --- a/Entity/obj/Entity.csproj.nuget.g.props +++ /dev/null @@ -1,19 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\FIREBAT\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages - PackageReference - 6.14.0 - - - - - - - - - \ No newline at end of file diff --git a/Entity/obj/Entity.csproj.nuget.g.targets b/Entity/obj/Entity.csproj.nuget.g.targets deleted file mode 100644 index eb7028d..0000000 --- a/Entity/obj/Entity.csproj.nuget.g.targets +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/Entity/obj/project.assets.json b/Entity/obj/project.assets.json deleted file mode 100644 index 7478cbe..0000000 --- a/Entity/obj/project.assets.json +++ /dev/null @@ -1,1215 +0,0 @@ -{ - "version": 3, - "targets": { - "net9.0": { - "CommandLineParser/2.9.1": { - "type": "package", - "compile": { - "lib/netstandard2.0/CommandLine.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/CommandLine.dll": { - "related": ".xml" - } - } - }, - "DnsClient/1.6.1": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Registry": "5.0.0" - }, - "compile": { - "lib/net5.0/DnsClient.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net5.0/DnsClient.dll": { - "related": ".xml" - } - } - }, - "Fantasy-Net/2025.2.0": { - "type": "package", - "dependencies": { - "CommandLineParser": "2.9.1", - "MongoDB.Bson": "3.5.0", - "MongoDB.Driver": "3.5.0", - "Newtonsoft.Json": "13.0.4", - "protobuf-net": "3.2.56" - }, - "compile": { - "lib/net9.0/Fantasy-Net.dll": {} - }, - "runtime": { - "lib/net9.0/Fantasy-Net.dll": {} - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ], - "build": { - "build/Fantasy-Net.props": {}, - "buildTransitive/Fantasy-Net.targets": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { - "type": "package", - "compile": { - "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/8.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" - }, - "compile": { - "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} - } - }, - "Microsoft.IdentityModel.Abstractions/8.14.0": { - "type": "package", - "compile": { - "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.JsonWebTokens/8.14.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Tokens": "8.14.0" - }, - "compile": { - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Logging/8.14.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "8.14.0" - }, - "compile": { - "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Tokens/8.14.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.IdentityModel.Logging": "8.14.0" - }, - "compile": { - "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { - "related": ".xml" - } - } - }, - "Microsoft.NETCore.Platforms/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.Win32.Registry/5.0.0": { - "type": "package", - "dependencies": { - "System.Security.AccessControl": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - }, - "compile": { - "ref/netstandard2.0/Microsoft.Win32.Registry.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { - "related": ".xml" - } - }, - "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "MongoDB.Bson/3.5.0": { - "type": "package", - "dependencies": { - "System.Memory": "4.5.5", - "System.Runtime.CompilerServices.Unsafe": "5.0.0" - }, - "compile": { - "lib/net6.0/MongoDB.Bson.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/MongoDB.Bson.dll": { - "related": ".xml" - } - } - }, - "MongoDB.Driver/3.5.0": { - "type": "package", - "dependencies": { - "DnsClient": "1.6.1", - "Microsoft.Extensions.Logging.Abstractions": "2.0.0", - "MongoDB.Bson": "3.5.0", - "SharpCompress": "0.30.1", - "Snappier": "1.0.0", - "System.Buffers": "4.5.1", - "ZstdSharp.Port": "0.7.3" - }, - "compile": { - "lib/net6.0/MongoDB.Driver.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/MongoDB.Driver.dll": { - "related": ".xml" - } - } - }, - "Newtonsoft.Json/13.0.4": { - "type": "package", - "compile": { - "lib/net6.0/Newtonsoft.Json.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Newtonsoft.Json.dll": { - "related": ".xml" - } - } - }, - "protobuf-net/3.2.56": { - "type": "package", - "dependencies": { - "protobuf-net.Core": "3.2.56" - }, - "compile": { - "lib/net8.0/protobuf-net.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/protobuf-net.dll": { - "related": ".xml" - } - } - }, - "protobuf-net.Core/3.2.56": { - "type": "package", - "compile": { - "lib/net8.0/protobuf-net.Core.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/protobuf-net.Core.dll": { - "related": ".xml" - } - } - }, - "SharpCompress/0.30.1": { - "type": "package", - "compile": { - "lib/net5.0/SharpCompress.dll": {} - }, - "runtime": { - "lib/net5.0/SharpCompress.dll": {} - } - }, - "Snappier/1.0.0": { - "type": "package", - "compile": { - "lib/net5.0/Snappier.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net5.0/Snappier.dll": { - "related": ".xml" - } - } - }, - "System.Buffers/4.5.1": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "System.IdentityModel.Tokens.Jwt/8.14.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "8.14.0", - "Microsoft.IdentityModel.Tokens": "8.14.0" - }, - "compile": { - "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": { - "related": ".xml" - } - } - }, - "System.Memory/4.5.5": { - "type": "package", - "compile": { - "ref/netcoreapp2.1/_._": {} - }, - "runtime": { - "lib/netcoreapp2.1/_._": {} - } - }, - "System.Runtime.CompilerServices.Unsafe/5.0.0": { - "type": "package", - "compile": { - "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": { - "related": ".xml" - } - } - }, - "System.Security.AccessControl/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - }, - "compile": { - "ref/netstandard2.0/System.Security.AccessControl.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.Security.AccessControl.dll": { - "related": ".xml" - } - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Principal.Windows/5.0.0": { - "type": "package", - "compile": { - "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.Security.Principal.Windows.dll": { - "related": ".xml" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "ZstdSharp.Port/0.7.3": { - "type": "package", - "compile": { - "lib/net7.0/ZstdSharp.dll": {} - }, - "runtime": { - "lib/net7.0/ZstdSharp.dll": {} - } - }, - "ThirdParty/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v8.0", - "compile": { - "bin/placeholder/ThirdParty.dll": {} - }, - "runtime": { - "bin/placeholder/ThirdParty.dll": {} - } - } - } - }, - "libraries": { - "CommandLineParser/2.9.1": { - "sha512": "OE0sl1/sQ37bjVsPKKtwQlWDgqaxWgtme3xZz7JssWUzg5JpMIyHgCTY9MVMxOg48fJ1AgGT3tgdH5m/kQ5xhA==", - "type": "package", - "path": "commandlineparser/2.9.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "CommandLine20.png", - "License.md", - "README.md", - "commandlineparser.2.9.1.nupkg.sha512", - "commandlineparser.nuspec", - "lib/net40/CommandLine.dll", - "lib/net40/CommandLine.xml", - "lib/net45/CommandLine.dll", - "lib/net45/CommandLine.xml", - "lib/net461/CommandLine.dll", - "lib/net461/CommandLine.xml", - "lib/netstandard2.0/CommandLine.dll", - "lib/netstandard2.0/CommandLine.xml" - ] - }, - "DnsClient/1.6.1": { - "sha512": "4H/f2uYJOZ+YObZjpY9ABrKZI+JNw3uizp6oMzTXwDw6F+2qIPhpRl/1t68O/6e98+vqNiYGu+lswmwdYUy3gg==", - "type": "package", - "path": "dnsclient/1.6.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "dnsclient.1.6.1.nupkg.sha512", - "dnsclient.nuspec", - "icon.png", - "lib/net45/DnsClient.dll", - "lib/net45/DnsClient.xml", - "lib/net471/DnsClient.dll", - "lib/net471/DnsClient.xml", - "lib/net5.0/DnsClient.dll", - "lib/net5.0/DnsClient.xml", - "lib/netstandard1.3/DnsClient.dll", - "lib/netstandard1.3/DnsClient.xml", - "lib/netstandard2.0/DnsClient.dll", - "lib/netstandard2.0/DnsClient.xml", - "lib/netstandard2.1/DnsClient.dll", - "lib/netstandard2.1/DnsClient.xml" - ] - }, - "Fantasy-Net/2025.2.0": { - "sha512": "vCkduwxkMlH8GozyS+ZlWGLC4nGjFGaL13Ah4w5HL55XAJaAhe+RX+gbSRNBeJf1Uu0cjG2MgVyS4NX7bXdN4g==", - "type": "package", - "path": "fantasy-net/2025.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE", - "README.md", - "analyzers/dotnet/cs/Fantasy.SourceGenerator.dll", - "build/Fantasy-Net.props", - "build/Fantasy-Net.targets", - "build/Fantasy.config", - "build/Fantasy.xsd", - "buildTransitive/Fantasy-Net.targets", - "buildTransitive/Fantasy.config", - "buildTransitive/Fantasy.xsd", - "fantasy-net.2025.2.0.nupkg.sha512", - "fantasy-net.nuspec", - "icon.png", - "lib/net8.0/Fantasy-Net.dll", - "lib/net9.0/Fantasy-Net.dll" - ] - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { - "sha512": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", - "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512", - "microsoft.extensions.dependencyinjection.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging.Abstractions/8.0.0": { - "sha512": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", - "type": "package", - "path": "microsoft.extensions.logging.abstractions/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", - "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", - "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", - "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", - "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", - "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", - "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512", - "microsoft.extensions.logging.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.IdentityModel.Abstractions/8.14.0": { - "sha512": "iwbCpSjD3ehfTwBhtSNEtKPK0ICun6ov7Ibx6ISNA9bfwIyzI2Siwyi9eJFCJBwxowK9xcA1mj+jBWiigeqgcQ==", - "type": "package", - "path": "microsoft.identitymodel.abstractions/8.14.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net462/Microsoft.IdentityModel.Abstractions.dll", - "lib/net462/Microsoft.IdentityModel.Abstractions.xml", - "lib/net472/Microsoft.IdentityModel.Abstractions.dll", - "lib/net472/Microsoft.IdentityModel.Abstractions.xml", - "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml", - "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/net8.0/Microsoft.IdentityModel.Abstractions.xml", - "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/net9.0/Microsoft.IdentityModel.Abstractions.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml", - "microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512", - "microsoft.identitymodel.abstractions.nuspec" - ] - }, - "Microsoft.IdentityModel.JsonWebTokens/8.14.0": { - "sha512": "4jOpiA4THdtpLyMdAb24dtj7+6GmvhOhxf5XHLYWmPKF8ApEnApal1UnJsKO4HxUWRXDA6C4WQVfYyqsRhpNpQ==", - "type": "package", - "path": "microsoft.identitymodel.jsonwebtokens/8.14.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "microsoft.identitymodel.jsonwebtokens.8.14.0.nupkg.sha512", - "microsoft.identitymodel.jsonwebtokens.nuspec" - ] - }, - "Microsoft.IdentityModel.Logging/8.14.0": { - "sha512": "eqqnemdW38CKZEHS6diA50BV94QICozDZEvSrsvN3SJXUFwVB9gy+/oz76gldP7nZliA16IglXjXTCTdmU/Ejg==", - "type": "package", - "path": "microsoft.identitymodel.logging/8.14.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net462/Microsoft.IdentityModel.Logging.dll", - "lib/net462/Microsoft.IdentityModel.Logging.xml", - "lib/net472/Microsoft.IdentityModel.Logging.dll", - "lib/net472/Microsoft.IdentityModel.Logging.xml", - "lib/net6.0/Microsoft.IdentityModel.Logging.dll", - "lib/net6.0/Microsoft.IdentityModel.Logging.xml", - "lib/net8.0/Microsoft.IdentityModel.Logging.dll", - "lib/net8.0/Microsoft.IdentityModel.Logging.xml", - "lib/net9.0/Microsoft.IdentityModel.Logging.dll", - "lib/net9.0/Microsoft.IdentityModel.Logging.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", - "microsoft.identitymodel.logging.8.14.0.nupkg.sha512", - "microsoft.identitymodel.logging.nuspec" - ] - }, - "Microsoft.IdentityModel.Tokens/8.14.0": { - "sha512": "lKIZiBiGd36k02TCdMHp1KlNWisyIvQxcYJvIkz7P4gSQ9zi8dgh6S5Grj8NNG7HWYIPfQymGyoZ6JB5d1Lo1g==", - "type": "package", - "path": "microsoft.identitymodel.tokens/8.14.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net462/Microsoft.IdentityModel.Tokens.dll", - "lib/net462/Microsoft.IdentityModel.Tokens.xml", - "lib/net472/Microsoft.IdentityModel.Tokens.dll", - "lib/net472/Microsoft.IdentityModel.Tokens.xml", - "lib/net6.0/Microsoft.IdentityModel.Tokens.dll", - "lib/net6.0/Microsoft.IdentityModel.Tokens.xml", - "lib/net8.0/Microsoft.IdentityModel.Tokens.dll", - "lib/net8.0/Microsoft.IdentityModel.Tokens.xml", - "lib/net9.0/Microsoft.IdentityModel.Tokens.dll", - "lib/net9.0/Microsoft.IdentityModel.Tokens.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", - "microsoft.identitymodel.tokens.8.14.0.nupkg.sha512", - "microsoft.identitymodel.tokens.nuspec" - ] - }, - "Microsoft.NETCore.Platforms/5.0.0": { - "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", - "type": "package", - "path": "microsoft.netcore.platforms/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netstandard1.0/_._", - "microsoft.netcore.platforms.5.0.0.nupkg.sha512", - "microsoft.netcore.platforms.nuspec", - "runtime.json", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Win32.Registry/5.0.0": { - "sha512": "dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", - "type": "package", - "path": "microsoft.win32.registry/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/Microsoft.Win32.Registry.dll", - "lib/net461/Microsoft.Win32.Registry.dll", - "lib/net461/Microsoft.Win32.Registry.xml", - "lib/netstandard1.3/Microsoft.Win32.Registry.dll", - "lib/netstandard2.0/Microsoft.Win32.Registry.dll", - "lib/netstandard2.0/Microsoft.Win32.Registry.xml", - "microsoft.win32.registry.5.0.0.nupkg.sha512", - "microsoft.win32.registry.nuspec", - "ref/net46/Microsoft.Win32.Registry.dll", - "ref/net461/Microsoft.Win32.Registry.dll", - "ref/net461/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/Microsoft.Win32.Registry.dll", - "ref/netstandard1.3/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", - "ref/netstandard2.0/Microsoft.Win32.Registry.dll", - "ref/netstandard2.0/Microsoft.Win32.Registry.xml", - "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", - "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "MongoDB.Bson/3.5.0": { - "sha512": "JGNK6BanLDEifgkvPLqVFCPus5EDCy416pxf1dxUBRSVd3D9+NB3AvMVX190eXlk5/UXuCxpsQv7jWfNKvppBQ==", - "type": "package", - "path": "mongodb.bson/3.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net472/MongoDB.Bson.dll", - "lib/net472/MongoDB.Bson.xml", - "lib/net6.0/MongoDB.Bson.dll", - "lib/net6.0/MongoDB.Bson.xml", - "lib/netstandard2.1/MongoDB.Bson.dll", - "lib/netstandard2.1/MongoDB.Bson.xml", - "mongodb.bson.3.5.0.nupkg.sha512", - "mongodb.bson.nuspec", - "packageIcon.png" - ] - }, - "MongoDB.Driver/3.5.0": { - "sha512": "ST90u7psyMkNNOWFgSkexsrB3kPn7Ynl2DlMFj2rJyYuc6SIxjmzu4ufy51yzM+cPVE1SvVcdb5UFobrRw6cMg==", - "type": "package", - "path": "mongodb.driver/3.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net472/MongoDB.Driver.dll", - "lib/net472/MongoDB.Driver.xml", - "lib/net6.0/MongoDB.Driver.dll", - "lib/net6.0/MongoDB.Driver.xml", - "lib/netstandard2.1/MongoDB.Driver.dll", - "lib/netstandard2.1/MongoDB.Driver.xml", - "mongodb.driver.3.5.0.nupkg.sha512", - "mongodb.driver.nuspec", - "packageIcon.png" - ] - }, - "Newtonsoft.Json/13.0.4": { - "sha512": "pdgNNMai3zv51W5aq268sujXUyx7SNdE2bj1wZcWjAQrKMFZV260lbqYop1d2GM67JI1huLRwxo9ZqnfF/lC6A==", - "type": "package", - "path": "newtonsoft.json/13.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.md", - "README.md", - "lib/net20/Newtonsoft.Json.dll", - "lib/net20/Newtonsoft.Json.xml", - "lib/net35/Newtonsoft.Json.dll", - "lib/net35/Newtonsoft.Json.xml", - "lib/net40/Newtonsoft.Json.dll", - "lib/net40/Newtonsoft.Json.xml", - "lib/net45/Newtonsoft.Json.dll", - "lib/net45/Newtonsoft.Json.xml", - "lib/net6.0/Newtonsoft.Json.dll", - "lib/net6.0/Newtonsoft.Json.xml", - "lib/netstandard1.0/Newtonsoft.Json.dll", - "lib/netstandard1.0/Newtonsoft.Json.xml", - "lib/netstandard1.3/Newtonsoft.Json.dll", - "lib/netstandard1.3/Newtonsoft.Json.xml", - "lib/netstandard2.0/Newtonsoft.Json.dll", - "lib/netstandard2.0/Newtonsoft.Json.xml", - "newtonsoft.json.13.0.4.nupkg.sha512", - "newtonsoft.json.nuspec", - "packageIcon.png" - ] - }, - "protobuf-net/3.2.56": { - "sha512": "4IPJeTYAMNewlN8MDaFkcmR/9hLhJeo9eARnTh104zh7mf+vXT2gu5MUfUnkSQU+CH578Q6vcdU7LQDQPG6eaw==", - "type": "package", - "path": "protobuf-net/3.2.56", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net462/protobuf-net.dll", - "lib/net462/protobuf-net.xml", - "lib/net8.0/protobuf-net.dll", - "lib/net8.0/protobuf-net.xml", - "lib/netstandard2.0/protobuf-net.dll", - "lib/netstandard2.0/protobuf-net.xml", - "lib/netstandard2.1/protobuf-net.dll", - "lib/netstandard2.1/protobuf-net.xml", - "protobuf-net.3.2.56.nupkg.sha512", - "protobuf-net.nuspec", - "protobuf-net.png", - "readme.md" - ] - }, - "protobuf-net.Core/3.2.56": { - "sha512": "d6QOukTpDzs7zZv9tPnBZMtvHDNeHJQXUhMx54g4urUQsXK3oo9U70H9HvklYq7hlQ4A7AHJl7EVEqyCXXIl8Q==", - "type": "package", - "path": "protobuf-net.core/3.2.56", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net462/protobuf-net.Core.dll", - "lib/net462/protobuf-net.Core.xml", - "lib/net8.0/protobuf-net.Core.dll", - "lib/net8.0/protobuf-net.Core.xml", - "lib/netstandard2.0/protobuf-net.Core.dll", - "lib/netstandard2.0/protobuf-net.Core.xml", - "lib/netstandard2.1/protobuf-net.Core.dll", - "lib/netstandard2.1/protobuf-net.Core.xml", - "protobuf-net.core.3.2.56.nupkg.sha512", - "protobuf-net.core.nuspec", - "protobuf-net.png", - "readme.md" - ] - }, - "SharpCompress/0.30.1": { - "sha512": "XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==", - "type": "package", - "path": "sharpcompress/0.30.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net461/SharpCompress.dll", - "lib/net5.0/SharpCompress.dll", - "lib/netcoreapp3.1/SharpCompress.dll", - "lib/netstandard2.0/SharpCompress.dll", - "lib/netstandard2.1/SharpCompress.dll", - "sharpcompress.0.30.1.nupkg.sha512", - "sharpcompress.nuspec" - ] - }, - "Snappier/1.0.0": { - "sha512": "rFtK2KEI9hIe8gtx3a0YDXdHOpedIf9wYCEYtBEmtlyiWVX3XlCNV03JrmmAi/Cdfn7dxK+k0sjjcLv4fpHnqA==", - "type": "package", - "path": "snappier/1.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "COPYING.txt", - "lib/net5.0/Snappier.dll", - "lib/net5.0/Snappier.xml", - "lib/netcoreapp3.0/Snappier.dll", - "lib/netcoreapp3.0/Snappier.xml", - "lib/netstandard2.0/Snappier.dll", - "lib/netstandard2.0/Snappier.xml", - "lib/netstandard2.1/Snappier.dll", - "lib/netstandard2.1/Snappier.xml", - "snappier.1.0.0.nupkg.sha512", - "snappier.nuspec" - ] - }, - "System.Buffers/4.5.1": { - "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", - "type": "package", - "path": "system.buffers/4.5.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Buffers.dll", - "lib/net461/System.Buffers.xml", - "lib/netcoreapp2.0/_._", - "lib/netstandard1.1/System.Buffers.dll", - "lib/netstandard1.1/System.Buffers.xml", - "lib/netstandard2.0/System.Buffers.dll", - "lib/netstandard2.0/System.Buffers.xml", - "lib/uap10.0.16299/_._", - "ref/net45/System.Buffers.dll", - "ref/net45/System.Buffers.xml", - "ref/netcoreapp2.0/_._", - "ref/netstandard1.1/System.Buffers.dll", - "ref/netstandard1.1/System.Buffers.xml", - "ref/netstandard2.0/System.Buffers.dll", - "ref/netstandard2.0/System.Buffers.xml", - "ref/uap10.0.16299/_._", - "system.buffers.4.5.1.nupkg.sha512", - "system.buffers.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.IdentityModel.Tokens.Jwt/8.14.0": { - "sha512": "EYGgN/S+HK7S6F3GaaPLFAfK0UzMrkXFyWCvXpQWFYmZln3dqtbyIO7VuTM/iIIPMzkelg8ZLlBPvMhxj6nOAA==", - "type": "package", - "path": "system.identitymodel.tokens.jwt/8.14.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net462/System.IdentityModel.Tokens.Jwt.dll", - "lib/net462/System.IdentityModel.Tokens.Jwt.xml", - "lib/net472/System.IdentityModel.Tokens.Jwt.dll", - "lib/net472/System.IdentityModel.Tokens.Jwt.xml", - "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll", - "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml", - "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll", - "lib/net8.0/System.IdentityModel.Tokens.Jwt.xml", - "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll", - "lib/net9.0/System.IdentityModel.Tokens.Jwt.xml", - "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", - "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", - "system.identitymodel.tokens.jwt.8.14.0.nupkg.sha512", - "system.identitymodel.tokens.jwt.nuspec" - ] - }, - "System.Memory/4.5.5": { - "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", - "type": "package", - "path": "system.memory/4.5.5", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Memory.dll", - "lib/net461/System.Memory.xml", - "lib/netcoreapp2.1/_._", - "lib/netstandard1.1/System.Memory.dll", - "lib/netstandard1.1/System.Memory.xml", - "lib/netstandard2.0/System.Memory.dll", - "lib/netstandard2.0/System.Memory.xml", - "ref/netcoreapp2.1/_._", - "system.memory.4.5.5.nupkg.sha512", - "system.memory.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Runtime.CompilerServices.Unsafe/5.0.0": { - "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==", - "type": "package", - "path": "system.runtime.compilerservices.unsafe/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net45/System.Runtime.CompilerServices.Unsafe.dll", - "lib/net45/System.Runtime.CompilerServices.Unsafe.xml", - "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll", - "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml", - "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", - "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", - "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", - "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", - "ref/net461/System.Runtime.CompilerServices.Unsafe.dll", - "ref/net461/System.Runtime.CompilerServices.Unsafe.xml", - "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", - "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", - "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", - "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", - "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll", - "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml", - "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512", - "system.runtime.compilerservices.unsafe.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Security.AccessControl/5.0.0": { - "sha512": "dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", - "type": "package", - "path": "system.security.accesscontrol/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/System.Security.AccessControl.dll", - "lib/net461/System.Security.AccessControl.dll", - "lib/net461/System.Security.AccessControl.xml", - "lib/netstandard1.3/System.Security.AccessControl.dll", - "lib/netstandard2.0/System.Security.AccessControl.dll", - "lib/netstandard2.0/System.Security.AccessControl.xml", - "lib/uap10.0.16299/_._", - "ref/net46/System.Security.AccessControl.dll", - "ref/net461/System.Security.AccessControl.dll", - "ref/net461/System.Security.AccessControl.xml", - "ref/netstandard1.3/System.Security.AccessControl.dll", - "ref/netstandard1.3/System.Security.AccessControl.xml", - "ref/netstandard1.3/de/System.Security.AccessControl.xml", - "ref/netstandard1.3/es/System.Security.AccessControl.xml", - "ref/netstandard1.3/fr/System.Security.AccessControl.xml", - "ref/netstandard1.3/it/System.Security.AccessControl.xml", - "ref/netstandard1.3/ja/System.Security.AccessControl.xml", - "ref/netstandard1.3/ko/System.Security.AccessControl.xml", - "ref/netstandard1.3/ru/System.Security.AccessControl.xml", - "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", - "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", - "ref/netstandard2.0/System.Security.AccessControl.dll", - "ref/netstandard2.0/System.Security.AccessControl.xml", - "ref/uap10.0.16299/_._", - "runtimes/win/lib/net46/System.Security.AccessControl.dll", - "runtimes/win/lib/net461/System.Security.AccessControl.dll", - "runtimes/win/lib/net461/System.Security.AccessControl.xml", - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", - "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", - "runtimes/win/lib/uap10.0.16299/_._", - "system.security.accesscontrol.5.0.0.nupkg.sha512", - "system.security.accesscontrol.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Security.Principal.Windows/5.0.0": { - "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", - "type": "package", - "path": "system.security.principal.windows/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/System.Security.Principal.Windows.dll", - "lib/net461/System.Security.Principal.Windows.dll", - "lib/net461/System.Security.Principal.Windows.xml", - "lib/netstandard1.3/System.Security.Principal.Windows.dll", - "lib/netstandard2.0/System.Security.Principal.Windows.dll", - "lib/netstandard2.0/System.Security.Principal.Windows.xml", - "lib/uap10.0.16299/_._", - "ref/net46/System.Security.Principal.Windows.dll", - "ref/net461/System.Security.Principal.Windows.dll", - "ref/net461/System.Security.Principal.Windows.xml", - "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", - "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/System.Security.Principal.Windows.dll", - "ref/netstandard1.3/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", - "ref/netstandard2.0/System.Security.Principal.Windows.dll", - "ref/netstandard2.0/System.Security.Principal.Windows.xml", - "ref/uap10.0.16299/_._", - "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", - "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", - "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", - "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", - "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", - "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", - "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", - "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", - "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", - "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", - "runtimes/win/lib/uap10.0.16299/_._", - "system.security.principal.windows.5.0.0.nupkg.sha512", - "system.security.principal.windows.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "ZstdSharp.Port/0.7.3": { - "sha512": "U9Ix4l4cl58Kzz1rJzj5hoVTjmbx1qGMwzAcbv1j/d3NzrFaESIurQyg+ow4mivCgkE3S413y+U9k4WdnEIkRA==", - "type": "package", - "path": "zstdsharp.port/0.7.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net461/ZstdSharp.dll", - "lib/net5.0/ZstdSharp.dll", - "lib/net6.0/ZstdSharp.dll", - "lib/net7.0/ZstdSharp.dll", - "lib/netcoreapp3.1/ZstdSharp.dll", - "lib/netstandard2.0/ZstdSharp.dll", - "lib/netstandard2.1/ZstdSharp.dll", - "zstdsharp.port.0.7.3.nupkg.sha512", - "zstdsharp.port.nuspec" - ] - }, - "ThirdParty/1.0.0": { - "type": "project", - "path": "../ThirdParty/ThirdParty.csproj", - "msbuildProject": "../ThirdParty/ThirdParty.csproj" - } - }, - "projectFileDependencyGroups": { - "net9.0": [ - "Fantasy-Net >= 2025.2.0", - "Microsoft.IdentityModel.Tokens >= 8.14.0", - "System.IdentityModel.Tokens.Jwt >= 8.14.0", - "ThirdParty >= 1.0.0" - ] - }, - "packageFolders": { - "C:\\Users\\FIREBAT\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\work\\Fishing2Server\\Entity\\Entity.csproj", - "projectName": "Entity", - "projectPath": "D:\\work\\Fishing2Server\\Entity\\Entity.csproj", - "packagesPath": "C:\\Users\\FIREBAT\\.nuget\\packages\\", - "outputPath": "D:\\work\\Fishing2Server\\Entity\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\FIREBAT\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net9.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net9.0": { - "targetAlias": "net9.0", - "projectReferences": { - "D:\\work\\Fishing2Server\\ThirdParty\\ThirdParty.csproj": { - "projectPath": "D:\\work\\Fishing2Server\\ThirdParty\\ThirdParty.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "direct" - }, - "SdkAnalysisLevel": "9.0.300" - }, - "frameworks": { - "net9.0": { - "targetAlias": "net9.0", - "dependencies": { - "Fantasy-Net": { - "target": "Package", - "version": "[2025.2.0, )" - }, - "Microsoft.IdentityModel.Tokens": { - "target": "Package", - "version": "[8.14.0, )" - }, - "System.IdentityModel.Tokens.Jwt": { - "target": "Package", - "version": "[8.14.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/Entity/obj/project.nuget.cache b/Entity/obj/project.nuget.cache deleted file mode 100644 index 2b32b07..0000000 --- a/Entity/obj/project.nuget.cache +++ /dev/null @@ -1,34 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "5DJdEeWOOl4=", - "success": true, - "projectFilePath": "D:\\work\\Fishing2Server\\Entity\\Entity.csproj", - "expectedPackageFiles": [ - "C:\\Users\\FIREBAT\\.nuget\\packages\\commandlineparser\\2.9.1\\commandlineparser.2.9.1.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\dnsclient\\1.6.1\\dnsclient.1.6.1.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\fantasy-net\\2025.2.0\\fantasy-net.2025.2.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.0\\microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\8.0.0\\microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\microsoft.identitymodel.abstractions\\8.14.0\\microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\8.14.0\\microsoft.identitymodel.jsonwebtokens.8.14.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\microsoft.identitymodel.logging\\8.14.0\\microsoft.identitymodel.logging.8.14.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\microsoft.identitymodel.tokens\\8.14.0\\microsoft.identitymodel.tokens.8.14.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\microsoft.win32.registry\\5.0.0\\microsoft.win32.registry.5.0.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\mongodb.bson\\3.5.0\\mongodb.bson.3.5.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\mongodb.driver\\3.5.0\\mongodb.driver.3.5.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\newtonsoft.json\\13.0.4\\newtonsoft.json.13.0.4.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\protobuf-net\\3.2.56\\protobuf-net.3.2.56.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\protobuf-net.core\\3.2.56\\protobuf-net.core.3.2.56.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\sharpcompress\\0.30.1\\sharpcompress.0.30.1.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\snappier\\1.0.0\\snappier.1.0.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\system.identitymodel.tokens.jwt\\8.14.0\\system.identitymodel.tokens.jwt.8.14.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\system.memory\\4.5.5\\system.memory.4.5.5.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\5.0.0\\system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\system.security.accesscontrol\\5.0.0\\system.security.accesscontrol.5.0.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\zstdsharp.port\\0.7.3\\zstdsharp.port.0.7.3.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/Entity/obj/project.packagespec.json b/Entity/obj/project.packagespec.json deleted file mode 100644 index 4a69c86..0000000 --- a/Entity/obj/project.packagespec.json +++ /dev/null @@ -1 +0,0 @@ -"restore":{"projectUniqueName":"D:\\work\\Fishing2Server\\Entity\\Entity.csproj","projectName":"Entity","projectPath":"D:\\work\\Fishing2Server\\Entity\\Entity.csproj","outputPath":"D:\\work\\Fishing2Server\\Entity\\obj\\","projectStyle":"PackageReference","fallbackFolders":["C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"],"originalTargetFrameworks":["net9.0"],"sources":{"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net9.0":{"targetAlias":"net9.0","projectReferences":{"D:\\work\\Fishing2Server\\ThirdParty\\ThirdParty.csproj":{"projectPath":"D:\\work\\Fishing2Server\\ThirdParty\\ThirdParty.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"},"SdkAnalysisLevel":"9.0.300"}"frameworks":{"net9.0":{"targetAlias":"net9.0","dependencies":{"Fantasy-Net":{"target":"Package","version":"[2025.2.0, )"},"Microsoft.IdentityModel.Tokens":{"target":"Package","version":"[8.14.0, )"},"System.IdentityModel.Tokens.Jwt":{"target":"Package","version":"[8.14.0, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/Entity/obj/rider.project.model.nuget.info b/Entity/obj/rider.project.model.nuget.info deleted file mode 100644 index f10fabb..0000000 --- a/Entity/obj/rider.project.model.nuget.info +++ /dev/null @@ -1 +0,0 @@ -17628533859030116 \ No newline at end of file diff --git a/Entity/obj/rider.project.restore.info b/Entity/obj/rider.project.restore.info deleted file mode 100644 index 3a75255..0000000 --- a/Entity/obj/rider.project.restore.info +++ /dev/null @@ -1 +0,0 @@ -17628541514897177 \ No newline at end of file diff --git a/Hotfix/Authentication/Handler/C2A_LoginRequestHandler.cs b/Hotfix/Authentication/Handler/C2A_LoginRequestHandler.cs index c0ce6a7..4e08525 100644 --- a/Hotfix/Authentication/Handler/C2A_LoginRequestHandler.cs +++ b/Hotfix/Authentication/Handler/C2A_LoginRequestHandler.cs @@ -12,7 +12,7 @@ public class C2A_LoginRequestHandler : MessageRPC +{ + protected override async FTask Run(Player entity, C2Game_RigChangeRequest request, + Game2C_RigChangeResponse response, Action reply) + { + var itemContainer = entity.GetComponent(); + if (itemContainer == null) + { + response.ErrorCode = ErrorCode.ErrArgs; + return; + } + + if (!itemContainer.Items.TryGetValue(request.ItemId, out var item)) + { + response.ErrorCode = ErrorCode.ErrArgs; + return; + } + + if (request.IsAdd) + { + //安装配件需要检查配件是否已被使用 + var usable = true; + + foreach (var bindInfo in itemContainer.Binding) + { + if (bindInfo.Value.Any(useId => useId == request.RigId)) + { + usable = false; + } + + if (!usable) break; + } + + if (!usable) + { + response.ErrorCode = ErrorCode.ErrArgs; + return; + } + } + + + //检查是否可用配件 + if (!itemContainer.Binding.TryGetValue(item.Id, out var list)) + { + list = new List(); + itemContainer.Binding[item.Id] = list; + } + + if (request.IsAdd) + { + if (request.OldRigId > 0) + { + if (list.Contains(request.OldRigId)) + { + list.Remove(request.OldRigId); + } + } + + list.Add(request.RigId); + } + else + { + list.Remove(request.RigId); + } + + await itemContainer.Save(); + response.Rigs = itemContainer.GetRigInfo(request.ItemId); + } +} \ No newline at end of file diff --git a/Hotfix/Game/Item/PlayerItemContainerComponentSystem.cs b/Hotfix/Game/Item/PlayerItemContainerComponentSystem.cs index 4e94425..111aeff 100644 --- a/Hotfix/Game/Item/PlayerItemContainerComponentSystem.cs +++ b/Hotfix/Game/Item/PlayerItemContainerComponentSystem.cs @@ -120,7 +120,8 @@ public static class PlayerItemContainerComponentSystem await self.Save(); } - public static async FTask Add(this PlayerItemContainerComponent self, uint configId, int count, bool needSave = true) + public static async FTask Add(this PlayerItemContainerComponent self, uint configId, int count, + bool needSave = true) { var item = ItemFactory.Create(self.Scene, configId, count); self.Items.Add(item.Id, item); @@ -159,11 +160,29 @@ public static class PlayerItemContainerComponentSystem // // return ret; // } - + + + public static ItemBindInfo GetRigInfo(this PlayerItemContainerComponent self, long id) + { + if (self.Binding.TryGetValue(id, out var info)) + { + ItemBindInfo gearInfo = new ItemBindInfo(); + gearInfo.Item = id; + if (info != null) + { + gearInfo.BindItems.AddRange(info); + } + + return gearInfo; + } + + return new ItemBindInfo() { Item = id }; + } + public static List GetRigInfos(this PlayerItemContainerComponent self) { - List ret = new List(self.FishingRig.Count); - foreach (var (rod, rigs) in self.FishingRig) + List ret = new List(self.Binding.Count); + foreach (var (rod, rigs) in self.Binding) { ItemBindInfo gearInfo = new ItemBindInfo(); gearInfo.Item = rod; @@ -174,6 +193,5 @@ public static class PlayerItemContainerComponentSystem return ret; } - #endregion } \ No newline at end of file diff --git a/Hotfix/Game/Player/Components/PlayerManageComponentSystem.cs b/Hotfix/Game/Player/Components/PlayerManageComponentSystem.cs index 6f18700..7fb734e 100644 --- a/Hotfix/Game/Player/Components/PlayerManageComponentSystem.cs +++ b/Hotfix/Game/Player/Components/PlayerManageComponentSystem.cs @@ -90,7 +90,7 @@ public static class PlayerManageComponentSystem } // account.Statistics.LoginTime = TimeHelper.Now; - account.SetTestData(); + // account.SetTestData(); await account.Save(); diff --git a/Hotfix/Game/Player/Entity/PlayerSystem.cs b/Hotfix/Game/Player/Entity/PlayerSystem.cs index 20cfc76..172eb1c 100644 --- a/Hotfix/Game/Player/Entity/PlayerSystem.cs +++ b/Hotfix/Game/Player/Entity/PlayerSystem.cs @@ -69,37 +69,37 @@ public static class PlayerSystem public static void SetTestData(this Player player) { - Dictionary> rigDic = new Dictionary>() - { - { 30001, [50001, 60001, 70002, 90001, 100001] }, - { 30002, [40001, 50001, 60001, 70002, 00001, 100001] }, - { 30003, [40001, 60001, 80001] } - }; - - var itemContainer = player.GetComponent(); - - //添加测试数据 - if (itemContainer != null && itemContainer.FishingRig.Count < 1) - { - foreach (var (rod, list) in rigDic) - { - if (itemContainer.GetFistItemByConfigId(rod, out var item) && item != null) - { - var childs = new List(); - foreach (var i in list) - { - if (itemContainer.GetFistItemByConfigId(i, out var itemChild) && itemChild != null) - { - childs.Add(itemChild.Id); - } - } - - itemContainer.FishingRig[item.Id] = childs; - } - } - - itemContainer.Save(); - } + // Dictionary> rigDic = new Dictionary>() + // { + // { 30001, [50001, 60001, 70002, 90001, 100001] }, + // { 30002, [40001, 50001, 60001, 70002, 00001, 100001] }, + // { 30003, [40001, 60001, 80001] } + // }; + // + // var itemContainer = player.GetComponent(); + // + // //添加测试数据 + // if (itemContainer != null && itemContainer.FishingRig.Count < 1) + // { + // foreach (var (rod, list) in rigDic) + // { + // if (itemContainer.GetFistItemByConfigId(rod, out var item) && item != null) + // { + // var childs = new List(); + // foreach (var i in list) + // { + // if (itemContainer.GetFistItemByConfigId(i, out var itemChild) && itemChild != null) + // { + // childs.Add(itemChild.Id); + // } + // } + // + // itemContainer.FishingRig[item.Id] = childs; + // } + // } + // + // itemContainer.Save(); + // } } diff --git a/Hotfix/Gate/Handler/Inner/S2G_ChatMessageHandler.cs b/Hotfix/Gate/Handler/Inner/S2G_ChatMessageHandler.cs index 546ef19..f837ae8 100644 --- a/Hotfix/Gate/Handler/Inner/S2G_ChatMessageHandler.cs +++ b/Hotfix/Gate/Handler/Inner/S2G_ChatMessageHandler.cs @@ -13,7 +13,7 @@ public class S2G_ChatMessageHandler : Route { var chatMessage = new S2C_Message() { - Message = message.Message, + Msg = message.Message, }; var idList = message.IdList; bool isAll = !(idList != null && idList.Count > 0); diff --git a/Hotfix/bin/Debug/net9.0/Entity.dll b/Hotfix/bin/Debug/net9.0/Entity.dll deleted file mode 100644 index e3649fb..0000000 Binary files a/Hotfix/bin/Debug/net9.0/Entity.dll and /dev/null differ diff --git a/Hotfix/bin/Debug/net9.0/Entity.pdb b/Hotfix/bin/Debug/net9.0/Entity.pdb deleted file mode 100644 index aa1be2e..0000000 Binary files a/Hotfix/bin/Debug/net9.0/Entity.pdb and /dev/null differ diff --git a/Hotfix/bin/Debug/net9.0/Fantasy.config b/Hotfix/bin/Debug/net9.0/Fantasy.config deleted file mode 100644 index b50d8ab..0000000 --- a/Hotfix/bin/Debug/net9.0/Fantasy.config +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Hotfix/bin/Debug/net9.0/Fantasy.xsd b/Hotfix/bin/Debug/net9.0/Fantasy.xsd deleted file mode 100644 index 6a64f66..0000000 --- a/Hotfix/bin/Debug/net9.0/Fantasy.xsd +++ /dev/null @@ -1,345 +0,0 @@ - - - - - - - Fantasy框架配置文件根元素 - - - - - - 配置表路径设置 - - - - - 网络运行时配置 - - - - - 会话运行时配置 - - - - - 服务器配置 - - - - - - - - - - - 配置表文件路径 - - - - - - - - - - 机器配置列表 - - - - - 进程配置列表 - - - - - 世界配置列表 - - - - - 场景配置列表 - - - - - 单位配置列表 - - - - - - - - - - - - - - - - 机器ID - - - - - 外网IP地址 - - - - - 外网绑定IP地址 - - - - - 内网绑定IP地址 - - - - - - - - - - - - - - - 进程ID - - - - - 所属机器ID - - - - - 启动分组 - - - - - - - - - - - - - - - - 数据库类型 - - - - - - - - - - - - - - - - - - 数据库名称 - - - - - 数据库连接字符串 - - - - - - - - - 世界中配置的数据库 - - - - - - - - 世界ID - - - - - 世界名称 - - - - - - - - - - - - - - - 场景ID - - - - - 进程配置ID - - - - - 世界配置ID - - - - - 场景运行模式 - - - - - - - - - - - - 场景类型字符串 - - - - - 网络协议类型 - - - - - - - - - - - - - - 外网端口 - - - - - 内网端口 - - - - - - - - - 服务器内部网络协议 - - - - - - - - - - - 消息体最大长度(字节),默认1048560字节(约1.02MB) - - - - - - - - - Session idle check timeout (in milliseconds) - - - - - Session idle check interval (in milliseconds) - - - - - - - - - - - - - - - - 单位字典数据 - - - - - - 单位ID - - - - - 单位名称 - - - - - 单位模型 - - - - - - - - - - - 字典键 - - - - - 字典值 - - - - - - - - \ No newline at end of file diff --git a/Hotfix/bin/Debug/net9.0/Hotfix.deps.json b/Hotfix/bin/Debug/net9.0/Hotfix.deps.json deleted file mode 100644 index 6032ae1..0000000 --- a/Hotfix/bin/Debug/net9.0/Hotfix.deps.json +++ /dev/null @@ -1,424 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v9.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v9.0": { - "Hotfix/1.0.0": { - "dependencies": { - "Entity": "1.0.0" - }, - "runtime": { - "Hotfix.dll": {} - } - }, - "CommandLineParser/2.9.1": { - "runtime": { - "lib/netstandard2.0/CommandLine.dll": { - "assemblyVersion": "2.9.1.0", - "fileVersion": "2.9.1.0" - } - } - }, - "DnsClient/1.6.1": { - "dependencies": { - "Microsoft.Win32.Registry": "5.0.0" - }, - "runtime": { - "lib/net5.0/DnsClient.dll": { - "assemblyVersion": "1.6.1.0", - "fileVersion": "1.6.1.0" - } - } - }, - "Fantasy-Net/2025.2.0": { - "dependencies": { - "CommandLineParser": "2.9.1", - "MongoDB.Bson": "3.5.0", - "MongoDB.Driver": "3.5.0", - "Newtonsoft.Json": "13.0.4", - "protobuf-net": "3.2.56" - }, - "runtime": { - "lib/net9.0/Fantasy-Net.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {}, - "Microsoft.Extensions.Logging.Abstractions/8.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" - } - }, - "Microsoft.IdentityModel.Abstractions/8.14.0": { - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { - "assemblyVersion": "8.14.0.0", - "fileVersion": "8.14.0.60815" - } - } - }, - "Microsoft.IdentityModel.JsonWebTokens/8.14.0": { - "dependencies": { - "Microsoft.IdentityModel.Tokens": "8.14.0" - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "assemblyVersion": "8.14.0.0", - "fileVersion": "8.14.0.60815" - } - } - }, - "Microsoft.IdentityModel.Logging/8.14.0": { - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "8.14.0" - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { - "assemblyVersion": "8.14.0.0", - "fileVersion": "8.14.0.60815" - } - } - }, - "Microsoft.IdentityModel.Tokens/8.14.0": { - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.IdentityModel.Logging": "8.14.0" - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { - "assemblyVersion": "8.14.0.0", - "fileVersion": "8.14.0.60815" - } - } - }, - "Microsoft.NETCore.Platforms/5.0.0": {}, - "Microsoft.Win32.Registry/5.0.0": { - "dependencies": { - "System.Security.AccessControl": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - } - }, - "MongoDB.Bson/3.5.0": { - "dependencies": { - "System.Memory": "4.5.5", - "System.Runtime.CompilerServices.Unsafe": "5.0.0" - }, - "runtime": { - "lib/net6.0/MongoDB.Bson.dll": { - "assemblyVersion": "3.5.0.0", - "fileVersion": "3.5.0.0" - } - } - }, - "MongoDB.Driver/3.5.0": { - "dependencies": { - "DnsClient": "1.6.1", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "MongoDB.Bson": "3.5.0", - "SharpCompress": "0.30.1", - "Snappier": "1.0.0", - "System.Buffers": "4.5.1", - "ZstdSharp.Port": "0.7.3" - }, - "runtime": { - "lib/net6.0/MongoDB.Driver.dll": { - "assemblyVersion": "3.5.0.0", - "fileVersion": "3.5.0.0" - } - } - }, - "Newtonsoft.Json/13.0.4": { - "runtime": { - "lib/net6.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.4.30916" - } - } - }, - "protobuf-net/3.2.56": { - "dependencies": { - "protobuf-net.Core": "3.2.56" - }, - "runtime": { - "lib/net8.0/protobuf-net.dll": { - "assemblyVersion": "3.0.0.0", - "fileVersion": "3.2.56.57311" - } - } - }, - "protobuf-net.Core/3.2.56": { - "runtime": { - "lib/net8.0/protobuf-net.Core.dll": { - "assemblyVersion": "3.0.0.0", - "fileVersion": "3.2.56.57311" - } - } - }, - "SharpCompress/0.30.1": { - "runtime": { - "lib/net5.0/SharpCompress.dll": { - "assemblyVersion": "0.30.1.0", - "fileVersion": "0.30.1.0" - } - } - }, - "Snappier/1.0.0": { - "runtime": { - "lib/net5.0/Snappier.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "System.Buffers/4.5.1": {}, - "System.IdentityModel.Tokens.Jwt/8.14.0": { - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "8.14.0", - "Microsoft.IdentityModel.Tokens": "8.14.0" - }, - "runtime": { - "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": { - "assemblyVersion": "8.14.0.0", - "fileVersion": "8.14.0.60815" - } - } - }, - "System.Memory/4.5.5": {}, - "System.Runtime.CompilerServices.Unsafe/5.0.0": {}, - "System.Security.AccessControl/5.0.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - } - }, - "System.Security.Principal.Windows/5.0.0": {}, - "ZstdSharp.Port/0.7.3": { - "runtime": { - "lib/net7.0/ZstdSharp.dll": { - "assemblyVersion": "0.7.3.0", - "fileVersion": "0.7.3.0" - } - } - }, - "Entity/1.0.0": { - "dependencies": { - "Fantasy-Net": "2025.2.0", - "Microsoft.IdentityModel.Tokens": "8.14.0", - "System.IdentityModel.Tokens.Jwt": "8.14.0", - "ThirdParty": "1.0.0" - }, - "runtime": { - "Entity.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "ThirdParty/1.0.0": { - "runtime": { - "ThirdParty.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - } - } - }, - "libraries": { - "Hotfix/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "CommandLineParser/2.9.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OE0sl1/sQ37bjVsPKKtwQlWDgqaxWgtme3xZz7JssWUzg5JpMIyHgCTY9MVMxOg48fJ1AgGT3tgdH5m/kQ5xhA==", - "path": "commandlineparser/2.9.1", - "hashPath": "commandlineparser.2.9.1.nupkg.sha512" - }, - "DnsClient/1.6.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4H/f2uYJOZ+YObZjpY9ABrKZI+JNw3uizp6oMzTXwDw6F+2qIPhpRl/1t68O/6e98+vqNiYGu+lswmwdYUy3gg==", - "path": "dnsclient/1.6.1", - "hashPath": "dnsclient.1.6.1.nupkg.sha512" - }, - "Fantasy-Net/2025.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vCkduwxkMlH8GozyS+ZlWGLC4nGjFGaL13Ah4w5HL55XAJaAhe+RX+gbSRNBeJf1Uu0cjG2MgVyS4NX7bXdN4g==", - "path": "fantasy-net/2025.2.0", - "hashPath": "fantasy-net.2025.2.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==", - "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", - "path": "microsoft.extensions.logging.abstractions/8.0.0", - "hashPath": "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Abstractions/8.14.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iwbCpSjD3ehfTwBhtSNEtKPK0ICun6ov7Ibx6ISNA9bfwIyzI2Siwyi9eJFCJBwxowK9xcA1mj+jBWiigeqgcQ==", - "path": "microsoft.identitymodel.abstractions/8.14.0", - "hashPath": "microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.JsonWebTokens/8.14.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4jOpiA4THdtpLyMdAb24dtj7+6GmvhOhxf5XHLYWmPKF8ApEnApal1UnJsKO4HxUWRXDA6C4WQVfYyqsRhpNpQ==", - "path": "microsoft.identitymodel.jsonwebtokens/8.14.0", - "hashPath": "microsoft.identitymodel.jsonwebtokens.8.14.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Logging/8.14.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eqqnemdW38CKZEHS6diA50BV94QICozDZEvSrsvN3SJXUFwVB9gy+/oz76gldP7nZliA16IglXjXTCTdmU/Ejg==", - "path": "microsoft.identitymodel.logging/8.14.0", - "hashPath": "microsoft.identitymodel.logging.8.14.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Tokens/8.14.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lKIZiBiGd36k02TCdMHp1KlNWisyIvQxcYJvIkz7P4gSQ9zi8dgh6S5Grj8NNG7HWYIPfQymGyoZ6JB5d1Lo1g==", - "path": "microsoft.identitymodel.tokens/8.14.0", - "hashPath": "microsoft.identitymodel.tokens.8.14.0.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", - "path": "microsoft.netcore.platforms/5.0.0", - "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512" - }, - "Microsoft.Win32.Registry/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", - "path": "microsoft.win32.registry/5.0.0", - "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512" - }, - "MongoDB.Bson/3.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JGNK6BanLDEifgkvPLqVFCPus5EDCy416pxf1dxUBRSVd3D9+NB3AvMVX190eXlk5/UXuCxpsQv7jWfNKvppBQ==", - "path": "mongodb.bson/3.5.0", - "hashPath": "mongodb.bson.3.5.0.nupkg.sha512" - }, - "MongoDB.Driver/3.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ST90u7psyMkNNOWFgSkexsrB3kPn7Ynl2DlMFj2rJyYuc6SIxjmzu4ufy51yzM+cPVE1SvVcdb5UFobrRw6cMg==", - "path": "mongodb.driver/3.5.0", - "hashPath": "mongodb.driver.3.5.0.nupkg.sha512" - }, - "Newtonsoft.Json/13.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pdgNNMai3zv51W5aq268sujXUyx7SNdE2bj1wZcWjAQrKMFZV260lbqYop1d2GM67JI1huLRwxo9ZqnfF/lC6A==", - "path": "newtonsoft.json/13.0.4", - "hashPath": "newtonsoft.json.13.0.4.nupkg.sha512" - }, - "protobuf-net/3.2.56": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4IPJeTYAMNewlN8MDaFkcmR/9hLhJeo9eARnTh104zh7mf+vXT2gu5MUfUnkSQU+CH578Q6vcdU7LQDQPG6eaw==", - "path": "protobuf-net/3.2.56", - "hashPath": "protobuf-net.3.2.56.nupkg.sha512" - }, - "protobuf-net.Core/3.2.56": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d6QOukTpDzs7zZv9tPnBZMtvHDNeHJQXUhMx54g4urUQsXK3oo9U70H9HvklYq7hlQ4A7AHJl7EVEqyCXXIl8Q==", - "path": "protobuf-net.core/3.2.56", - "hashPath": "protobuf-net.core.3.2.56.nupkg.sha512" - }, - "SharpCompress/0.30.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==", - "path": "sharpcompress/0.30.1", - "hashPath": "sharpcompress.0.30.1.nupkg.sha512" - }, - "Snappier/1.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rFtK2KEI9hIe8gtx3a0YDXdHOpedIf9wYCEYtBEmtlyiWVX3XlCNV03JrmmAi/Cdfn7dxK+k0sjjcLv4fpHnqA==", - "path": "snappier/1.0.0", - "hashPath": "snappier.1.0.0.nupkg.sha512" - }, - "System.Buffers/4.5.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", - "path": "system.buffers/4.5.1", - "hashPath": "system.buffers.4.5.1.nupkg.sha512" - }, - "System.IdentityModel.Tokens.Jwt/8.14.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EYGgN/S+HK7S6F3GaaPLFAfK0UzMrkXFyWCvXpQWFYmZln3dqtbyIO7VuTM/iIIPMzkelg8ZLlBPvMhxj6nOAA==", - "path": "system.identitymodel.tokens.jwt/8.14.0", - "hashPath": "system.identitymodel.tokens.jwt.8.14.0.nupkg.sha512" - }, - "System.Memory/4.5.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", - "path": "system.memory/4.5.5", - "hashPath": "system.memory.4.5.5.nupkg.sha512" - }, - "System.Runtime.CompilerServices.Unsafe/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==", - "path": "system.runtime.compilerservices.unsafe/5.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512" - }, - "System.Security.AccessControl/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", - "path": "system.security.accesscontrol/5.0.0", - "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512" - }, - "System.Security.Principal.Windows/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", - "path": "system.security.principal.windows/5.0.0", - "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" - }, - "ZstdSharp.Port/0.7.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-U9Ix4l4cl58Kzz1rJzj5hoVTjmbx1qGMwzAcbv1j/d3NzrFaESIurQyg+ow4mivCgkE3S413y+U9k4WdnEIkRA==", - "path": "zstdsharp.port/0.7.3", - "hashPath": "zstdsharp.port.0.7.3.nupkg.sha512" - }, - "Entity/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "ThirdParty/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/Hotfix/bin/Debug/net9.0/Hotfix.dll b/Hotfix/bin/Debug/net9.0/Hotfix.dll deleted file mode 100644 index 88aaba0..0000000 Binary files a/Hotfix/bin/Debug/net9.0/Hotfix.dll and /dev/null differ diff --git a/Hotfix/bin/Debug/net9.0/Hotfix.pdb b/Hotfix/bin/Debug/net9.0/Hotfix.pdb deleted file mode 100644 index cd22eb7..0000000 Binary files a/Hotfix/bin/Debug/net9.0/Hotfix.pdb and /dev/null differ diff --git a/Hotfix/bin/Debug/net9.0/ThirdParty.dll b/Hotfix/bin/Debug/net9.0/ThirdParty.dll deleted file mode 100644 index c68db15..0000000 Binary files a/Hotfix/bin/Debug/net9.0/ThirdParty.dll and /dev/null differ diff --git a/Hotfix/bin/Debug/net9.0/ThirdParty.pdb b/Hotfix/bin/Debug/net9.0/ThirdParty.pdb deleted file mode 100644 index 6d74378..0000000 Binary files a/Hotfix/bin/Debug/net9.0/ThirdParty.pdb and /dev/null differ diff --git a/Hotfix/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/Hotfix/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs deleted file mode 100644 index feda5e9..0000000 --- a/Hotfix/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")] diff --git a/Hotfix/obj/Debug/net9.0/Hotfix.AssemblyInfo.cs b/Hotfix/obj/Debug/net9.0/Hotfix.AssemblyInfo.cs deleted file mode 100644 index f92161d..0000000 --- a/Hotfix/obj/Debug/net9.0/Hotfix.AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -//------------------------------------------------------------------------------ -// -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 -// -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 -// -//------------------------------------------------------------------------------ - -using System; -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+7b10d4cb317c9f310649a9cb4afe3882d4b12624")] -[assembly: System.Reflection.AssemblyProductAttribute("Hotfix")] -[assembly: System.Reflection.AssemblyTitleAttribute("Hotfix")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// 由 MSBuild WriteCodeFragment 类生成。 - diff --git a/Hotfix/obj/Debug/net9.0/Hotfix.AssemblyInfoInputs.cache b/Hotfix/obj/Debug/net9.0/Hotfix.AssemblyInfoInputs.cache deleted file mode 100644 index 8cd76cb..0000000 --- a/Hotfix/obj/Debug/net9.0/Hotfix.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -1a6c20277d8c32971e19ca0e610451e7396ebd99499eddc93137e652e7e5490e diff --git a/Hotfix/obj/Debug/net9.0/Hotfix.GeneratedMSBuildEditorConfig.editorconfig b/Hotfix/obj/Debug/net9.0/Hotfix.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index b1b0734..0000000 --- a/Hotfix/obj/Debug/net9.0/Hotfix.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,15 +0,0 @@ -is_global = true -build_property.TargetFramework = net9.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = Hotfix -build_property.ProjectDir = D:\work\Fishing2Server\Hotfix\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.EffectiveAnalysisLevelStyle = 9.0 -build_property.EnableCodeStyleSeverity = diff --git a/Hotfix/obj/Debug/net9.0/Hotfix.GlobalUsings.g.cs b/Hotfix/obj/Debug/net9.0/Hotfix.GlobalUsings.g.cs deleted file mode 100644 index 8578f3d..0000000 --- a/Hotfix/obj/Debug/net9.0/Hotfix.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -global using global::System; -global using global::System.Collections.Generic; -global using global::System.IO; -global using global::System.Linq; -global using global::System.Net.Http; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/Hotfix/obj/Debug/net9.0/Hotfix.assets.cache b/Hotfix/obj/Debug/net9.0/Hotfix.assets.cache deleted file mode 100644 index d9f8097..0000000 Binary files a/Hotfix/obj/Debug/net9.0/Hotfix.assets.cache and /dev/null differ diff --git a/Hotfix/obj/Debug/net9.0/Hotfix.csproj.AssemblyReference.cache b/Hotfix/obj/Debug/net9.0/Hotfix.csproj.AssemblyReference.cache deleted file mode 100644 index 10cdce2..0000000 Binary files a/Hotfix/obj/Debug/net9.0/Hotfix.csproj.AssemblyReference.cache and /dev/null differ diff --git a/Hotfix/obj/Debug/net9.0/Hotfix.csproj.CoreCompileInputs.cache b/Hotfix/obj/Debug/net9.0/Hotfix.csproj.CoreCompileInputs.cache deleted file mode 100644 index e786331..0000000 --- a/Hotfix/obj/Debug/net9.0/Hotfix.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -41f40879fae108427ac2e9e835099cef2ff8300cd2385f9434498ed95c00e0de diff --git a/Hotfix/obj/Debug/net9.0/Hotfix.csproj.FileListAbsolute.txt b/Hotfix/obj/Debug/net9.0/Hotfix.csproj.FileListAbsolute.txt deleted file mode 100644 index ed45fa8..0000000 --- a/Hotfix/obj/Debug/net9.0/Hotfix.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,19 +0,0 @@ -D:\work\Fishing2ServerNew\Fishing2\Server\Hotfix\bin\Debug\net9.0\Fantasy.config -D:\work\Fishing2ServerNew\Fishing2\Server\Hotfix\bin\Debug\net9.0\Fantasy.xsd -D:\work\Fishing2ServerNew\Fishing2\Server\Hotfix\bin\Debug\net9.0\Hotfix.deps.json -D:\work\Fishing2ServerNew\Fishing2\Server\Hotfix\bin\Debug\net9.0\Hotfix.dll -D:\work\Fishing2ServerNew\Fishing2\Server\Hotfix\bin\Debug\net9.0\Hotfix.pdb -D:\work\Fishing2ServerNew\Fishing2\Server\Hotfix\bin\Debug\net9.0\Entity.dll -D:\work\Fishing2ServerNew\Fishing2\Server\Hotfix\bin\Debug\net9.0\Entity.pdb -D:\work\Fishing2ServerNew\Fishing2\Server\Hotfix\obj\Debug\net9.0\Hotfix.csproj.AssemblyReference.cache -D:\work\Fishing2ServerNew\Fishing2\Server\Hotfix\obj\Debug\net9.0\Hotfix.GeneratedMSBuildEditorConfig.editorconfig -D:\work\Fishing2ServerNew\Fishing2\Server\Hotfix\obj\Debug\net9.0\Hotfix.AssemblyInfoInputs.cache -D:\work\Fishing2ServerNew\Fishing2\Server\Hotfix\obj\Debug\net9.0\Hotfix.AssemblyInfo.cs -D:\work\Fishing2ServerNew\Fishing2\Server\Hotfix\obj\Debug\net9.0\Hotfix.csproj.CoreCompileInputs.cache -D:\work\Fishing2ServerNew\Fishing2\Server\Hotfix\obj\Debug\net9.0\Hotfix.csproj.Up2Date -D:\work\Fishing2ServerNew\Fishing2\Server\Hotfix\obj\Debug\net9.0\Hotfix.dll -D:\work\Fishing2ServerNew\Fishing2\Server\Hotfix\obj\Debug\net9.0\refint\Hotfix.dll -D:\work\Fishing2ServerNew\Fishing2\Server\Hotfix\obj\Debug\net9.0\Hotfix.pdb -D:\work\Fishing2ServerNew\Fishing2\Server\Hotfix\obj\Debug\net9.0\ref\Hotfix.dll -D:\work\Fishing2ServerNew\Fishing2\Server\Hotfix\bin\Debug\net9.0\ThirdParty.dll -D:\work\Fishing2ServerNew\Fishing2\Server\Hotfix\bin\Debug\net9.0\ThirdParty.pdb diff --git a/Hotfix/obj/Debug/net9.0/Hotfix.csproj.Up2Date b/Hotfix/obj/Debug/net9.0/Hotfix.csproj.Up2Date deleted file mode 100644 index e69de29..0000000 diff --git a/Hotfix/obj/Debug/net9.0/Hotfix.dll b/Hotfix/obj/Debug/net9.0/Hotfix.dll deleted file mode 100644 index 88aaba0..0000000 Binary files a/Hotfix/obj/Debug/net9.0/Hotfix.dll and /dev/null differ diff --git a/Hotfix/obj/Debug/net9.0/Hotfix.pdb b/Hotfix/obj/Debug/net9.0/Hotfix.pdb deleted file mode 100644 index cd22eb7..0000000 Binary files a/Hotfix/obj/Debug/net9.0/Hotfix.pdb and /dev/null differ diff --git a/Hotfix/obj/Debug/net9.0/ref/Hotfix.dll b/Hotfix/obj/Debug/net9.0/ref/Hotfix.dll deleted file mode 100644 index fadec29..0000000 Binary files a/Hotfix/obj/Debug/net9.0/ref/Hotfix.dll and /dev/null differ diff --git a/Hotfix/obj/Debug/net9.0/refint/Hotfix.dll b/Hotfix/obj/Debug/net9.0/refint/Hotfix.dll deleted file mode 100644 index fadec29..0000000 Binary files a/Hotfix/obj/Debug/net9.0/refint/Hotfix.dll and /dev/null differ diff --git a/Hotfix/obj/Hotfix.csproj.nuget.dgspec.json b/Hotfix/obj/Hotfix.csproj.nuget.dgspec.json deleted file mode 100644 index 992ac06..0000000 --- a/Hotfix/obj/Hotfix.csproj.nuget.dgspec.json +++ /dev/null @@ -1,225 +0,0 @@ -{ - "format": 1, - "restore": { - "D:\\work\\Fishing2Server\\Hotfix\\Hotfix.csproj": {} - }, - "projects": { - "D:\\work\\Fishing2Server\\Entity\\Entity.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\work\\Fishing2Server\\Entity\\Entity.csproj", - "projectName": "Entity", - "projectPath": "D:\\work\\Fishing2Server\\Entity\\Entity.csproj", - "packagesPath": "C:\\Users\\FIREBAT\\.nuget\\packages\\", - "outputPath": "D:\\work\\Fishing2Server\\Entity\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\FIREBAT\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net9.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net9.0": { - "targetAlias": "net9.0", - "projectReferences": { - "D:\\work\\Fishing2Server\\ThirdParty\\ThirdParty.csproj": { - "projectPath": "D:\\work\\Fishing2Server\\ThirdParty\\ThirdParty.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "direct" - }, - "SdkAnalysisLevel": "9.0.300" - }, - "frameworks": { - "net9.0": { - "targetAlias": "net9.0", - "dependencies": { - "Fantasy-Net": { - "target": "Package", - "version": "[2025.2.0, )" - }, - "Microsoft.IdentityModel.Tokens": { - "target": "Package", - "version": "[8.14.0, )" - }, - "System.IdentityModel.Tokens.Jwt": { - "target": "Package", - "version": "[8.14.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" - } - } - }, - "D:\\work\\Fishing2Server\\Hotfix\\Hotfix.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\work\\Fishing2Server\\Hotfix\\Hotfix.csproj", - "projectName": "Hotfix", - "projectPath": "D:\\work\\Fishing2Server\\Hotfix\\Hotfix.csproj", - "packagesPath": "C:\\Users\\FIREBAT\\.nuget\\packages\\", - "outputPath": "D:\\work\\Fishing2Server\\Hotfix\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\FIREBAT\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net9.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net9.0": { - "targetAlias": "net9.0", - "projectReferences": { - "D:\\work\\Fishing2Server\\Entity\\Entity.csproj": { - "projectPath": "D:\\work\\Fishing2Server\\Entity\\Entity.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "direct" - }, - "SdkAnalysisLevel": "9.0.300" - }, - "frameworks": { - "net9.0": { - "targetAlias": "net9.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" - } - } - }, - "D:\\work\\Fishing2Server\\ThirdParty\\ThirdParty.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\work\\Fishing2Server\\ThirdParty\\ThirdParty.csproj", - "projectName": "ThirdParty", - "projectPath": "D:\\work\\Fishing2Server\\ThirdParty\\ThirdParty.csproj", - "packagesPath": "C:\\Users\\FIREBAT\\.nuget\\packages\\", - "outputPath": "D:\\work\\Fishing2Server\\ThirdParty\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\FIREBAT\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net8.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net8.0": { - "targetAlias": "net8.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "direct" - }, - "SdkAnalysisLevel": "9.0.300" - }, - "frameworks": { - "net8.0": { - "targetAlias": "net8.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/Hotfix/obj/Hotfix.csproj.nuget.g.props b/Hotfix/obj/Hotfix.csproj.nuget.g.props deleted file mode 100644 index fbb082f..0000000 --- a/Hotfix/obj/Hotfix.csproj.nuget.g.props +++ /dev/null @@ -1,16 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\FIREBAT\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages - PackageReference - 6.14.0 - - - - - - \ No newline at end of file diff --git a/Hotfix/obj/Hotfix.csproj.nuget.g.targets b/Hotfix/obj/Hotfix.csproj.nuget.g.targets deleted file mode 100644 index eb7028d..0000000 --- a/Hotfix/obj/Hotfix.csproj.nuget.g.targets +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/Hotfix/obj/project.assets.json b/Hotfix/obj/project.assets.json deleted file mode 100644 index a67807c..0000000 --- a/Hotfix/obj/project.assets.json +++ /dev/null @@ -1,1218 +0,0 @@ -{ - "version": 3, - "targets": { - "net9.0": { - "CommandLineParser/2.9.1": { - "type": "package", - "compile": { - "lib/netstandard2.0/CommandLine.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/CommandLine.dll": { - "related": ".xml" - } - } - }, - "DnsClient/1.6.1": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Registry": "5.0.0" - }, - "compile": { - "lib/net5.0/DnsClient.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net5.0/DnsClient.dll": { - "related": ".xml" - } - } - }, - "Fantasy-Net/2025.2.0": { - "type": "package", - "dependencies": { - "CommandLineParser": "2.9.1", - "MongoDB.Bson": "3.5.0", - "MongoDB.Driver": "3.5.0", - "Newtonsoft.Json": "13.0.4", - "protobuf-net": "3.2.56" - }, - "compile": { - "lib/net9.0/Fantasy-Net.dll": {} - }, - "runtime": { - "lib/net9.0/Fantasy-Net.dll": {} - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ], - "build": { - "buildTransitive/Fantasy-Net.targets": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { - "type": "package", - "compile": { - "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/8.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" - }, - "compile": { - "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} - } - }, - "Microsoft.IdentityModel.Abstractions/8.14.0": { - "type": "package", - "compile": { - "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.JsonWebTokens/8.14.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Tokens": "8.14.0" - }, - "compile": { - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Logging/8.14.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "8.14.0" - }, - "compile": { - "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Tokens/8.14.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.IdentityModel.Logging": "8.14.0" - }, - "compile": { - "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { - "related": ".xml" - } - } - }, - "Microsoft.NETCore.Platforms/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.Win32.Registry/5.0.0": { - "type": "package", - "dependencies": { - "System.Security.AccessControl": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - }, - "compile": { - "ref/netstandard2.0/Microsoft.Win32.Registry.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { - "related": ".xml" - } - }, - "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "MongoDB.Bson/3.5.0": { - "type": "package", - "dependencies": { - "System.Memory": "4.5.5", - "System.Runtime.CompilerServices.Unsafe": "5.0.0" - }, - "compile": { - "lib/net6.0/MongoDB.Bson.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/MongoDB.Bson.dll": { - "related": ".xml" - } - } - }, - "MongoDB.Driver/3.5.0": { - "type": "package", - "dependencies": { - "DnsClient": "1.6.1", - "Microsoft.Extensions.Logging.Abstractions": "2.0.0", - "MongoDB.Bson": "3.5.0", - "SharpCompress": "0.30.1", - "Snappier": "1.0.0", - "System.Buffers": "4.5.1", - "ZstdSharp.Port": "0.7.3" - }, - "compile": { - "lib/net6.0/MongoDB.Driver.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/MongoDB.Driver.dll": { - "related": ".xml" - } - } - }, - "Newtonsoft.Json/13.0.4": { - "type": "package", - "compile": { - "lib/net6.0/Newtonsoft.Json.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Newtonsoft.Json.dll": { - "related": ".xml" - } - } - }, - "protobuf-net/3.2.56": { - "type": "package", - "dependencies": { - "protobuf-net.Core": "3.2.56" - }, - "compile": { - "lib/net8.0/protobuf-net.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/protobuf-net.dll": { - "related": ".xml" - } - } - }, - "protobuf-net.Core/3.2.56": { - "type": "package", - "compile": { - "lib/net8.0/protobuf-net.Core.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/protobuf-net.Core.dll": { - "related": ".xml" - } - } - }, - "SharpCompress/0.30.1": { - "type": "package", - "compile": { - "lib/net5.0/SharpCompress.dll": {} - }, - "runtime": { - "lib/net5.0/SharpCompress.dll": {} - } - }, - "Snappier/1.0.0": { - "type": "package", - "compile": { - "lib/net5.0/Snappier.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net5.0/Snappier.dll": { - "related": ".xml" - } - } - }, - "System.Buffers/4.5.1": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "System.IdentityModel.Tokens.Jwt/8.14.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "8.14.0", - "Microsoft.IdentityModel.Tokens": "8.14.0" - }, - "compile": { - "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": { - "related": ".xml" - } - } - }, - "System.Memory/4.5.5": { - "type": "package", - "compile": { - "ref/netcoreapp2.1/_._": {} - }, - "runtime": { - "lib/netcoreapp2.1/_._": {} - } - }, - "System.Runtime.CompilerServices.Unsafe/5.0.0": { - "type": "package", - "compile": { - "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": { - "related": ".xml" - } - } - }, - "System.Security.AccessControl/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - }, - "compile": { - "ref/netstandard2.0/System.Security.AccessControl.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.Security.AccessControl.dll": { - "related": ".xml" - } - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Principal.Windows/5.0.0": { - "type": "package", - "compile": { - "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.Security.Principal.Windows.dll": { - "related": ".xml" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "ZstdSharp.Port/0.7.3": { - "type": "package", - "compile": { - "lib/net7.0/ZstdSharp.dll": {} - }, - "runtime": { - "lib/net7.0/ZstdSharp.dll": {} - } - }, - "Entity/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v9.0", - "dependencies": { - "Fantasy-Net": "2025.2.0", - "Microsoft.IdentityModel.Tokens": "8.14.0", - "System.IdentityModel.Tokens.Jwt": "8.14.0", - "ThirdParty": "1.0.0" - }, - "compile": { - "bin/placeholder/Entity.dll": {} - }, - "runtime": { - "bin/placeholder/Entity.dll": {} - } - }, - "ThirdParty/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v8.0", - "compile": { - "bin/placeholder/ThirdParty.dll": {} - }, - "runtime": { - "bin/placeholder/ThirdParty.dll": {} - } - } - } - }, - "libraries": { - "CommandLineParser/2.9.1": { - "sha512": "OE0sl1/sQ37bjVsPKKtwQlWDgqaxWgtme3xZz7JssWUzg5JpMIyHgCTY9MVMxOg48fJ1AgGT3tgdH5m/kQ5xhA==", - "type": "package", - "path": "commandlineparser/2.9.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "CommandLine20.png", - "License.md", - "README.md", - "commandlineparser.2.9.1.nupkg.sha512", - "commandlineparser.nuspec", - "lib/net40/CommandLine.dll", - "lib/net40/CommandLine.xml", - "lib/net45/CommandLine.dll", - "lib/net45/CommandLine.xml", - "lib/net461/CommandLine.dll", - "lib/net461/CommandLine.xml", - "lib/netstandard2.0/CommandLine.dll", - "lib/netstandard2.0/CommandLine.xml" - ] - }, - "DnsClient/1.6.1": { - "sha512": "4H/f2uYJOZ+YObZjpY9ABrKZI+JNw3uizp6oMzTXwDw6F+2qIPhpRl/1t68O/6e98+vqNiYGu+lswmwdYUy3gg==", - "type": "package", - "path": "dnsclient/1.6.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "dnsclient.1.6.1.nupkg.sha512", - "dnsclient.nuspec", - "icon.png", - "lib/net45/DnsClient.dll", - "lib/net45/DnsClient.xml", - "lib/net471/DnsClient.dll", - "lib/net471/DnsClient.xml", - "lib/net5.0/DnsClient.dll", - "lib/net5.0/DnsClient.xml", - "lib/netstandard1.3/DnsClient.dll", - "lib/netstandard1.3/DnsClient.xml", - "lib/netstandard2.0/DnsClient.dll", - "lib/netstandard2.0/DnsClient.xml", - "lib/netstandard2.1/DnsClient.dll", - "lib/netstandard2.1/DnsClient.xml" - ] - }, - "Fantasy-Net/2025.2.0": { - "sha512": "vCkduwxkMlH8GozyS+ZlWGLC4nGjFGaL13Ah4w5HL55XAJaAhe+RX+gbSRNBeJf1Uu0cjG2MgVyS4NX7bXdN4g==", - "type": "package", - "path": "fantasy-net/2025.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE", - "README.md", - "analyzers/dotnet/cs/Fantasy.SourceGenerator.dll", - "build/Fantasy-Net.props", - "build/Fantasy-Net.targets", - "build/Fantasy.config", - "build/Fantasy.xsd", - "buildTransitive/Fantasy-Net.targets", - "buildTransitive/Fantasy.config", - "buildTransitive/Fantasy.xsd", - "fantasy-net.2025.2.0.nupkg.sha512", - "fantasy-net.nuspec", - "icon.png", - "lib/net8.0/Fantasy-Net.dll", - "lib/net9.0/Fantasy-Net.dll" - ] - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { - "sha512": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", - "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512", - "microsoft.extensions.dependencyinjection.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging.Abstractions/8.0.0": { - "sha512": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", - "type": "package", - "path": "microsoft.extensions.logging.abstractions/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", - "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", - "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", - "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", - "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", - "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", - "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512", - "microsoft.extensions.logging.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.IdentityModel.Abstractions/8.14.0": { - "sha512": "iwbCpSjD3ehfTwBhtSNEtKPK0ICun6ov7Ibx6ISNA9bfwIyzI2Siwyi9eJFCJBwxowK9xcA1mj+jBWiigeqgcQ==", - "type": "package", - "path": "microsoft.identitymodel.abstractions/8.14.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net462/Microsoft.IdentityModel.Abstractions.dll", - "lib/net462/Microsoft.IdentityModel.Abstractions.xml", - "lib/net472/Microsoft.IdentityModel.Abstractions.dll", - "lib/net472/Microsoft.IdentityModel.Abstractions.xml", - "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml", - "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/net8.0/Microsoft.IdentityModel.Abstractions.xml", - "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/net9.0/Microsoft.IdentityModel.Abstractions.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml", - "microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512", - "microsoft.identitymodel.abstractions.nuspec" - ] - }, - "Microsoft.IdentityModel.JsonWebTokens/8.14.0": { - "sha512": "4jOpiA4THdtpLyMdAb24dtj7+6GmvhOhxf5XHLYWmPKF8ApEnApal1UnJsKO4HxUWRXDA6C4WQVfYyqsRhpNpQ==", - "type": "package", - "path": "microsoft.identitymodel.jsonwebtokens/8.14.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "microsoft.identitymodel.jsonwebtokens.8.14.0.nupkg.sha512", - "microsoft.identitymodel.jsonwebtokens.nuspec" - ] - }, - "Microsoft.IdentityModel.Logging/8.14.0": { - "sha512": "eqqnemdW38CKZEHS6diA50BV94QICozDZEvSrsvN3SJXUFwVB9gy+/oz76gldP7nZliA16IglXjXTCTdmU/Ejg==", - "type": "package", - "path": "microsoft.identitymodel.logging/8.14.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net462/Microsoft.IdentityModel.Logging.dll", - "lib/net462/Microsoft.IdentityModel.Logging.xml", - "lib/net472/Microsoft.IdentityModel.Logging.dll", - "lib/net472/Microsoft.IdentityModel.Logging.xml", - "lib/net6.0/Microsoft.IdentityModel.Logging.dll", - "lib/net6.0/Microsoft.IdentityModel.Logging.xml", - "lib/net8.0/Microsoft.IdentityModel.Logging.dll", - "lib/net8.0/Microsoft.IdentityModel.Logging.xml", - "lib/net9.0/Microsoft.IdentityModel.Logging.dll", - "lib/net9.0/Microsoft.IdentityModel.Logging.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", - "microsoft.identitymodel.logging.8.14.0.nupkg.sha512", - "microsoft.identitymodel.logging.nuspec" - ] - }, - "Microsoft.IdentityModel.Tokens/8.14.0": { - "sha512": "lKIZiBiGd36k02TCdMHp1KlNWisyIvQxcYJvIkz7P4gSQ9zi8dgh6S5Grj8NNG7HWYIPfQymGyoZ6JB5d1Lo1g==", - "type": "package", - "path": "microsoft.identitymodel.tokens/8.14.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net462/Microsoft.IdentityModel.Tokens.dll", - "lib/net462/Microsoft.IdentityModel.Tokens.xml", - "lib/net472/Microsoft.IdentityModel.Tokens.dll", - "lib/net472/Microsoft.IdentityModel.Tokens.xml", - "lib/net6.0/Microsoft.IdentityModel.Tokens.dll", - "lib/net6.0/Microsoft.IdentityModel.Tokens.xml", - "lib/net8.0/Microsoft.IdentityModel.Tokens.dll", - "lib/net8.0/Microsoft.IdentityModel.Tokens.xml", - "lib/net9.0/Microsoft.IdentityModel.Tokens.dll", - "lib/net9.0/Microsoft.IdentityModel.Tokens.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", - "microsoft.identitymodel.tokens.8.14.0.nupkg.sha512", - "microsoft.identitymodel.tokens.nuspec" - ] - }, - "Microsoft.NETCore.Platforms/5.0.0": { - "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", - "type": "package", - "path": "microsoft.netcore.platforms/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netstandard1.0/_._", - "microsoft.netcore.platforms.5.0.0.nupkg.sha512", - "microsoft.netcore.platforms.nuspec", - "runtime.json", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Win32.Registry/5.0.0": { - "sha512": "dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", - "type": "package", - "path": "microsoft.win32.registry/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/Microsoft.Win32.Registry.dll", - "lib/net461/Microsoft.Win32.Registry.dll", - "lib/net461/Microsoft.Win32.Registry.xml", - "lib/netstandard1.3/Microsoft.Win32.Registry.dll", - "lib/netstandard2.0/Microsoft.Win32.Registry.dll", - "lib/netstandard2.0/Microsoft.Win32.Registry.xml", - "microsoft.win32.registry.5.0.0.nupkg.sha512", - "microsoft.win32.registry.nuspec", - "ref/net46/Microsoft.Win32.Registry.dll", - "ref/net461/Microsoft.Win32.Registry.dll", - "ref/net461/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/Microsoft.Win32.Registry.dll", - "ref/netstandard1.3/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", - "ref/netstandard2.0/Microsoft.Win32.Registry.dll", - "ref/netstandard2.0/Microsoft.Win32.Registry.xml", - "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", - "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "MongoDB.Bson/3.5.0": { - "sha512": "JGNK6BanLDEifgkvPLqVFCPus5EDCy416pxf1dxUBRSVd3D9+NB3AvMVX190eXlk5/UXuCxpsQv7jWfNKvppBQ==", - "type": "package", - "path": "mongodb.bson/3.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net472/MongoDB.Bson.dll", - "lib/net472/MongoDB.Bson.xml", - "lib/net6.0/MongoDB.Bson.dll", - "lib/net6.0/MongoDB.Bson.xml", - "lib/netstandard2.1/MongoDB.Bson.dll", - "lib/netstandard2.1/MongoDB.Bson.xml", - "mongodb.bson.3.5.0.nupkg.sha512", - "mongodb.bson.nuspec", - "packageIcon.png" - ] - }, - "MongoDB.Driver/3.5.0": { - "sha512": "ST90u7psyMkNNOWFgSkexsrB3kPn7Ynl2DlMFj2rJyYuc6SIxjmzu4ufy51yzM+cPVE1SvVcdb5UFobrRw6cMg==", - "type": "package", - "path": "mongodb.driver/3.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net472/MongoDB.Driver.dll", - "lib/net472/MongoDB.Driver.xml", - "lib/net6.0/MongoDB.Driver.dll", - "lib/net6.0/MongoDB.Driver.xml", - "lib/netstandard2.1/MongoDB.Driver.dll", - "lib/netstandard2.1/MongoDB.Driver.xml", - "mongodb.driver.3.5.0.nupkg.sha512", - "mongodb.driver.nuspec", - "packageIcon.png" - ] - }, - "Newtonsoft.Json/13.0.4": { - "sha512": "pdgNNMai3zv51W5aq268sujXUyx7SNdE2bj1wZcWjAQrKMFZV260lbqYop1d2GM67JI1huLRwxo9ZqnfF/lC6A==", - "type": "package", - "path": "newtonsoft.json/13.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.md", - "README.md", - "lib/net20/Newtonsoft.Json.dll", - "lib/net20/Newtonsoft.Json.xml", - "lib/net35/Newtonsoft.Json.dll", - "lib/net35/Newtonsoft.Json.xml", - "lib/net40/Newtonsoft.Json.dll", - "lib/net40/Newtonsoft.Json.xml", - "lib/net45/Newtonsoft.Json.dll", - "lib/net45/Newtonsoft.Json.xml", - "lib/net6.0/Newtonsoft.Json.dll", - "lib/net6.0/Newtonsoft.Json.xml", - "lib/netstandard1.0/Newtonsoft.Json.dll", - "lib/netstandard1.0/Newtonsoft.Json.xml", - "lib/netstandard1.3/Newtonsoft.Json.dll", - "lib/netstandard1.3/Newtonsoft.Json.xml", - "lib/netstandard2.0/Newtonsoft.Json.dll", - "lib/netstandard2.0/Newtonsoft.Json.xml", - "newtonsoft.json.13.0.4.nupkg.sha512", - "newtonsoft.json.nuspec", - "packageIcon.png" - ] - }, - "protobuf-net/3.2.56": { - "sha512": "4IPJeTYAMNewlN8MDaFkcmR/9hLhJeo9eARnTh104zh7mf+vXT2gu5MUfUnkSQU+CH578Q6vcdU7LQDQPG6eaw==", - "type": "package", - "path": "protobuf-net/3.2.56", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net462/protobuf-net.dll", - "lib/net462/protobuf-net.xml", - "lib/net8.0/protobuf-net.dll", - "lib/net8.0/protobuf-net.xml", - "lib/netstandard2.0/protobuf-net.dll", - "lib/netstandard2.0/protobuf-net.xml", - "lib/netstandard2.1/protobuf-net.dll", - "lib/netstandard2.1/protobuf-net.xml", - "protobuf-net.3.2.56.nupkg.sha512", - "protobuf-net.nuspec", - "protobuf-net.png", - "readme.md" - ] - }, - "protobuf-net.Core/3.2.56": { - "sha512": "d6QOukTpDzs7zZv9tPnBZMtvHDNeHJQXUhMx54g4urUQsXK3oo9U70H9HvklYq7hlQ4A7AHJl7EVEqyCXXIl8Q==", - "type": "package", - "path": "protobuf-net.core/3.2.56", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net462/protobuf-net.Core.dll", - "lib/net462/protobuf-net.Core.xml", - "lib/net8.0/protobuf-net.Core.dll", - "lib/net8.0/protobuf-net.Core.xml", - "lib/netstandard2.0/protobuf-net.Core.dll", - "lib/netstandard2.0/protobuf-net.Core.xml", - "lib/netstandard2.1/protobuf-net.Core.dll", - "lib/netstandard2.1/protobuf-net.Core.xml", - "protobuf-net.core.3.2.56.nupkg.sha512", - "protobuf-net.core.nuspec", - "protobuf-net.png", - "readme.md" - ] - }, - "SharpCompress/0.30.1": { - "sha512": "XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==", - "type": "package", - "path": "sharpcompress/0.30.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net461/SharpCompress.dll", - "lib/net5.0/SharpCompress.dll", - "lib/netcoreapp3.1/SharpCompress.dll", - "lib/netstandard2.0/SharpCompress.dll", - "lib/netstandard2.1/SharpCompress.dll", - "sharpcompress.0.30.1.nupkg.sha512", - "sharpcompress.nuspec" - ] - }, - "Snappier/1.0.0": { - "sha512": "rFtK2KEI9hIe8gtx3a0YDXdHOpedIf9wYCEYtBEmtlyiWVX3XlCNV03JrmmAi/Cdfn7dxK+k0sjjcLv4fpHnqA==", - "type": "package", - "path": "snappier/1.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "COPYING.txt", - "lib/net5.0/Snappier.dll", - "lib/net5.0/Snappier.xml", - "lib/netcoreapp3.0/Snappier.dll", - "lib/netcoreapp3.0/Snappier.xml", - "lib/netstandard2.0/Snappier.dll", - "lib/netstandard2.0/Snappier.xml", - "lib/netstandard2.1/Snappier.dll", - "lib/netstandard2.1/Snappier.xml", - "snappier.1.0.0.nupkg.sha512", - "snappier.nuspec" - ] - }, - "System.Buffers/4.5.1": { - "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", - "type": "package", - "path": "system.buffers/4.5.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Buffers.dll", - "lib/net461/System.Buffers.xml", - "lib/netcoreapp2.0/_._", - "lib/netstandard1.1/System.Buffers.dll", - "lib/netstandard1.1/System.Buffers.xml", - "lib/netstandard2.0/System.Buffers.dll", - "lib/netstandard2.0/System.Buffers.xml", - "lib/uap10.0.16299/_._", - "ref/net45/System.Buffers.dll", - "ref/net45/System.Buffers.xml", - "ref/netcoreapp2.0/_._", - "ref/netstandard1.1/System.Buffers.dll", - "ref/netstandard1.1/System.Buffers.xml", - "ref/netstandard2.0/System.Buffers.dll", - "ref/netstandard2.0/System.Buffers.xml", - "ref/uap10.0.16299/_._", - "system.buffers.4.5.1.nupkg.sha512", - "system.buffers.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.IdentityModel.Tokens.Jwt/8.14.0": { - "sha512": "EYGgN/S+HK7S6F3GaaPLFAfK0UzMrkXFyWCvXpQWFYmZln3dqtbyIO7VuTM/iIIPMzkelg8ZLlBPvMhxj6nOAA==", - "type": "package", - "path": "system.identitymodel.tokens.jwt/8.14.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net462/System.IdentityModel.Tokens.Jwt.dll", - "lib/net462/System.IdentityModel.Tokens.Jwt.xml", - "lib/net472/System.IdentityModel.Tokens.Jwt.dll", - "lib/net472/System.IdentityModel.Tokens.Jwt.xml", - "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll", - "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml", - "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll", - "lib/net8.0/System.IdentityModel.Tokens.Jwt.xml", - "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll", - "lib/net9.0/System.IdentityModel.Tokens.Jwt.xml", - "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", - "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", - "system.identitymodel.tokens.jwt.8.14.0.nupkg.sha512", - "system.identitymodel.tokens.jwt.nuspec" - ] - }, - "System.Memory/4.5.5": { - "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", - "type": "package", - "path": "system.memory/4.5.5", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Memory.dll", - "lib/net461/System.Memory.xml", - "lib/netcoreapp2.1/_._", - "lib/netstandard1.1/System.Memory.dll", - "lib/netstandard1.1/System.Memory.xml", - "lib/netstandard2.0/System.Memory.dll", - "lib/netstandard2.0/System.Memory.xml", - "ref/netcoreapp2.1/_._", - "system.memory.4.5.5.nupkg.sha512", - "system.memory.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Runtime.CompilerServices.Unsafe/5.0.0": { - "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==", - "type": "package", - "path": "system.runtime.compilerservices.unsafe/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net45/System.Runtime.CompilerServices.Unsafe.dll", - "lib/net45/System.Runtime.CompilerServices.Unsafe.xml", - "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll", - "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml", - "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", - "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", - "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", - "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", - "ref/net461/System.Runtime.CompilerServices.Unsafe.dll", - "ref/net461/System.Runtime.CompilerServices.Unsafe.xml", - "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", - "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", - "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", - "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", - "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll", - "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml", - "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512", - "system.runtime.compilerservices.unsafe.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Security.AccessControl/5.0.0": { - "sha512": "dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", - "type": "package", - "path": "system.security.accesscontrol/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/System.Security.AccessControl.dll", - "lib/net461/System.Security.AccessControl.dll", - "lib/net461/System.Security.AccessControl.xml", - "lib/netstandard1.3/System.Security.AccessControl.dll", - "lib/netstandard2.0/System.Security.AccessControl.dll", - "lib/netstandard2.0/System.Security.AccessControl.xml", - "lib/uap10.0.16299/_._", - "ref/net46/System.Security.AccessControl.dll", - "ref/net461/System.Security.AccessControl.dll", - "ref/net461/System.Security.AccessControl.xml", - "ref/netstandard1.3/System.Security.AccessControl.dll", - "ref/netstandard1.3/System.Security.AccessControl.xml", - "ref/netstandard1.3/de/System.Security.AccessControl.xml", - "ref/netstandard1.3/es/System.Security.AccessControl.xml", - "ref/netstandard1.3/fr/System.Security.AccessControl.xml", - "ref/netstandard1.3/it/System.Security.AccessControl.xml", - "ref/netstandard1.3/ja/System.Security.AccessControl.xml", - "ref/netstandard1.3/ko/System.Security.AccessControl.xml", - "ref/netstandard1.3/ru/System.Security.AccessControl.xml", - "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", - "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", - "ref/netstandard2.0/System.Security.AccessControl.dll", - "ref/netstandard2.0/System.Security.AccessControl.xml", - "ref/uap10.0.16299/_._", - "runtimes/win/lib/net46/System.Security.AccessControl.dll", - "runtimes/win/lib/net461/System.Security.AccessControl.dll", - "runtimes/win/lib/net461/System.Security.AccessControl.xml", - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", - "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", - "runtimes/win/lib/uap10.0.16299/_._", - "system.security.accesscontrol.5.0.0.nupkg.sha512", - "system.security.accesscontrol.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Security.Principal.Windows/5.0.0": { - "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", - "type": "package", - "path": "system.security.principal.windows/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/System.Security.Principal.Windows.dll", - "lib/net461/System.Security.Principal.Windows.dll", - "lib/net461/System.Security.Principal.Windows.xml", - "lib/netstandard1.3/System.Security.Principal.Windows.dll", - "lib/netstandard2.0/System.Security.Principal.Windows.dll", - "lib/netstandard2.0/System.Security.Principal.Windows.xml", - "lib/uap10.0.16299/_._", - "ref/net46/System.Security.Principal.Windows.dll", - "ref/net461/System.Security.Principal.Windows.dll", - "ref/net461/System.Security.Principal.Windows.xml", - "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", - "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/System.Security.Principal.Windows.dll", - "ref/netstandard1.3/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", - "ref/netstandard2.0/System.Security.Principal.Windows.dll", - "ref/netstandard2.0/System.Security.Principal.Windows.xml", - "ref/uap10.0.16299/_._", - "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", - "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", - "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", - "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", - "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", - "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", - "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", - "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", - "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", - "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", - "runtimes/win/lib/uap10.0.16299/_._", - "system.security.principal.windows.5.0.0.nupkg.sha512", - "system.security.principal.windows.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "ZstdSharp.Port/0.7.3": { - "sha512": "U9Ix4l4cl58Kzz1rJzj5hoVTjmbx1qGMwzAcbv1j/d3NzrFaESIurQyg+ow4mivCgkE3S413y+U9k4WdnEIkRA==", - "type": "package", - "path": "zstdsharp.port/0.7.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net461/ZstdSharp.dll", - "lib/net5.0/ZstdSharp.dll", - "lib/net6.0/ZstdSharp.dll", - "lib/net7.0/ZstdSharp.dll", - "lib/netcoreapp3.1/ZstdSharp.dll", - "lib/netstandard2.0/ZstdSharp.dll", - "lib/netstandard2.1/ZstdSharp.dll", - "zstdsharp.port.0.7.3.nupkg.sha512", - "zstdsharp.port.nuspec" - ] - }, - "Entity/1.0.0": { - "type": "project", - "path": "../Entity/Entity.csproj", - "msbuildProject": "../Entity/Entity.csproj" - }, - "ThirdParty/1.0.0": { - "type": "project", - "path": "../ThirdParty/ThirdParty.csproj", - "msbuildProject": "../ThirdParty/ThirdParty.csproj" - } - }, - "projectFileDependencyGroups": { - "net9.0": [ - "Entity >= 1.0.0" - ] - }, - "packageFolders": { - "C:\\Users\\FIREBAT\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\work\\Fishing2Server\\Hotfix\\Hotfix.csproj", - "projectName": "Hotfix", - "projectPath": "D:\\work\\Fishing2Server\\Hotfix\\Hotfix.csproj", - "packagesPath": "C:\\Users\\FIREBAT\\.nuget\\packages\\", - "outputPath": "D:\\work\\Fishing2Server\\Hotfix\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\FIREBAT\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net9.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net9.0": { - "targetAlias": "net9.0", - "projectReferences": { - "D:\\work\\Fishing2Server\\Entity\\Entity.csproj": { - "projectPath": "D:\\work\\Fishing2Server\\Entity\\Entity.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "direct" - }, - "SdkAnalysisLevel": "9.0.300" - }, - "frameworks": { - "net9.0": { - "targetAlias": "net9.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/Hotfix/obj/project.nuget.cache b/Hotfix/obj/project.nuget.cache deleted file mode 100644 index 177994e..0000000 --- a/Hotfix/obj/project.nuget.cache +++ /dev/null @@ -1,34 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "X6oCWCLPCsk=", - "success": true, - "projectFilePath": "D:\\work\\Fishing2Server\\Hotfix\\Hotfix.csproj", - "expectedPackageFiles": [ - "C:\\Users\\FIREBAT\\.nuget\\packages\\commandlineparser\\2.9.1\\commandlineparser.2.9.1.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\dnsclient\\1.6.1\\dnsclient.1.6.1.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\fantasy-net\\2025.2.0\\fantasy-net.2025.2.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.0\\microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\8.0.0\\microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\microsoft.identitymodel.abstractions\\8.14.0\\microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\8.14.0\\microsoft.identitymodel.jsonwebtokens.8.14.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\microsoft.identitymodel.logging\\8.14.0\\microsoft.identitymodel.logging.8.14.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\microsoft.identitymodel.tokens\\8.14.0\\microsoft.identitymodel.tokens.8.14.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\microsoft.win32.registry\\5.0.0\\microsoft.win32.registry.5.0.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\mongodb.bson\\3.5.0\\mongodb.bson.3.5.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\mongodb.driver\\3.5.0\\mongodb.driver.3.5.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\newtonsoft.json\\13.0.4\\newtonsoft.json.13.0.4.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\protobuf-net\\3.2.56\\protobuf-net.3.2.56.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\protobuf-net.core\\3.2.56\\protobuf-net.core.3.2.56.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\sharpcompress\\0.30.1\\sharpcompress.0.30.1.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\snappier\\1.0.0\\snappier.1.0.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\system.identitymodel.tokens.jwt\\8.14.0\\system.identitymodel.tokens.jwt.8.14.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\system.memory\\4.5.5\\system.memory.4.5.5.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\5.0.0\\system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\system.security.accesscontrol\\5.0.0\\system.security.accesscontrol.5.0.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\zstdsharp.port\\0.7.3\\zstdsharp.port.0.7.3.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/Hotfix/obj/project.packagespec.json b/Hotfix/obj/project.packagespec.json deleted file mode 100644 index 7ed4dbd..0000000 --- a/Hotfix/obj/project.packagespec.json +++ /dev/null @@ -1 +0,0 @@ -"restore":{"projectUniqueName":"D:\\work\\Fishing2Server\\Hotfix\\Hotfix.csproj","projectName":"Hotfix","projectPath":"D:\\work\\Fishing2Server\\Hotfix\\Hotfix.csproj","outputPath":"D:\\work\\Fishing2Server\\Hotfix\\obj\\","projectStyle":"PackageReference","fallbackFolders":["C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"],"originalTargetFrameworks":["net9.0"],"sources":{"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net9.0":{"targetAlias":"net9.0","projectReferences":{"D:\\work\\Fishing2Server\\Entity\\Entity.csproj":{"projectPath":"D:\\work\\Fishing2Server\\Entity\\Entity.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"},"SdkAnalysisLevel":"9.0.300"}"frameworks":{"net9.0":{"targetAlias":"net9.0","imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/Hotfix/obj/rider.project.model.nuget.info b/Hotfix/obj/rider.project.model.nuget.info deleted file mode 100644 index 8cd404e..0000000 --- a/Hotfix/obj/rider.project.model.nuget.info +++ /dev/null @@ -1 +0,0 @@ -17628533859080463 \ No newline at end of file diff --git a/Hotfix/obj/rider.project.restore.info b/Hotfix/obj/rider.project.restore.info deleted file mode 100644 index 3a75255..0000000 --- a/Hotfix/obj/rider.project.restore.info +++ /dev/null @@ -1 +0,0 @@ -17628541514897177 \ No newline at end of file diff --git a/Main/bin/Debug/Logs/Server/Server20251111/Server..2025111114.Info.log b/Main/bin/Debug/Logs/Server/Server20251111/Server..2025111114.Info.log deleted file mode 100644 index 108f9d4..0000000 --- a/Main/bin/Debug/Logs/Server/Server20251111/Server..2025111114.Info.log +++ /dev/null @@ -1,48 +0,0 @@ -2025-11-11 14:39:56.8481 - -========================================================================== - - ███████╗ █████╗ ███╗ ██╗████████╗ █████╗ ██████╗ ██╗ ██╗ - ██╔════╝██╔══██╗████╗ ██║╚══██╔══╝██╔══██╗██╔════╝ ╚██╗ ██╔╝ - █████╗ ███████║██╔██╗ ██║ ██║ ███████║╚█████╗ ╚████╔╝ - ██╔══╝ ██╔══██║██║╚██╗██║ ██║ ██╔══██║╚════██║ ╚██╔╝ - ██║ ██║ ██║██║ ╚████║ ██║ ██║ ██║██████╔╝ ██║ - ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═╝ ╚═╝ ╚═╝╚═════╝ ╚═╝ - - Version : Fantasy 2.0 Official version -========================================================================== - -2025-11-11 14:39:57.0402 Current inner network protocol:TCP -2025-11-11 14:39:57.0402 Max Message Size(byte):1048560 -2025-11-11 14:39:57.0402 Current session idle timeout:8000 -2025-11-11 14:39:57.0402 Session-check interval:5000 -2025-11-11 14:39:58.8391 SceneConfigId = 1001 networkTarget = Inner TCPServer Listen 127.0.0.1:11002 -2025-11-11 14:39:59.5787 SceneConfigId = 1001 networkTarget = Outer KCPServer Listen 127.0.0.1:20000 -2025-11-11 14:39:59.5787 Process:1 Startup Complete SceneCount:1 -2025-11-11 14:51:01.5083 - -========================================================================== - - ███████╗ █████╗ ███╗ ██╗████████╗ █████╗ ██████╗ ██╗ ██╗ - ██╔════╝██╔══██╗████╗ ██║╚══██╔══╝██╔══██╗██╔════╝ ╚██╗ ██╔╝ - █████╗ ███████║██╔██╗ ██║ ██║ ███████║╚█████╗ ╚████╔╝ - ██╔══╝ ██╔══██║██║╚██╗██║ ██║ ██╔══██║╚════██║ ╚██╔╝ - ██║ ██║ ██║██║ ╚████║ ██║ ██║ ██║██████╔╝ ██║ - ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═╝ ╚═╝ ╚═╝╚═════╝ ╚═╝ - - Version : Fantasy 2.0 Official version -========================================================================== - -2025-11-11 14:51:01.6269 Current inner network protocol:TCP -2025-11-11 14:51:01.6269 Max Message Size(byte):1048560 -2025-11-11 14:51:01.6269 Current session idle timeout:8000 -2025-11-11 14:51:01.6269 Session-check interval:5000 -2025-11-11 14:51:02.8337 SceneConfigId = 1001 networkTarget = Inner TCPServer Listen 127.0.0.1:11001 -2025-11-11 14:51:03.4919 SceneConfigId = 1001 networkTarget = Outer KCPServer Listen 127.0.0.1:20001 -2025-11-11 14:51:04.1272 SceneConfigId = 1002 networkTarget = Inner TCPServer Listen 127.0.0.1:11011 -2025-11-11 14:51:04.7592 SceneConfigId = 1003 networkTarget = Inner TCPServer Listen 127.0.0.1:11021 -2025-11-11 14:51:05.3647 SceneConfigId = 1003 networkTarget = Outer KCPServer Listen 127.0.0.1:20000 -2025-11-11 14:51:06.0023 SceneConfigId = 1004 networkTarget = Inner TCPServer Listen 127.0.0.1:11031 -2025-11-11 14:51:06.6302 SceneConfigId = 1006 networkTarget = Inner TCPServer Listen 127.0.0.1:11051 -2025-11-11 14:51:07.2603 SceneConfigId = 1007 networkTarget = Inner TCPServer Listen 127.0.0.1:11061 -2025-11-11 14:51:07.2603 Process:1 Startup Complete SceneCount:6 diff --git a/Main/bin/Debug/Logs/Server/Server20251111/Server..2025111115.Debug.log b/Main/bin/Debug/Logs/Server/Server20251111/Server..2025111115.Debug.log deleted file mode 100644 index e69de29..0000000 diff --git a/Main/bin/Debug/Logs/Server/Server20251111/Server..2025111115.Info.log b/Main/bin/Debug/Logs/Server/Server20251111/Server..2025111115.Info.log deleted file mode 100644 index 5e2e96f..0000000 --- a/Main/bin/Debug/Logs/Server/Server20251111/Server..2025111115.Info.log +++ /dev/null @@ -1,105 +0,0 @@ -2025-11-11 15:09:56.1103 - -========================================================================== - - ███████╗ █████╗ ███╗ ██╗████████╗ █████╗ ██████╗ ██╗ ██╗ - ██╔════╝██╔══██╗████╗ ██║╚══██╔══╝██╔══██╗██╔════╝ ╚██╗ ██╔╝ - █████╗ ███████║██╔██╗ ██║ ██║ ███████║╚█████╗ ╚████╔╝ - ██╔══╝ ██╔══██║██║╚██╗██║ ██║ ██╔══██║╚════██║ ╚██╔╝ - ██║ ██║ ██║██║ ╚████║ ██║ ██║ ██║██████╔╝ ██║ - ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═╝ ╚═╝ ╚═╝╚═════╝ ╚═╝ - - Version : Fantasy 2.0 Official version -========================================================================== - -2025-11-11 15:09:56.2193 Current inner network protocol:TCP -2025-11-11 15:09:56.2193 Max Message Size(byte):1048560 -2025-11-11 15:09:56.2193 Current session idle timeout:8000 -2025-11-11 15:09:56.2193 Session-check interval:5000 -2025-11-11 15:09:57.3814 SceneConfigId = 1001 networkTarget = Inner TCPServer Listen 127.0.0.1:11001 -2025-11-11 15:09:58.0219 SceneConfigId = 1001 networkTarget = Outer KCPServer Listen 127.0.0.1:20001 -2025-11-11 15:09:58.0219 (OnCreateSceneEvent.cs:12) Scene created: SceneType=1, SceneId=67371008 -2025-11-11 15:09:58.6649 SceneConfigId = 1002 networkTarget = Inner TCPServer Listen 127.0.0.1:11011 -2025-11-11 15:09:58.6649 (OnCreateSceneEvent.cs:12) Scene created: SceneType=1, SceneId=134479872 -2025-11-11 15:09:59.3427 SceneConfigId = 1003 networkTarget = Inner TCPServer Listen 127.0.0.1:11021 -2025-11-11 15:09:59.9745 SceneConfigId = 1003 networkTarget = Outer KCPServer Listen 127.0.0.1:20000 -2025-11-11 15:09:59.9745 (OnCreateSceneEvent.cs:12) Scene created: SceneType=2, SceneId=201588736 -2025-11-11 15:09:59.9978 (OnCreateSceneEvent.cs:53) 初始化 Gate 场景: 201588736 -2025-11-11 15:10:00.6414 SceneConfigId = 1004 networkTarget = Inner TCPServer Listen 127.0.0.1:11031 -2025-11-11 15:10:00.6647 (OnCreateSceneEvent.cs:12) Scene created: SceneType=3, SceneId=268697600 -2025-11-11 15:10:01.3079 SceneConfigId = 1006 networkTarget = Inner TCPServer Listen 127.0.0.1:11051 -2025-11-11 15:10:01.3316 (OnCreateSceneEvent.cs:12) Scene created: SceneType=4, SceneId=402915328 -2025-11-11 15:10:01.9900 SceneConfigId = 1007 networkTarget = Inner TCPServer Listen 127.0.0.1:11061 -2025-11-11 15:10:01.9900 Process:1 Startup Complete SceneCount:6 -2025-11-11 15:10:01.9900 (OnCreateSceneEvent.cs:12) Scene created: SceneType=5, SceneId=470024192 -2025-11-11 15:15:12.1015 - -========================================================================== - - ███████╗ █████╗ ███╗ ██╗████████╗ █████╗ ██████╗ ██╗ ██╗ - ██╔════╝██╔══██╗████╗ ██║╚══██╔══╝██╔══██╗██╔════╝ ╚██╗ ██╔╝ - █████╗ ███████║██╔██╗ ██║ ██║ ███████║╚█████╗ ╚████╔╝ - ██╔══╝ ██╔══██║██║╚██╗██║ ██║ ██╔══██║╚════██║ ╚██╔╝ - ██║ ██║ ██║██║ ╚████║ ██║ ██║ ██║██████╔╝ ██║ - ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═╝ ╚═╝ ╚═╝╚═════╝ ╚═╝ - - Version : Fantasy 2.0 Official version -========================================================================== - -2025-11-11 15:15:12.2186 Current inner network protocol:TCP -2025-11-11 15:15:12.2186 Max Message Size(byte):1048560 -2025-11-11 15:15:12.2186 Current session idle timeout:8000 -2025-11-11 15:15:12.2186 Session-check interval:5000 -2025-11-11 15:15:13.4932 SceneConfigId = 1001 networkTarget = Inner TCPServer Listen 127.0.0.1:11001 -2025-11-11 15:15:14.1458 SceneConfigId = 1001 networkTarget = Outer KCPServer Listen 127.0.0.1:20001 -2025-11-11 15:15:14.1567 (OnCreateSceneEvent.cs:12) Scene created: SceneType=1, SceneId=67371008 SceneConfigId=1001 -2025-11-11 15:15:14.7815 SceneConfigId = 1002 networkTarget = Inner TCPServer Listen 127.0.0.1:11011 -2025-11-11 15:15:14.7815 (OnCreateSceneEvent.cs:12) Scene created: SceneType=1, SceneId=134479872 SceneConfigId=1002 -2025-11-11 15:15:15.4072 SceneConfigId = 1003 networkTarget = Inner TCPServer Listen 127.0.0.1:11021 -2025-11-11 15:15:16.0081 SceneConfigId = 1003 networkTarget = Outer KCPServer Listen 127.0.0.1:20000 -2025-11-11 15:15:16.0081 (OnCreateSceneEvent.cs:12) Scene created: SceneType=2, SceneId=201588736 SceneConfigId=1003 -2025-11-11 15:15:16.0325 (OnCreateSceneEvent.cs:53) 初始化 Gate 场景: 201588736 -2025-11-11 15:15:16.6539 SceneConfigId = 1004 networkTarget = Inner TCPServer Listen 127.0.0.1:11031 -2025-11-11 15:15:16.6539 (OnCreateSceneEvent.cs:12) Scene created: SceneType=3, SceneId=268697600 SceneConfigId=1004 -2025-11-11 15:15:17.3013 SceneConfigId = 1006 networkTarget = Inner TCPServer Listen 127.0.0.1:11051 -2025-11-11 15:15:17.3031 (OnCreateSceneEvent.cs:12) Scene created: SceneType=4, SceneId=402915328 SceneConfigId=1006 -2025-11-11 15:15:17.9310 SceneConfigId = 1007 networkTarget = Inner TCPServer Listen 127.0.0.1:11061 -2025-11-11 15:15:17.9310 Process:1 Startup Complete SceneCount:6 -2025-11-11 15:15:17.9310 (OnCreateSceneEvent.cs:12) Scene created: SceneType=5, SceneId=470024192 SceneConfigId=1007 -2025-11-11 15:21:16.0456 - -========================================================================== - - ███████╗ █████╗ ███╗ ██╗████████╗ █████╗ ██████╗ ██╗ ██╗ - ██╔════╝██╔══██╗████╗ ██║╚══██╔══╝██╔══██╗██╔════╝ ╚██╗ ██╔╝ - █████╗ ███████║██╔██╗ ██║ ██║ ███████║╚█████╗ ╚████╔╝ - ██╔══╝ ██╔══██║██║╚██╗██║ ██║ ██╔══██║╚════██║ ╚██╔╝ - ██║ ██║ ██║██║ ╚████║ ██║ ██║ ██║██████╔╝ ██║ - ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═╝ ╚═╝ ╚═╝╚═════╝ ╚═╝ - - Version : Fantasy 2.0 Official version -========================================================================== - -2025-11-11 15:21:16.1627 Current inner network protocol:TCP -2025-11-11 15:21:16.1627 Max Message Size(byte):1048560 -2025-11-11 15:21:16.1627 Current session idle timeout:8000 -2025-11-11 15:21:16.1627 Session-check interval:5000 -2025-11-11 15:21:17.3250 SceneConfigId = 1001 networkTarget = Inner TCPServer Listen 127.0.0.1:11001 -2025-11-11 15:21:17.9730 SceneConfigId = 1001 networkTarget = Outer KCPServer Listen 127.0.0.1:20001 -2025-11-11 15:21:17.9852 (OnCreateSceneEvent.cs:13) Scene created: SceneType=1, SceneId=67371008 SceneConfigId=1001 -2025-11-11 15:21:18.6143 SceneConfigId = 1002 networkTarget = Inner TCPServer Listen 127.0.0.1:11011 -2025-11-11 15:21:18.6143 (OnCreateSceneEvent.cs:13) Scene created: SceneType=1, SceneId=134479872 SceneConfigId=1002 -2025-11-11 15:21:19.2440 SceneConfigId = 1003 networkTarget = Inner TCPServer Listen 127.0.0.1:11021 -2025-11-11 15:21:19.8390 SceneConfigId = 1003 networkTarget = Outer KCPServer Listen 127.0.0.1:20000 -2025-11-11 15:21:19.8626 (OnCreateSceneEvent.cs:13) Scene created: SceneType=2, SceneId=201588736 SceneConfigId=1003 -2025-11-11 15:21:19.8626 (OnCreateSceneEvent.cs:173) 初始化 Addressable 场景: 201588736 -2025-11-11 15:21:20.4949 SceneConfigId = 1004 networkTarget = Inner TCPServer Listen 127.0.0.1:11031 -2025-11-11 15:21:20.4949 (OnCreateSceneEvent.cs:13) Scene created: SceneType=3, SceneId=268697600 SceneConfigId=1004 -2025-11-11 15:21:20.5214 (OnCreateSceneEvent.cs:52) 初始化 Gate 场景: 268697600 -2025-11-11 15:21:21.1476 SceneConfigId = 1006 networkTarget = Inner TCPServer Listen 127.0.0.1:11051 -2025-11-11 15:21:21.1476 (OnCreateSceneEvent.cs:13) Scene created: SceneType=4, SceneId=402915328 SceneConfigId=1006 -2025-11-11 15:21:21.1704 (OnCreateSceneEvent.cs:107) 初始化 Game 场景: 402915328 -2025-11-11 15:21:21.7961 SceneConfigId = 1007 networkTarget = Inner TCPServer Listen 127.0.0.1:11061 -2025-11-11 15:21:21.7961 Process:1 Startup Complete SceneCount:6 -2025-11-11 15:21:21.7961 (OnCreateSceneEvent.cs:13) Scene created: SceneType=5, SceneId=470024192 SceneConfigId=1007 -2025-11-11 15:21:21.7961 (OnCreateSceneEvent.cs:94) 初始化 Map 场景: 470024192 diff --git a/Main/bin/Debug/Logs/Server/Server20251111/Server..2025111115.Warn.log b/Main/bin/Debug/Logs/Server/Server20251111/Server..2025111115.Warn.log deleted file mode 100644 index a6f0cc8..0000000 --- a/Main/bin/Debug/Logs/Server/Server20251111/Server..2025111115.Warn.log +++ /dev/null @@ -1,10 +0,0 @@ -2025-11-11 15:09:58.0219 (OnCreateSceneEvent.cs:42) 未处理的 SceneType: 1 -2025-11-11 15:09:58.6893 (OnCreateSceneEvent.cs:42) 未处理的 SceneType: 1 -2025-11-11 15:10:00.6647 (OnCreateSceneEvent.cs:42) 未处理的 SceneType: 3 -2025-11-11 15:10:01.3316 (OnCreateSceneEvent.cs:42) 未处理的 SceneType: 4 -2025-11-11 15:10:01.9900 (OnCreateSceneEvent.cs:42) 未处理的 SceneType: 5 -2025-11-11 15:15:14.1567 (OnCreateSceneEvent.cs:42) 未处理的 SceneType: 1 -2025-11-11 15:15:14.7815 (OnCreateSceneEvent.cs:42) 未处理的 SceneType: 1 -2025-11-11 15:15:16.6783 (OnCreateSceneEvent.cs:42) 未处理的 SceneType: 3 -2025-11-11 15:15:17.3031 (OnCreateSceneEvent.cs:42) 未处理的 SceneType: 4 -2025-11-11 15:15:17.9310 (OnCreateSceneEvent.cs:42) 未处理的 SceneType: 5 diff --git a/Main/bin/Debug/Logs/Server/Server20251111/Server..2025111116.Info.log b/Main/bin/Debug/Logs/Server/Server20251111/Server..2025111116.Info.log deleted file mode 100644 index 0555e0d..0000000 --- a/Main/bin/Debug/Logs/Server/Server20251111/Server..2025111116.Info.log +++ /dev/null @@ -1,39 +0,0 @@ -2025-11-11 16:50:19.9307 - -========================================================================== - - ███████╗ █████╗ ███╗ ██╗████████╗ █████╗ ██████╗ ██╗ ██╗ - ██╔════╝██╔══██╗████╗ ██║╚══██╔══╝██╔══██╗██╔════╝ ╚██╗ ██╔╝ - █████╗ ███████║██╔██╗ ██║ ██║ ███████║╚█████╗ ╚████╔╝ - ██╔══╝ ██╔══██║██║╚██╗██║ ██║ ██╔══██║╚════██║ ╚██╔╝ - ██║ ██║ ██║██║ ╚████║ ██║ ██║ ██║██████╔╝ ██║ - ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═╝ ╚═╝ ╚═╝╚═════╝ ╚═╝ - - Version : Fantasy 2.0 Official version -========================================================================== - -2025-11-11 16:50:20.0695 Current inner network protocol:TCP -2025-11-11 16:50:20.0695 Max Message Size(byte):1048560 -2025-11-11 16:50:20.0695 Current session idle timeout:8000 -2025-11-11 16:50:20.0695 Session-check interval:5000 -2025-11-11 16:50:21.8247 SceneConfigId = 1001 networkTarget = Inner TCPServer Listen 127.0.0.1:11001 -2025-11-11 16:50:22.6382 SceneConfigId = 1001 networkTarget = Outer KCPServer Listen 127.0.0.1:20001 -2025-11-11 16:50:22.6535 (OnCreateSceneEvent.cs:15) Scene created: SceneType=1, SceneId=67371008 SceneConfigId=1001 -2025-11-11 16:50:22.6535 (OnCreateSceneEvent.cs:178) 初始化 Addressable 场景: 67371008 -2025-11-11 16:50:23.5178 SceneConfigId = 1002 networkTarget = Inner TCPServer Listen 127.0.0.1:11011 -2025-11-11 16:50:23.5230 (OnCreateSceneEvent.cs:15) Scene created: SceneType=1, SceneId=134479872 SceneConfigId=1002 -2025-11-11 16:50:23.5230 (OnCreateSceneEvent.cs:178) 初始化 Addressable 场景: 134479872 -2025-11-11 16:50:24.3026 SceneConfigId = 1003 networkTarget = Inner TCPServer Listen 127.0.0.1:11021 -2025-11-11 16:50:24.9543 SceneConfigId = 1003 networkTarget = Outer KCPServer Listen 127.0.0.1:20000 -2025-11-11 16:50:24.9543 (OnCreateSceneEvent.cs:15) Scene created: SceneType=2, SceneId=201588736 SceneConfigId=1003 -2025-11-11 16:50:24.9543 (OnCreateSceneEvent.cs:57) 初始化 Gate 场景: 201588736 -2025-11-11 16:50:25.6167 SceneConfigId = 1004 networkTarget = Inner TCPServer Listen 127.0.0.1:11031 -2025-11-11 16:50:25.6167 (OnCreateSceneEvent.cs:15) Scene created: SceneType=3, SceneId=268697600 SceneConfigId=1004 -2025-11-11 16:50:25.6404 (OnCreateSceneEvent.cs:112) 初始化 Game 场景: 268697600 -2025-11-11 16:50:26.2863 SceneConfigId = 1006 networkTarget = Inner TCPServer Listen 127.0.0.1:11051 -2025-11-11 16:50:26.2863 (OnCreateSceneEvent.cs:15) Scene created: SceneType=4, SceneId=402915328 SceneConfigId=1006 -2025-11-11 16:50:26.2863 (OnCreateSceneEvent.cs:105) 初始化 Social 场景: 402915328 -2025-11-11 16:50:26.9385 SceneConfigId = 1007 networkTarget = Inner TCPServer Listen 127.0.0.1:11061 -2025-11-11 16:50:26.9385 Process:1 Startup Complete SceneCount:6 -2025-11-11 16:50:26.9385 (OnCreateSceneEvent.cs:15) Scene created: SceneType=5, SceneId=470024192 SceneConfigId=1007 -2025-11-11 16:50:26.9385 (OnCreateSceneEvent.cs:99) 初始化 Map 场景: 470024192 diff --git a/Main/bin/Debug/Logs/Server/Server20251111/Server..2025111117.Debug.log b/Main/bin/Debug/Logs/Server/Server20251111/Server..2025111117.Debug.log deleted file mode 100644 index 23396fc..0000000 --- a/Main/bin/Debug/Logs/Server/Server20251111/Server..2025111117.Debug.log +++ /dev/null @@ -1,5 +0,0 @@ -2025-11-11 17:41:21.9158 (C2A_LoginRequestHandler.cs:66) Login 当前的服务器是:1001 -2025-11-11 17:41:22.4012 (PlayerManageComponentSystem.cs:44) 检查账号是否在缓存中 -2025-11-11 17:41:22.4377 (PlayerManageComponentSystem.cs:59) 检查到账号在数据库中 -2025-11-11 17:41:22.5206 (PlayerManageComponentSystem.cs:71) 把当前账号添加到缓存中 -2025-11-11 17:41:22.5812 (C2G_LoginRequestHandler.cs:44) 当前的Gate服务器:1003 accountId:445703427981574146 diff --git a/Main/bin/Debug/Logs/Server/Server20251111/Server..2025111117.Error.log b/Main/bin/Debug/Logs/Server/Server20251111/Server..2025111117.Error.log deleted file mode 100644 index 024585a..0000000 --- a/Main/bin/Debug/Logs/Server/Server20251111/Server..2025111117.Error.log +++ /dev/null @@ -1,5 +0,0 @@ -2025-11-11 17:37:04.6575 System.NullReferenceException: Object reference not set to an instance of an object. - at NB.Authentication.AuthenticationComponentSystem.Login(AuthenticationComponent self, String userName, String password) in D:\work\Fishing2ServerNew\Fishing2\Server\Hotfix\Authentication\System\AuthenticationComponentSystem.cs:line 101 - at NB.Authentication.AuthenticationHelper.Login(Scene scene, String userName, String password) in D:\work\Fishing2ServerNew\Fishing2\Server\Hotfix\Authentication\System\AuthenticationHelper.cs:line 18 - at NB.Authentication.Handler.C2A_LoginRequestHandler.Run(Session session, C2A_LoginRequest request, A2C_LoginResponse response, Action reply) in D:\work\Fishing2ServerNew\Fishing2\Server\Hotfix\Authentication\Handler\C2A_LoginRequestHandler.cs:line 25 - at Fantasy.Network.Interface.MessageRPC`2.Handle(Session session, UInt32 rpcId, UInt32 messageTypeCode, Object message) diff --git a/Main/bin/Debug/Logs/Server/Server20251111/Server..2025111117.Info.log b/Main/bin/Debug/Logs/Server/Server20251111/Server..2025111117.Info.log deleted file mode 100644 index 7721ca1..0000000 --- a/Main/bin/Debug/Logs/Server/Server20251111/Server..2025111117.Info.log +++ /dev/null @@ -1,105 +0,0 @@ -2025-11-11 17:31:29.7488 - -========================================================================== - - ███████╗ █████╗ ███╗ ██╗████████╗ █████╗ ██████╗ ██╗ ██╗ - ██╔════╝██╔══██╗████╗ ██║╚══██╔══╝██╔══██╗██╔════╝ ╚██╗ ██╔╝ - █████╗ ███████║██╔██╗ ██║ ██║ ███████║╚█████╗ ╚████╔╝ - ██╔══╝ ██╔══██║██║╚██╗██║ ██║ ██╔══██║╚════██║ ╚██╔╝ - ██║ ██║ ██║██║ ╚████║ ██║ ██║ ██║██████╔╝ ██║ - ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═╝ ╚═╝ ╚═╝╚═════╝ ╚═╝ - - Version : Fantasy 2.0 Official version -========================================================================== - -2025-11-11 17:31:29.8486 Current inner network protocol:TCP -2025-11-11 17:31:29.8486 Max Message Size(byte):1048560 -2025-11-11 17:31:29.8486 Current session idle timeout:8000 -2025-11-11 17:31:29.8486 Session-check interval:5000 -2025-11-11 17:31:31.0914 SceneConfigId = 1001 networkTarget = Inner TCPServer Listen 127.0.0.1:11001 -2025-11-11 17:31:31.7608 SceneConfigId = 1001 networkTarget = Outer KCPServer Listen 127.0.0.1:20001 -2025-11-11 17:31:31.7934 (OnCreateSceneEvent.cs:21) Scene created: SceneType=1, SceneId=67371008 SceneConfigId=1001 -2025-11-11 17:31:31.7934 (AuthenticationComponentSystem.cs:40) 鉴权服务器启动成功!Position:0 AuthenticationCount:1 -2025-11-11 17:31:32.5156 SceneConfigId = 1002 networkTarget = Inner TCPServer Listen 127.0.0.1:11011 -2025-11-11 17:31:32.5395 (OnCreateSceneEvent.cs:21) Scene created: SceneType=2, SceneId=134479872 SceneConfigId=1002 -2025-11-11 17:31:32.5395 (OnCreateSceneEvent.cs:221) 初始化 Addressable 场景: 134479872 -2025-11-11 17:31:33.2217 SceneConfigId = 1003 networkTarget = Inner TCPServer Listen 127.0.0.1:11021 -2025-11-11 17:31:33.8288 SceneConfigId = 1003 networkTarget = Outer KCPServer Listen 127.0.0.1:20000 -2025-11-11 17:31:33.8288 (OnCreateSceneEvent.cs:21) Scene created: SceneType=3, SceneId=201588736 SceneConfigId=1003 -2025-11-11 17:31:33.8540 (OnCreateSceneEvent.cs:76) 初始化 Gate 场景: 201588736 -2025-11-11 17:31:34.4841 SceneConfigId = 1004 networkTarget = Inner TCPServer Listen 127.0.0.1:11031 -2025-11-11 17:31:34.4841 (OnCreateSceneEvent.cs:21) Scene created: SceneType=4, SceneId=268697600 SceneConfigId=1004 -2025-11-11 17:31:34.5094 (OnCreateSceneEvent.cs:152) 初始化 Game 场景: 268697600 -2025-11-11 17:31:35.1456 SceneConfigId = 1006 networkTarget = Inner TCPServer Listen 127.0.0.1:11051 -2025-11-11 17:31:35.1456 (OnCreateSceneEvent.cs:21) Scene created: SceneType=5, SceneId=402915328 SceneConfigId=1006 -2025-11-11 17:31:35.1700 (OnCreateSceneEvent.cs:141) 初始化 Social 场景: 402915328 -2025-11-11 17:31:35.8223 SceneConfigId = 1007 networkTarget = Inner TCPServer Listen 127.0.0.1:11061 -2025-11-11 17:31:35.8223 Process:1 Startup Complete SceneCount:6 -2025-11-11 17:31:35.8223 (OnCreateSceneEvent.cs:21) Scene created: SceneType=6, SceneId=470024192 SceneConfigId=1007 -2025-11-11 17:31:35.8223 (OnCreateSceneEvent.cs:123) 初始化 Map 场景: 470024192 -2025-11-11 17:31:35.8223 (OnCreateSceneEvent.cs:124) 创建地图场景=== -2025-11-11 17:31:35.8223 (OnCreateSceneEvent.cs:133) 测试房间代码 = 13AHVL -2025-11-11 17:37:04.3480 (C2A_LoginRequestHandler.cs:24) 登录服场景 67371008 4311744512 1001 -2025-11-11 17:41:05.5613 - -========================================================================== - - ███████╗ █████╗ ███╗ ██╗████████╗ █████╗ ██████╗ ██╗ ██╗ - ██╔════╝██╔══██╗████╗ ██║╚══██╔══╝██╔══██╗██╔════╝ ╚██╗ ██╔╝ - █████╗ ███████║██╔██╗ ██║ ██║ ███████║╚█████╗ ╚████╔╝ - ██╔══╝ ██╔══██║██║╚██╗██║ ██║ ██╔══██║╚════██║ ╚██╔╝ - ██║ ██║ ██║██║ ╚████║ ██║ ██║ ██║██████╔╝ ██║ - ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═╝ ╚═╝ ╚═╝╚═════╝ ╚═╝ - - Version : Fantasy 2.0 Official version -========================================================================== - -2025-11-11 17:41:05.6797 Current inner network protocol:TCP -2025-11-11 17:41:05.6797 Max Message Size(byte):1048560 -2025-11-11 17:41:05.6797 Current session idle timeout:8000 -2025-11-11 17:41:05.6797 Session-check interval:5000 -2025-11-11 17:41:06.3043 dbName:fantasy_main Initialize the db database and connect to the target. -2025-11-11 17:41:06.7567 dbName:fantasy_main Database connection successful. -2025-11-11 17:41:07.4480 SceneConfigId = 1001 networkTarget = Inner TCPServer Listen 127.0.0.1:11001 -2025-11-11 17:41:08.0920 SceneConfigId = 1001 networkTarget = Outer KCPServer Listen 127.0.0.1:20001 -2025-11-11 17:41:08.0983 dbName:fantasy_main Initialize the db database and connect to the target. -2025-11-11 17:41:08.0983 dbName:fantasy_main Database connection successful. -2025-11-11 17:41:08.0983 (OnCreateSceneEvent.cs:21) Scene created: SceneType=1, SceneId=67371008 SceneConfigId=1001 -2025-11-11 17:41:08.0983 (AuthenticationComponentSystem.cs:40) 鉴权服务器启动成功!Position:0 AuthenticationCount:1 -2025-11-11 17:41:08.7704 SceneConfigId = 1002 networkTarget = Inner TCPServer Listen 127.0.0.1:11011 -2025-11-11 17:41:08.7704 (OnCreateSceneEvent.cs:21) Scene created: SceneType=2, SceneId=134479872 SceneConfigId=1002 -2025-11-11 17:41:08.7704 dbName:fantasy_main Initialize the db database and connect to the target. -2025-11-11 17:41:08.7704 (OnCreateSceneEvent.cs:221) 初始化 Addressable 场景: 134479872 -2025-11-11 17:41:08.7704 dbName:fantasy_main Database connection successful. -2025-11-11 17:41:09.4204 SceneConfigId = 1003 networkTarget = Inner TCPServer Listen 127.0.0.1:11021 -2025-11-11 17:41:10.0569 SceneConfigId = 1003 networkTarget = Outer KCPServer Listen 127.0.0.1:20000 -2025-11-11 17:41:10.0569 (OnCreateSceneEvent.cs:21) Scene created: SceneType=3, SceneId=201588736 SceneConfigId=1003 -2025-11-11 17:41:10.0809 dbName:fantasy_main Initialize the db database and connect to the target. -2025-11-11 17:41:10.0809 (OnCreateSceneEvent.cs:76) 初始化 Gate 场景: 201588736 -2025-11-11 17:41:10.0809 dbName:fantasy_main Database connection successful. -2025-11-11 17:41:10.7352 SceneConfigId = 1004 networkTarget = Inner TCPServer Listen 127.0.0.1:11031 -2025-11-11 17:41:10.7578 (OnCreateSceneEvent.cs:21) Scene created: SceneType=4, SceneId=268697600 SceneConfigId=1004 -2025-11-11 17:41:10.7578 dbName:fantasy_main Initialize the db database and connect to the target. -2025-11-11 17:41:10.7578 (OnCreateSceneEvent.cs:152) 初始化 Game 场景: 268697600 -2025-11-11 17:41:10.7578 dbName:fantasy_main Database connection successful. -2025-11-11 17:41:11.4079 SceneConfigId = 1006 networkTarget = Inner TCPServer Listen 127.0.0.1:11051 -2025-11-11 17:41:11.4089 (OnCreateSceneEvent.cs:21) Scene created: SceneType=5, SceneId=402915328 SceneConfigId=1006 -2025-11-11 17:41:11.4089 dbName:fantasy_main Initialize the db database and connect to the target. -2025-11-11 17:41:11.4089 (OnCreateSceneEvent.cs:141) 初始化 Social 场景: 402915328 -2025-11-11 17:41:11.4089 dbName:fantasy_main Database connection successful. -2025-11-11 17:41:12.0503 SceneConfigId = 1007 networkTarget = Inner TCPServer Listen 127.0.0.1:11061 -2025-11-11 17:41:12.0503 Process:1 Startup Complete SceneCount:6 -2025-11-11 17:41:12.0503 (OnCreateSceneEvent.cs:21) Scene created: SceneType=6, SceneId=470024192 SceneConfigId=1007 -2025-11-11 17:41:12.0503 (OnCreateSceneEvent.cs:123) 初始化 Map 场景: 470024192 -2025-11-11 17:41:12.0503 (OnCreateSceneEvent.cs:124) 创建地图场景=== -2025-11-11 17:41:12.0503 (OnCreateSceneEvent.cs:133) 测试房间代码 = 13AHVL -2025-11-11 17:41:21.0963 (C2A_LoginRequestHandler.cs:24) 登录服场景 67371008 4311744512 1001 -2025-11-11 17:41:22.5377 (G2Common_EnterRequestHandler.cs:52) 登录到游戏服成功,id=-7928855407626289152 -2025-11-11 17:41:22.5720 (G2Common_EnterRequestHandler.cs:68) 登录到社交服成功,id=-7928856498547982336 -2025-11-11 17:41:22.5720 (G2Common_EnterRequestHandler.cs:84) 登录到地图服成功,id=-7928856494253015040 -2025-11-11 17:41:27.5033 (GateLoginHelper.cs:63) 断线的session id=-7928854312409628672 -2025-11-11 17:41:27.5033 (G2Common_ExitRequestHandler.cs:43) 退出游戏服成功== -2025-11-11 17:41:27.5033 (ChatUnitManageComponentSystem.cs:62) 退出当前聊天服== -2025-11-11 17:41:27.5033 (G2Common_ExitRequestHandler.cs:51) 退出聊天服成功== -2025-11-11 17:41:27.5214 (G2Common_ExitRequestHandler.cs:57) 退出房间服成功== -2025-11-11 17:41:27.5214 (GateUnitManageComponentSystem.cs:49) accountId:445703427981574146 下线成功 diff --git a/Main/bin/Debug/net9.0/CommandLine.dll b/Main/bin/Debug/net9.0/CommandLine.dll deleted file mode 100644 index 3eab2be..0000000 Binary files a/Main/bin/Debug/net9.0/CommandLine.dll and /dev/null differ diff --git a/Main/bin/Debug/net9.0/DnsClient.dll b/Main/bin/Debug/net9.0/DnsClient.dll deleted file mode 100644 index 39aa546..0000000 Binary files a/Main/bin/Debug/net9.0/DnsClient.dll and /dev/null differ diff --git a/Main/bin/Debug/net9.0/Entity.dll b/Main/bin/Debug/net9.0/Entity.dll deleted file mode 100644 index e3649fb..0000000 Binary files a/Main/bin/Debug/net9.0/Entity.dll and /dev/null differ diff --git a/Main/bin/Debug/net9.0/Entity.pdb b/Main/bin/Debug/net9.0/Entity.pdb deleted file mode 100644 index aa1be2e..0000000 Binary files a/Main/bin/Debug/net9.0/Entity.pdb and /dev/null differ diff --git a/Main/bin/Debug/net9.0/Fantasy-Net.dll b/Main/bin/Debug/net9.0/Fantasy-Net.dll deleted file mode 100644 index 9961ffb..0000000 Binary files a/Main/bin/Debug/net9.0/Fantasy-Net.dll and /dev/null differ diff --git a/Main/bin/Debug/net9.0/Fantasy.config b/Main/bin/Debug/net9.0/Fantasy.config deleted file mode 100644 index b50d8ab..0000000 --- a/Main/bin/Debug/net9.0/Fantasy.config +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Main/bin/Debug/net9.0/Fantasy.xsd b/Main/bin/Debug/net9.0/Fantasy.xsd deleted file mode 100644 index 6a64f66..0000000 --- a/Main/bin/Debug/net9.0/Fantasy.xsd +++ /dev/null @@ -1,345 +0,0 @@ - - - - - - - Fantasy框架配置文件根元素 - - - - - - 配置表路径设置 - - - - - 网络运行时配置 - - - - - 会话运行时配置 - - - - - 服务器配置 - - - - - - - - - - - 配置表文件路径 - - - - - - - - - - 机器配置列表 - - - - - 进程配置列表 - - - - - 世界配置列表 - - - - - 场景配置列表 - - - - - 单位配置列表 - - - - - - - - - - - - - - - - 机器ID - - - - - 外网IP地址 - - - - - 外网绑定IP地址 - - - - - 内网绑定IP地址 - - - - - - - - - - - - - - - 进程ID - - - - - 所属机器ID - - - - - 启动分组 - - - - - - - - - - - - - - - - 数据库类型 - - - - - - - - - - - - - - - - - - 数据库名称 - - - - - 数据库连接字符串 - - - - - - - - - 世界中配置的数据库 - - - - - - - - 世界ID - - - - - 世界名称 - - - - - - - - - - - - - - - 场景ID - - - - - 进程配置ID - - - - - 世界配置ID - - - - - 场景运行模式 - - - - - - - - - - - - 场景类型字符串 - - - - - 网络协议类型 - - - - - - - - - - - - - - 外网端口 - - - - - 内网端口 - - - - - - - - - 服务器内部网络协议 - - - - - - - - - - - 消息体最大长度(字节),默认1048560字节(约1.02MB) - - - - - - - - - Session idle check timeout (in milliseconds) - - - - - Session idle check interval (in milliseconds) - - - - - - - - - - - - - - - - 单位字典数据 - - - - - - 单位ID - - - - - 单位名称 - - - - - 单位模型 - - - - - - - - - - - 字典键 - - - - - 字典值 - - - - - - - - \ No newline at end of file diff --git a/Main/bin/Debug/net9.0/Hotfix.dll b/Main/bin/Debug/net9.0/Hotfix.dll deleted file mode 100644 index 88aaba0..0000000 Binary files a/Main/bin/Debug/net9.0/Hotfix.dll and /dev/null differ diff --git a/Main/bin/Debug/net9.0/Hotfix.pdb b/Main/bin/Debug/net9.0/Hotfix.pdb deleted file mode 100644 index cd22eb7..0000000 Binary files a/Main/bin/Debug/net9.0/Hotfix.pdb and /dev/null differ diff --git a/Main/bin/Debug/net9.0/Main.deps.json b/Main/bin/Debug/net9.0/Main.deps.json deleted file mode 100644 index 180e507..0000000 --- a/Main/bin/Debug/net9.0/Main.deps.json +++ /dev/null @@ -1,457 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v9.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v9.0": { - "Main/1.0.0": { - "dependencies": { - "Entity": "1.0.0", - "Hotfix": "1.0.0", - "NLog": "6.0.6" - }, - "runtime": { - "Main.dll": {} - } - }, - "CommandLineParser/2.9.1": { - "runtime": { - "lib/netstandard2.0/CommandLine.dll": { - "assemblyVersion": "2.9.1.0", - "fileVersion": "2.9.1.0" - } - } - }, - "DnsClient/1.6.1": { - "dependencies": { - "Microsoft.Win32.Registry": "5.0.0" - }, - "runtime": { - "lib/net5.0/DnsClient.dll": { - "assemblyVersion": "1.6.1.0", - "fileVersion": "1.6.1.0" - } - } - }, - "Fantasy-Net/2025.2.0": { - "dependencies": { - "CommandLineParser": "2.9.1", - "MongoDB.Bson": "3.5.0", - "MongoDB.Driver": "3.5.0", - "Newtonsoft.Json": "13.0.4", - "protobuf-net": "3.2.56" - }, - "runtime": { - "lib/net9.0/Fantasy-Net.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {}, - "Microsoft.Extensions.Logging.Abstractions/8.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" - } - }, - "Microsoft.IdentityModel.Abstractions/8.14.0": { - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { - "assemblyVersion": "8.14.0.0", - "fileVersion": "8.14.0.60815" - } - } - }, - "Microsoft.IdentityModel.JsonWebTokens/8.14.0": { - "dependencies": { - "Microsoft.IdentityModel.Tokens": "8.14.0" - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "assemblyVersion": "8.14.0.0", - "fileVersion": "8.14.0.60815" - } - } - }, - "Microsoft.IdentityModel.Logging/8.14.0": { - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "8.14.0" - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { - "assemblyVersion": "8.14.0.0", - "fileVersion": "8.14.0.60815" - } - } - }, - "Microsoft.IdentityModel.Tokens/8.14.0": { - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.IdentityModel.Logging": "8.14.0" - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { - "assemblyVersion": "8.14.0.0", - "fileVersion": "8.14.0.60815" - } - } - }, - "Microsoft.NETCore.Platforms/5.0.0": {}, - "Microsoft.Win32.Registry/5.0.0": { - "dependencies": { - "System.Security.AccessControl": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - } - }, - "MongoDB.Bson/3.5.0": { - "dependencies": { - "System.Memory": "4.5.5", - "System.Runtime.CompilerServices.Unsafe": "5.0.0" - }, - "runtime": { - "lib/net6.0/MongoDB.Bson.dll": { - "assemblyVersion": "3.5.0.0", - "fileVersion": "3.5.0.0" - } - } - }, - "MongoDB.Driver/3.5.0": { - "dependencies": { - "DnsClient": "1.6.1", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "MongoDB.Bson": "3.5.0", - "SharpCompress": "0.30.1", - "Snappier": "1.0.0", - "System.Buffers": "4.5.1", - "ZstdSharp.Port": "0.7.3" - }, - "runtime": { - "lib/net6.0/MongoDB.Driver.dll": { - "assemblyVersion": "3.5.0.0", - "fileVersion": "3.5.0.0" - } - } - }, - "Newtonsoft.Json/13.0.4": { - "runtime": { - "lib/net6.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.4.30916" - } - } - }, - "NLog/6.0.6": { - "runtime": { - "lib/netstandard2.1/NLog.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.6.4706" - } - } - }, - "protobuf-net/3.2.56": { - "dependencies": { - "protobuf-net.Core": "3.2.56" - }, - "runtime": { - "lib/net8.0/protobuf-net.dll": { - "assemblyVersion": "3.0.0.0", - "fileVersion": "3.2.56.57311" - } - } - }, - "protobuf-net.Core/3.2.56": { - "runtime": { - "lib/net8.0/protobuf-net.Core.dll": { - "assemblyVersion": "3.0.0.0", - "fileVersion": "3.2.56.57311" - } - } - }, - "SharpCompress/0.30.1": { - "runtime": { - "lib/net5.0/SharpCompress.dll": { - "assemblyVersion": "0.30.1.0", - "fileVersion": "0.30.1.0" - } - } - }, - "Snappier/1.0.0": { - "runtime": { - "lib/net5.0/Snappier.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "System.Buffers/4.5.1": {}, - "System.IdentityModel.Tokens.Jwt/8.14.0": { - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "8.14.0", - "Microsoft.IdentityModel.Tokens": "8.14.0" - }, - "runtime": { - "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": { - "assemblyVersion": "8.14.0.0", - "fileVersion": "8.14.0.60815" - } - } - }, - "System.Memory/4.5.5": {}, - "System.Runtime.CompilerServices.Unsafe/5.0.0": {}, - "System.Security.AccessControl/5.0.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - } - }, - "System.Security.Principal.Windows/5.0.0": {}, - "ZstdSharp.Port/0.7.3": { - "runtime": { - "lib/net7.0/ZstdSharp.dll": { - "assemblyVersion": "0.7.3.0", - "fileVersion": "0.7.3.0" - } - } - }, - "Entity/1.0.0": { - "dependencies": { - "Fantasy-Net": "2025.2.0", - "Microsoft.IdentityModel.Tokens": "8.14.0", - "System.IdentityModel.Tokens.Jwt": "8.14.0", - "ThirdParty": "1.0.0" - }, - "runtime": { - "Entity.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "Hotfix/1.0.0": { - "dependencies": { - "Entity": "1.0.0" - }, - "runtime": { - "Hotfix.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "ThirdParty/1.0.0": { - "runtime": { - "ThirdParty.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - } - } - }, - "libraries": { - "Main/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "CommandLineParser/2.9.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OE0sl1/sQ37bjVsPKKtwQlWDgqaxWgtme3xZz7JssWUzg5JpMIyHgCTY9MVMxOg48fJ1AgGT3tgdH5m/kQ5xhA==", - "path": "commandlineparser/2.9.1", - "hashPath": "commandlineparser.2.9.1.nupkg.sha512" - }, - "DnsClient/1.6.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4H/f2uYJOZ+YObZjpY9ABrKZI+JNw3uizp6oMzTXwDw6F+2qIPhpRl/1t68O/6e98+vqNiYGu+lswmwdYUy3gg==", - "path": "dnsclient/1.6.1", - "hashPath": "dnsclient.1.6.1.nupkg.sha512" - }, - "Fantasy-Net/2025.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vCkduwxkMlH8GozyS+ZlWGLC4nGjFGaL13Ah4w5HL55XAJaAhe+RX+gbSRNBeJf1Uu0cjG2MgVyS4NX7bXdN4g==", - "path": "fantasy-net/2025.2.0", - "hashPath": "fantasy-net.2025.2.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==", - "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", - "path": "microsoft.extensions.logging.abstractions/8.0.0", - "hashPath": "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Abstractions/8.14.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iwbCpSjD3ehfTwBhtSNEtKPK0ICun6ov7Ibx6ISNA9bfwIyzI2Siwyi9eJFCJBwxowK9xcA1mj+jBWiigeqgcQ==", - "path": "microsoft.identitymodel.abstractions/8.14.0", - "hashPath": "microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.JsonWebTokens/8.14.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4jOpiA4THdtpLyMdAb24dtj7+6GmvhOhxf5XHLYWmPKF8ApEnApal1UnJsKO4HxUWRXDA6C4WQVfYyqsRhpNpQ==", - "path": "microsoft.identitymodel.jsonwebtokens/8.14.0", - "hashPath": "microsoft.identitymodel.jsonwebtokens.8.14.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Logging/8.14.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eqqnemdW38CKZEHS6diA50BV94QICozDZEvSrsvN3SJXUFwVB9gy+/oz76gldP7nZliA16IglXjXTCTdmU/Ejg==", - "path": "microsoft.identitymodel.logging/8.14.0", - "hashPath": "microsoft.identitymodel.logging.8.14.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Tokens/8.14.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lKIZiBiGd36k02TCdMHp1KlNWisyIvQxcYJvIkz7P4gSQ9zi8dgh6S5Grj8NNG7HWYIPfQymGyoZ6JB5d1Lo1g==", - "path": "microsoft.identitymodel.tokens/8.14.0", - "hashPath": "microsoft.identitymodel.tokens.8.14.0.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", - "path": "microsoft.netcore.platforms/5.0.0", - "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512" - }, - "Microsoft.Win32.Registry/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", - "path": "microsoft.win32.registry/5.0.0", - "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512" - }, - "MongoDB.Bson/3.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JGNK6BanLDEifgkvPLqVFCPus5EDCy416pxf1dxUBRSVd3D9+NB3AvMVX190eXlk5/UXuCxpsQv7jWfNKvppBQ==", - "path": "mongodb.bson/3.5.0", - "hashPath": "mongodb.bson.3.5.0.nupkg.sha512" - }, - "MongoDB.Driver/3.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ST90u7psyMkNNOWFgSkexsrB3kPn7Ynl2DlMFj2rJyYuc6SIxjmzu4ufy51yzM+cPVE1SvVcdb5UFobrRw6cMg==", - "path": "mongodb.driver/3.5.0", - "hashPath": "mongodb.driver.3.5.0.nupkg.sha512" - }, - "Newtonsoft.Json/13.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pdgNNMai3zv51W5aq268sujXUyx7SNdE2bj1wZcWjAQrKMFZV260lbqYop1d2GM67JI1huLRwxo9ZqnfF/lC6A==", - "path": "newtonsoft.json/13.0.4", - "hashPath": "newtonsoft.json.13.0.4.nupkg.sha512" - }, - "NLog/6.0.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eUd/LDIwPtufj5OxtzFYiwuoKpzaS87iqO9P9D05avLCk4jIoOlqMwRH0o/43LmzM+CmgVAdDrCOq/rOK0sDKw==", - "path": "nlog/6.0.6", - "hashPath": "nlog.6.0.6.nupkg.sha512" - }, - "protobuf-net/3.2.56": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4IPJeTYAMNewlN8MDaFkcmR/9hLhJeo9eARnTh104zh7mf+vXT2gu5MUfUnkSQU+CH578Q6vcdU7LQDQPG6eaw==", - "path": "protobuf-net/3.2.56", - "hashPath": "protobuf-net.3.2.56.nupkg.sha512" - }, - "protobuf-net.Core/3.2.56": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d6QOukTpDzs7zZv9tPnBZMtvHDNeHJQXUhMx54g4urUQsXK3oo9U70H9HvklYq7hlQ4A7AHJl7EVEqyCXXIl8Q==", - "path": "protobuf-net.core/3.2.56", - "hashPath": "protobuf-net.core.3.2.56.nupkg.sha512" - }, - "SharpCompress/0.30.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==", - "path": "sharpcompress/0.30.1", - "hashPath": "sharpcompress.0.30.1.nupkg.sha512" - }, - "Snappier/1.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rFtK2KEI9hIe8gtx3a0YDXdHOpedIf9wYCEYtBEmtlyiWVX3XlCNV03JrmmAi/Cdfn7dxK+k0sjjcLv4fpHnqA==", - "path": "snappier/1.0.0", - "hashPath": "snappier.1.0.0.nupkg.sha512" - }, - "System.Buffers/4.5.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", - "path": "system.buffers/4.5.1", - "hashPath": "system.buffers.4.5.1.nupkg.sha512" - }, - "System.IdentityModel.Tokens.Jwt/8.14.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EYGgN/S+HK7S6F3GaaPLFAfK0UzMrkXFyWCvXpQWFYmZln3dqtbyIO7VuTM/iIIPMzkelg8ZLlBPvMhxj6nOAA==", - "path": "system.identitymodel.tokens.jwt/8.14.0", - "hashPath": "system.identitymodel.tokens.jwt.8.14.0.nupkg.sha512" - }, - "System.Memory/4.5.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", - "path": "system.memory/4.5.5", - "hashPath": "system.memory.4.5.5.nupkg.sha512" - }, - "System.Runtime.CompilerServices.Unsafe/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==", - "path": "system.runtime.compilerservices.unsafe/5.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512" - }, - "System.Security.AccessControl/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", - "path": "system.security.accesscontrol/5.0.0", - "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512" - }, - "System.Security.Principal.Windows/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", - "path": "system.security.principal.windows/5.0.0", - "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" - }, - "ZstdSharp.Port/0.7.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-U9Ix4l4cl58Kzz1rJzj5hoVTjmbx1qGMwzAcbv1j/d3NzrFaESIurQyg+ow4mivCgkE3S413y+U9k4WdnEIkRA==", - "path": "zstdsharp.port/0.7.3", - "hashPath": "zstdsharp.port.0.7.3.nupkg.sha512" - }, - "Entity/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Hotfix/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "ThirdParty/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/Main/bin/Debug/net9.0/Main.dll b/Main/bin/Debug/net9.0/Main.dll deleted file mode 100644 index 7d94324..0000000 Binary files a/Main/bin/Debug/net9.0/Main.dll and /dev/null differ diff --git a/Main/bin/Debug/net9.0/Main.exe b/Main/bin/Debug/net9.0/Main.exe deleted file mode 100644 index f3fe461..0000000 Binary files a/Main/bin/Debug/net9.0/Main.exe and /dev/null differ diff --git a/Main/bin/Debug/net9.0/Main.pdb b/Main/bin/Debug/net9.0/Main.pdb deleted file mode 100644 index 331c676..0000000 Binary files a/Main/bin/Debug/net9.0/Main.pdb and /dev/null differ diff --git a/Main/bin/Debug/net9.0/Main.runtimeconfig.json b/Main/bin/Debug/net9.0/Main.runtimeconfig.json deleted file mode 100644 index 27e402f..0000000 --- a/Main/bin/Debug/net9.0/Main.runtimeconfig.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net9.0", - "frameworks": [ - { - "name": "Microsoft.NETCore.App", - "version": "9.0.0" - }, - { - "name": "Microsoft.AspNetCore.App", - "version": "9.0.0" - } - ], - "configProperties": { - "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false - } - } -} \ No newline at end of file diff --git a/Main/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll b/Main/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll deleted file mode 100644 index f85ae59..0000000 Binary files a/Main/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll and /dev/null differ diff --git a/Main/bin/Debug/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll b/Main/bin/Debug/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll deleted file mode 100644 index 4c4d3ab..0000000 Binary files a/Main/bin/Debug/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll and /dev/null differ diff --git a/Main/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll b/Main/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll deleted file mode 100644 index 170078a..0000000 Binary files a/Main/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll and /dev/null differ diff --git a/Main/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll b/Main/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll deleted file mode 100644 index 009ce65..0000000 Binary files a/Main/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll and /dev/null differ diff --git a/Main/bin/Debug/net9.0/MongoDB.Bson.dll b/Main/bin/Debug/net9.0/MongoDB.Bson.dll deleted file mode 100644 index b96f918..0000000 Binary files a/Main/bin/Debug/net9.0/MongoDB.Bson.dll and /dev/null differ diff --git a/Main/bin/Debug/net9.0/MongoDB.Driver.dll b/Main/bin/Debug/net9.0/MongoDB.Driver.dll deleted file mode 100644 index 1b8f536..0000000 Binary files a/Main/bin/Debug/net9.0/MongoDB.Driver.dll and /dev/null differ diff --git a/Main/bin/Debug/net9.0/NLog.config b/Main/bin/Debug/net9.0/NLog.config deleted file mode 100644 index 4df5ea1..0000000 --- a/Main/bin/Debug/net9.0/NLog.config +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Main/bin/Debug/net9.0/NLog.dll b/Main/bin/Debug/net9.0/NLog.dll deleted file mode 100644 index 7cae440..0000000 Binary files a/Main/bin/Debug/net9.0/NLog.dll and /dev/null differ diff --git a/Main/bin/Debug/net9.0/Newtonsoft.Json.dll b/Main/bin/Debug/net9.0/Newtonsoft.Json.dll deleted file mode 100644 index 5813d8c..0000000 Binary files a/Main/bin/Debug/net9.0/Newtonsoft.Json.dll and /dev/null differ diff --git a/Main/bin/Debug/net9.0/SharpCompress.dll b/Main/bin/Debug/net9.0/SharpCompress.dll deleted file mode 100644 index c1a7f07..0000000 Binary files a/Main/bin/Debug/net9.0/SharpCompress.dll and /dev/null differ diff --git a/Main/bin/Debug/net9.0/Snappier.dll b/Main/bin/Debug/net9.0/Snappier.dll deleted file mode 100644 index 9b68e85..0000000 Binary files a/Main/bin/Debug/net9.0/Snappier.dll and /dev/null differ diff --git a/Main/bin/Debug/net9.0/System.IdentityModel.Tokens.Jwt.dll b/Main/bin/Debug/net9.0/System.IdentityModel.Tokens.Jwt.dll deleted file mode 100644 index 5f487d8..0000000 Binary files a/Main/bin/Debug/net9.0/System.IdentityModel.Tokens.Jwt.dll and /dev/null differ diff --git a/Main/bin/Debug/net9.0/ThirdParty.dll b/Main/bin/Debug/net9.0/ThirdParty.dll deleted file mode 100644 index c68db15..0000000 Binary files a/Main/bin/Debug/net9.0/ThirdParty.dll and /dev/null differ diff --git a/Main/bin/Debug/net9.0/ThirdParty.pdb b/Main/bin/Debug/net9.0/ThirdParty.pdb deleted file mode 100644 index 6d74378..0000000 Binary files a/Main/bin/Debug/net9.0/ThirdParty.pdb and /dev/null differ diff --git a/Main/bin/Debug/net9.0/ZstdSharp.dll b/Main/bin/Debug/net9.0/ZstdSharp.dll deleted file mode 100644 index 5d93f7e..0000000 Binary files a/Main/bin/Debug/net9.0/ZstdSharp.dll and /dev/null differ diff --git a/Main/bin/Debug/net9.0/configs.json b/Main/bin/Debug/net9.0/configs.json deleted file mode 100644 index a0de76b..0000000 --- a/Main/bin/Debug/net9.0/configs.json +++ /dev/null @@ -1,1871 +0,0 @@ -{ - "RodRingConfig": [ - { - "Id": 1, - "Model": "rod_rings/rumoi/rumoi_oxiline_spin", - "Strength": 40 - }, - { - "Id": 2, - "Model": "rod_rings/smt/smt_pure_ceramic_bolo", - "Strength": 40 - } - ], - "LureConfig": [ - { - "Id": 80001, - "Hook": [ - 700102 - ], - "EfficacyBase": 50 - }, - { - "Id": 80002, - "Hook": [ - 700102 - ], - "EfficacyBase": 50 - }, - { - "Id": 80003, - "Hook": [ - 0 - ], - "EfficacyBase": 50 - }, - { - "Id": 80004, - "Hook": [ - 0 - ], - "EfficacyBase": 50 - } - ], - "ItemConfig": [ - { - "Id": 30001, - "Model": "rods/syberia/tele_10037/tele_10037_t13", - "Type": 1, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 30002, - "Model": "rods/syberia/bolo_10021/bolo_10021_LB400", - "Type": 0, - "Quality": 2, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 30003, - "Model": "rods/syberia/spin_10034/spin_10034_S60H", - "Type": 0, - "Quality": 3, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 30004, - "Model": "rods/syberia/carp_10046/carp_10046_360H", - "Type": 0, - "Quality": 4, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 30005, - "Model": "rods/syberia/cast_10018/cast_10018_CST60MH", - "Type": 0, - "Quality": 5, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 30006, - "Model": "rods/syberia/feeder_10048/feeder_10048_FD390", - "Type": 0, - "Quality": 4, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 30007, - "Model": "rods/syberia/jerk_10043/jerk_10043_JR60XH", - "Type": 0, - "Quality": 3, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 30008, - "Model": "rods/syberia/mark_10168/mark_10168_3LB", - "Type": 0, - "Quality": 0, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 30009, - "Model": "rods/syberia/match_10025/match_10025_M130H", - "Type": 0, - "Quality": 0, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 30010, - "Model": "rods/syberia/picker_10052/picker_10052_P300-MH", - "Type": 0, - "Quality": 0, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 30011, - "Model": "rods/syberia/spod_10133/spod_10133_3LB", - "Type": 0, - "Quality": 0, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 40001, - "Model": "reels/syberia/spin_5002/spin_5002", - "Type": 0, - "Quality": 3, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 40002, - "Model": "reels/syberia/spin_5036/spin_5036", - "Type": 0, - "Quality": 4, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 40003, - "Model": "reels/syberia/bclp_5005/bclp_5005", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 40004, - "Model": "reels/syberia/bclp_5032/bclp_5032", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 40005, - "Model": "reels/syberia/bcr_5034/bcr_5034", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 40006, - "Model": "reels/syberia/bcr_5062/bcr_5062", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 40007, - "Model": "reels/syberia/c_spin_5386/c_spin_5386", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 40008, - "Model": "reels/syberia/c_spin_5387/c_spin_5387", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 40009, - "Model": "reels/syberia/conv_5393/conv_5393", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 40010, - "Model": "reels/syberia/conv_5396/conv_5396", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 50001, - "Model": "bobbers/expressfishing/bob_25001/bob_25001", - "Type": 0, - "Quality": 1, - "Brand": 1, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 50002, - "Model": "bobbers/expressfishing/bob_25002/bob_25002", - "Type": 0, - "Quality": 2, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 50003, - "Model": "bobbers/expressfishing/bob_25003/bob_25003", - "Type": 0, - "Quality": 3, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 50004, - "Model": "bobbers/expressfishing/bob_25004/bob_25004", - "Type": 0, - "Quality": 4, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 50005, - "Model": "bobbers/expressfishing/bob_25162_25163/bob_25162", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 50006, - "Model": "bobbers/expressfishing/bob_25162_25163/bob_25163", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 50007, - "Model": "bobbers/expressfishing/bob_25164_25165/bob_25164", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 50008, - "Model": "bobbers/expressfishing/bob_25164_25165/bob_25165", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 50009, - "Model": "bobbers/expressfishing/bob_25166_25167/bob_25166", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 50010, - "Model": "bobbers/expressfishing/bob_25166_25167/bob_25167", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 50011, - "Model": "bobbers/expressfishing/float_ny_1/float_ny25_1", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 50012, - "Model": "bobbers/expressfishing/float_ny_1/float_ny25_2", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 50013, - "Model": "bobbers/expressfishing/float_ny_1/float_ny25_3", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 50014, - "Model": "bobbers/expressfishing/float_ny_1/float_ny_1", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 60001, - "Model": "lines/solid_materials/mono_40340/braid_40388", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 60002, - "Model": "lines/solid_materials/mono_40340/braid_40389", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 60003, - "Model": "lines/solid_materials/mono_40340/braid_40390", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 60004, - "Model": "lines/solid_materials/mono_40340/braid_40391", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 60005, - "Model": "lines/solid_materials/mono_40340/braid_40392", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 60006, - "Model": "lines/solid_materials/mono_40340/braid_40393", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 60007, - "Model": "lines/solid_materials/mono_40340/braid_40394", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 60008, - "Model": "lines/solid_materials/mono_40340/braid_40395", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 60009, - "Model": "lines/solid_materials/mono_40340/braid_40396", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 60010, - "Model": "lines/solid_materials/mono_40340/braid_40397", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 70001, - "Model": "baits/worm_01/worm_01", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 70002, - "Model": "baits/fly/fly", - "Type": 0, - "Quality": 2, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 70003, - "Model": "baits/black_leech/black_leech", - "Type": 0, - "Quality": 2, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 70004, - "Model": "baits/bread/bread", - "Type": 0, - "Quality": 3, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 80001, - "Model": "lures/express_fishing/crankbaits_1/738/crankbaits_738", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 80002, - "Model": "lures/express_fishing/crankbaits_1/744/crankbaits_744", - "Type": 0, - "Quality": 2, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 80003, - "Model": "lures/express_fishing/crankbaits_1/752/crankbaits_752", - "Type": 0, - "Quality": 3, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 80004, - "Model": "lures/express_fishing/crankbaits_1/863/crankbaits_863", - "Type": 0, - "Quality": 4, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 80005, - "Model": "lures/express_fishing/poppers_1/poppers_586/poppers_586", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 80006, - "Model": "lures/express_fishing/softplastic/ef_supergrab_4/softplastic_g_1610", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 80007, - "Model": "lures/express_fishing/softplastic/ef_supergrab_4/softplastic_g_1611", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 80008, - "Model": "lures/express_fishing/softplastic/ef_superminnow_4/softplastic_m_1624", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 80009, - "Model": "lures/express_fishing/spinnerbaits_1/594/spinnerbaits_594", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 80010, - "Model": "lures/express_fishing/spinnerbaits_1/596/spinnerbaits_596", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 80011, - "Model": "lures/express_fishing/spinnerbaits_1/597/spinnerbaits_597", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 80012, - "Model": "lures/express_fishing/spoon_lures_1/spoon_lures_666/spoon_lures_666", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 80013, - "Model": "lures/express_fishing/spoon_lures_1/spoon_lures_1045/spoon_lures_1045", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 90001, - "Model": "hooks/alliance/c_hook_20789_20794/c_hook_20789", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 90002, - "Model": "hooks/berserk_hooks/clas_20421_20446/clas_20421", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 90003, - "Model": "hooks/berserk_hooks/clas_20447_20472/clas_20447", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 90004, - "Model": "hooks/berserk_hooks/clas_20473_20492/clas_20473", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 90005, - "Model": "hooks/berserk_hooks/clas_20493_20514/clas_20493", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 90006, - "Model": "hooks/berserk_hooks/clas_20515_20532/clas_20515", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 90007, - "Model": "hooks/berserk_hooks/clas_20533_20550/clas_20533", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 90008, - "Model": "hooks/berserk_hooks/jhead_20596_20603/jhead_20596", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 90009, - "Model": "hooks/berserk_hooks/jhead_20604_20613/jhead_20604", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 90010, - "Model": "hooks/berserk_hooks/jhead_20614_20622/jhead_20614", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 90011, - "Model": "hooks/berserk_hooks/jhead_20959_20994/jhead_20959", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 90012, - "Model": "hooks/berserk_hooks/lfish_20637_20643/lfish_20637", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 90013, - "Model": "hooks/berserk_hooks/lfish_20644_20650/lfish_20644", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 90014, - "Model": "hooks/berserk_hooks/mdhook_20929_20935/mdhook_20929", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 90015, - "Model": "hooks/berserk_hooks/mhook_20878/mhook_20878", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 90016, - "Model": "hooks/berserk_hooks/triple_20569_20577/triple_20569", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 90017, - "Model": "hooks/berserk_hooks/triple_20578_20586/triple_20578", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 90018, - "Model": "hooks/berserk_hooks/triple_20660_20668/triple_20660", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 90019, - "Model": "hooks/berserk_hooks/triple_20669_20677/triple_20669", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 90020, - "Model": "hooks/berserk_hooks/woffset_20623_20636/woffset_20623", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 100001, - "Model": "weights/Weight2_5g", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 100002, - "Model": "weights/weight_olive_1g", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 100003, - "Model": "sinkers/express fishing/bulsinker_30016_30056/bulsinker_30016", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 100004, - "Model": "sinkers/express fishing/dsinker_30001_30005/dsinker_30001", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 100005, - "Model": "sinkers/express fishing/psinker_30010_30014/psinker_30010", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 100006, - "Model": "sinkers/hvz/flpsinker_30138_30339/flpsinker_30138", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 100007, - "Model": "sinkers/hvz/flsinker_30110_30137/flsinker_30110", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 100008, - "Model": "sinkers/hvz/horsinker_30340_30371/horsinker_30340", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 100009, - "Model": "sinkers/hvz/mrksinker_30371/mrksinker_30371", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 100010, - "Model": "sinkers/hvz/trisinker_30282_30463/trisinker_30282", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - }, - { - "Id": 110001, - "Model": "Feeders/Feeder 1/FeedTrash 1", - "Type": 0, - "Quality": 1, - "Brand": 0, - "Weight": 0, - "Length": 0, - "Max": 0, - "AutoUse": 0, - "Deal": 0 - } - ], - "ReelConfig": [ - { - "Id": 40001, - "ReelType": 1, - "GearRatio": [ - "7" - ], - "Strength": 40 - }, - { - "Id": 40002, - "ReelType": 1, - "GearRatio": [ - "5" - ], - "Strength": 40 - }, - { - "Id": 40003, - "ReelType": 2, - "GearRatio": [], - "Strength": 0 - }, - { - "Id": 40004, - "ReelType": 2, - "GearRatio": [], - "Strength": 0 - }, - { - "Id": 40005, - "ReelType": 3, - "GearRatio": [], - "Strength": 0 - }, - { - "Id": 40006, - "ReelType": 3, - "GearRatio": [], - "Strength": 0 - }, - { - "Id": 40007, - "ReelType": 1, - "GearRatio": [], - "Strength": 0 - }, - { - "Id": 40008, - "ReelType": 1, - "GearRatio": [], - "Strength": 0 - }, - { - "Id": 40009, - "ReelType": 3, - "GearRatio": [], - "Strength": 0 - }, - { - "Id": 40010, - "ReelType": 3, - "GearRatio": [], - "Strength": 0 - } - ], - "LineConfig": [ - { - "Id": 60001, - "Strength": 40, - "Size": 1 - }, - { - "Id": 60002, - "Strength": 40, - "Size": 1 - } - ], - "HookConfig": [ - { - "Id": 90001, - "Zadzior": 1 - }, - { - "Id": 90002, - "Zadzior": 1 - }, - { - "Id": 90003, - "Zadzior": 1 - }, - { - "Id": 90004, - "Zadzior": 1 - }, - { - "Id": 90005, - "Zadzior": 1 - } - ], - "RodConfig": [ - { - "Id": 30001, - "RodType": 1, - "Ring": 0, - "Strength": 40, - "MaxRange": 67, - "ConstructionType": 0 - }, - { - "Id": 30002, - "RodType": 3, - "Ring": 2, - "Strength": 40, - "MaxRange": 30, - "ConstructionType": 0 - }, - { - "Id": 30003, - "RodType": 2, - "Ring": 1, - "Strength": 40, - "MaxRange": 30, - "ConstructionType": 0 - }, - { - "Id": 30004, - "RodType": 1, - "Ring": 1, - "Strength": 40, - "MaxRange": 30, - "ConstructionType": 0 - }, - { - "Id": 30005, - "RodType": 2, - "Ring": 1, - "Strength": 40, - "MaxRange": 30, - "ConstructionType": 0 - }, - { - "Id": 30006, - "RodType": 2, - "Ring": 1, - "Strength": 40, - "MaxRange": 30, - "ConstructionType": 0 - }, - { - "Id": 30007, - "RodType": 2, - "Ring": 1, - "Strength": 40, - "MaxRange": 30, - "ConstructionType": 0 - }, - { - "Id": 30008, - "RodType": 2, - "Ring": 1, - "Strength": 40, - "MaxRange": 30, - "ConstructionType": 0 - }, - { - "Id": 30009, - "RodType": 2, - "Ring": 1, - "Strength": 40, - "MaxRange": 30, - "ConstructionType": 0 - }, - { - "Id": 30010, - "RodType": 2, - "Ring": 1, - "Strength": 40, - "MaxRange": 30, - "ConstructionType": 0 - }, - { - "Id": 30011, - "RodType": 2, - "Ring": 1, - "Strength": 40, - "MaxRange": 30, - "ConstructionType": 0 - } - ], - "FishConfig": [ - { - "Id": 210001, - "Model": [ - "Burbot_B" - ], - "Type": 0, - "SpeciesName": 10, - "MinWeight": 1, - "MaxWeight": 34, - "Accept": 2100001 - }, - { - "Id": 210002, - "Model": [ - "CarpCommon_B" - ], - "Type": 0, - "SpeciesName": 11, - "MinWeight": 1, - "MaxWeight": 34, - "Accept": 2100001 - }, - { - "Id": 210003, - "Model": [ - "CarpGrass_B" - ], - "Type": 0, - "SpeciesName": 14, - "MinWeight": 1, - "MaxWeight": 34, - "Accept": 2100001 - }, - { - "Id": 210004, - "Model": [ - "CarpCrucian_B" - ], - "Type": 0, - "SpeciesName": 16, - "MinWeight": 1, - "MaxWeight": 34, - "Accept": 2100001 - } - ], - "BasicConfig": [ - { - "Id": 1001, - "Name": "Weights/Weight2_5g", - "Val": [ - "0" - ] - } - ], - "InitConfig": [ - { - "Id": 10001, - "Amount": 100 - }, - { - "Id": 10002, - "Amount": 200 - }, - { - "Id": 30001, - "Amount": 1 - }, - { - "Id": 30002, - "Amount": 1 - }, - { - "Id": 30003, - "Amount": 1 - }, - { - "Id": 30004, - "Amount": 1 - }, - { - "Id": 30005, - "Amount": 1 - }, - { - "Id": 30006, - "Amount": 1 - }, - { - "Id": 30007, - "Amount": 1 - }, - { - "Id": 30008, - "Amount": 1 - }, - { - "Id": 30009, - "Amount": 1 - }, - { - "Id": 30010, - "Amount": 1 - }, - { - "Id": 30011, - "Amount": 1 - }, - { - "Id": 40001, - "Amount": 1 - }, - { - "Id": 40002, - "Amount": 1 - }, - { - "Id": 40003, - "Amount": 1 - }, - { - "Id": 40004, - "Amount": 1 - }, - { - "Id": 40005, - "Amount": 1 - }, - { - "Id": 40006, - "Amount": 1 - }, - { - "Id": 40007, - "Amount": 1 - }, - { - "Id": 40008, - "Amount": 1 - }, - { - "Id": 40009, - "Amount": 1 - }, - { - "Id": 40010, - "Amount": 1 - }, - { - "Id": 50001, - "Amount": 1 - }, - { - "Id": 50002, - "Amount": 1 - }, - { - "Id": 50003, - "Amount": 1 - }, - { - "Id": 50004, - "Amount": 1 - }, - { - "Id": 50005, - "Amount": 1 - }, - { - "Id": 50006, - "Amount": 1 - }, - { - "Id": 50007, - "Amount": 1 - }, - { - "Id": 50008, - "Amount": 1 - }, - { - "Id": 50009, - "Amount": 1 - }, - { - "Id": 50010, - "Amount": 1 - }, - { - "Id": 50011, - "Amount": 1 - }, - { - "Id": 50012, - "Amount": 1 - }, - { - "Id": 50013, - "Amount": 1 - }, - { - "Id": 50014, - "Amount": 1 - }, - { - "Id": 60001, - "Amount": 1 - }, - { - "Id": 60002, - "Amount": 1 - }, - { - "Id": 60003, - "Amount": 1 - }, - { - "Id": 60004, - "Amount": 1 - }, - { - "Id": 60005, - "Amount": 1 - }, - { - "Id": 60006, - "Amount": 1 - }, - { - "Id": 60007, - "Amount": 1 - }, - { - "Id": 60008, - "Amount": 1 - }, - { - "Id": 60009, - "Amount": 1 - }, - { - "Id": 60010, - "Amount": 1 - }, - { - "Id": 70001, - "Amount": 1 - }, - { - "Id": 70002, - "Amount": 1 - }, - { - "Id": 70003, - "Amount": 1 - }, - { - "Id": 70004, - "Amount": 1 - }, - { - "Id": 80001, - "Amount": 1 - }, - { - "Id": 80002, - "Amount": 1 - }, - { - "Id": 80003, - "Amount": 1 - }, - { - "Id": 80004, - "Amount": 1 - }, - { - "Id": 80005, - "Amount": 1 - }, - { - "Id": 80006, - "Amount": 1 - }, - { - "Id": 80007, - "Amount": 1 - }, - { - "Id": 80008, - "Amount": 1 - }, - { - "Id": 80009, - "Amount": 1 - }, - { - "Id": 80010, - "Amount": 1 - }, - { - "Id": 80011, - "Amount": 1 - }, - { - "Id": 80012, - "Amount": 1 - }, - { - "Id": 80013, - "Amount": 1 - }, - { - "Id": 90001, - "Amount": 1 - }, - { - "Id": 90002, - "Amount": 1 - }, - { - "Id": 90003, - "Amount": 1 - }, - { - "Id": 90004, - "Amount": 1 - }, - { - "Id": 90005, - "Amount": 1 - }, - { - "Id": 90006, - "Amount": 1 - }, - { - "Id": 90007, - "Amount": 1 - }, - { - "Id": 90008, - "Amount": 1 - }, - { - "Id": 90009, - "Amount": 1 - }, - { - "Id": 90010, - "Amount": 1 - }, - { - "Id": 90011, - "Amount": 1 - }, - { - "Id": 90012, - "Amount": 1 - }, - { - "Id": 90013, - "Amount": 1 - }, - { - "Id": 90014, - "Amount": 1 - }, - { - "Id": 90015, - "Amount": 1 - }, - { - "Id": 90016, - "Amount": 1 - }, - { - "Id": 90017, - "Amount": 1 - }, - { - "Id": 90018, - "Amount": 1 - }, - { - "Id": 90019, - "Amount": 1 - }, - { - "Id": 90020, - "Amount": 1 - }, - { - "Id": 100001, - "Amount": 1 - }, - { - "Id": 100002, - "Amount": 1 - }, - { - "Id": 100003, - "Amount": 1 - }, - { - "Id": 100004, - "Amount": 1 - }, - { - "Id": 100005, - "Amount": 1 - }, - { - "Id": 100006, - "Amount": 1 - }, - { - "Id": 100007, - "Amount": 1 - }, - { - "Id": 100008, - "Amount": 1 - }, - { - "Id": 100009, - "Amount": 1 - }, - { - "Id": 100010, - "Amount": 1 - }, - { - "Id": 110001, - "Amount": 1 - } - ], - "BobberConfig": [ - { - "Id": 50001, - "Displacement": 40, - "NightLight": 0 - }, - { - "Id": 50002, - "Displacement": 40, - "NightLight": 0 - }, - { - "Id": 50003, - "Displacement": 40, - "NightLight": 0 - }, - { - "Id": 50004, - "Displacement": 40, - "NightLight": 0 - } - ], - "FeederConfig": [ - { - "Id": 110001, - "Capacity": 100, - "Weight": 5 - } - ], - "BaitConfig": [ - { - "Id": 70001, - "EfficacyBase": 15, - "Arr": [ - 250, - 1, - 2, - 3 - ], - "ArrStr": [ - "d", - "a", - "bb", - "e|12" - ] - }, - { - "Id": 70002, - "EfficacyBase": 15, - "Arr": [ - 120, - 4, - 3 - ], - "ArrStr": [ - "120", - "4", - "3" - ] - }, - { - "Id": 70003, - "EfficacyBase": 15, - "Arr": [ - 120 - ], - "ArrStr": [ - "kkk" - ] - }, - { - "Id": 70004, - "EfficacyBase": 15, - "Arr": [ - 120 - ], - "ArrStr": [ - "11|33", - "44|2" - ] - } - ] -} \ No newline at end of file diff --git a/Main/bin/Debug/net9.0/protobuf-net.Core.dll b/Main/bin/Debug/net9.0/protobuf-net.Core.dll deleted file mode 100644 index 00b3bfe..0000000 Binary files a/Main/bin/Debug/net9.0/protobuf-net.Core.dll and /dev/null differ diff --git a/Main/bin/Debug/net9.0/protobuf-net.dll b/Main/bin/Debug/net9.0/protobuf-net.dll deleted file mode 100644 index f29616e..0000000 Binary files a/Main/bin/Debug/net9.0/protobuf-net.dll and /dev/null differ diff --git a/Main/configs.json b/Main/configs.json index a0de76b..ad8bec3 100644 --- a/Main/configs.json +++ b/Main/configs.json @@ -17,6 +17,7 @@ "Hook": [ 700102 ], + "HookNum": 1, "EfficacyBase": 50 }, { @@ -24,6 +25,7 @@ "Hook": [ 700102 ], + "HookNum": 1, "EfficacyBase": 50 }, { @@ -31,6 +33,7 @@ "Hook": [ 0 ], + "HookNum": 1, "EfficacyBase": 50 }, { @@ -38,6 +41,7 @@ "Hook": [ 0 ], + "HookNum": 1, "EfficacyBase": 50 } ], @@ -45,8 +49,8 @@ { "Id": 30001, "Model": "rods/syberia/tele_10037/tele_10037_t13", - "Type": 1, - "Quality": 1, + "Type": 301, + "Quality": 5, "Brand": 0, "Weight": 0, "Length": 0, @@ -57,8 +61,8 @@ { "Id": 30002, "Model": "rods/syberia/bolo_10021/bolo_10021_LB400", - "Type": 0, - "Quality": 2, + "Type": 302, + "Quality": 5, "Brand": 0, "Weight": 0, "Length": 0, @@ -69,8 +73,8 @@ { "Id": 30003, "Model": "rods/syberia/spin_10034/spin_10034_S60H", - "Type": 0, - "Quality": 3, + "Type": 303, + "Quality": 5, "Brand": 0, "Weight": 0, "Length": 0, @@ -81,7 +85,7 @@ { "Id": 30004, "Model": "rods/syberia/carp_10046/carp_10046_360H", - "Type": 0, + "Type": 304, "Quality": 4, "Brand": 0, "Weight": 0, @@ -93,7 +97,7 @@ { "Id": 30005, "Model": "rods/syberia/cast_10018/cast_10018_CST60MH", - "Type": 0, + "Type": 305, "Quality": 5, "Brand": 0, "Weight": 0, @@ -105,7 +109,7 @@ { "Id": 30006, "Model": "rods/syberia/feeder_10048/feeder_10048_FD390", - "Type": 0, + "Type": 306, "Quality": 4, "Brand": 0, "Weight": 0, @@ -117,7 +121,7 @@ { "Id": 30007, "Model": "rods/syberia/jerk_10043/jerk_10043_JR60XH", - "Type": 0, + "Type": 307, "Quality": 3, "Brand": 0, "Weight": 0, @@ -129,7 +133,7 @@ { "Id": 30008, "Model": "rods/syberia/mark_10168/mark_10168_3LB", - "Type": 0, + "Type": 308, "Quality": 0, "Brand": 0, "Weight": 0, @@ -141,7 +145,7 @@ { "Id": 30009, "Model": "rods/syberia/match_10025/match_10025_M130H", - "Type": 0, + "Type": 309, "Quality": 0, "Brand": 0, "Weight": 0, @@ -153,7 +157,7 @@ { "Id": 30010, "Model": "rods/syberia/picker_10052/picker_10052_P300-MH", - "Type": 0, + "Type": 310, "Quality": 0, "Brand": 0, "Weight": 0, @@ -165,7 +169,7 @@ { "Id": 30011, "Model": "rods/syberia/spod_10133/spod_10133_3LB", - "Type": 0, + "Type": 311, "Quality": 0, "Brand": 0, "Weight": 0, @@ -177,7 +181,7 @@ { "Id": 40001, "Model": "reels/syberia/spin_5002/spin_5002", - "Type": 0, + "Type": 401, "Quality": 3, "Brand": 0, "Weight": 0, @@ -189,7 +193,7 @@ { "Id": 40002, "Model": "reels/syberia/spin_5036/spin_5036", - "Type": 0, + "Type": 401, "Quality": 4, "Brand": 0, "Weight": 0, @@ -201,7 +205,7 @@ { "Id": 40003, "Model": "reels/syberia/bclp_5005/bclp_5005", - "Type": 0, + "Type": 402, "Quality": 1, "Brand": 0, "Weight": 0, @@ -213,7 +217,7 @@ { "Id": 40004, "Model": "reels/syberia/bclp_5032/bclp_5032", - "Type": 0, + "Type": 402, "Quality": 1, "Brand": 0, "Weight": 0, @@ -225,7 +229,7 @@ { "Id": 40005, "Model": "reels/syberia/bcr_5034/bcr_5034", - "Type": 0, + "Type": 403, "Quality": 1, "Brand": 0, "Weight": 0, @@ -237,7 +241,7 @@ { "Id": 40006, "Model": "reels/syberia/bcr_5062/bcr_5062", - "Type": 0, + "Type": 403, "Quality": 1, "Brand": 0, "Weight": 0, @@ -249,7 +253,7 @@ { "Id": 40007, "Model": "reels/syberia/c_spin_5386/c_spin_5386", - "Type": 0, + "Type": 401, "Quality": 1, "Brand": 0, "Weight": 0, @@ -261,7 +265,7 @@ { "Id": 40008, "Model": "reels/syberia/c_spin_5387/c_spin_5387", - "Type": 0, + "Type": 401, "Quality": 1, "Brand": 0, "Weight": 0, @@ -273,7 +277,7 @@ { "Id": 40009, "Model": "reels/syberia/conv_5393/conv_5393", - "Type": 0, + "Type": 403, "Quality": 1, "Brand": 0, "Weight": 0, @@ -285,7 +289,7 @@ { "Id": 40010, "Model": "reels/syberia/conv_5396/conv_5396", - "Type": 0, + "Type": 403, "Quality": 1, "Brand": 0, "Weight": 0, @@ -297,7 +301,7 @@ { "Id": 50001, "Model": "bobbers/expressfishing/bob_25001/bob_25001", - "Type": 0, + "Type": 501, "Quality": 1, "Brand": 1, "Weight": 0, @@ -309,7 +313,7 @@ { "Id": 50002, "Model": "bobbers/expressfishing/bob_25002/bob_25002", - "Type": 0, + "Type": 501, "Quality": 2, "Brand": 0, "Weight": 0, @@ -321,7 +325,7 @@ { "Id": 50003, "Model": "bobbers/expressfishing/bob_25003/bob_25003", - "Type": 0, + "Type": 501, "Quality": 3, "Brand": 0, "Weight": 0, @@ -333,7 +337,7 @@ { "Id": 50004, "Model": "bobbers/expressfishing/bob_25004/bob_25004", - "Type": 0, + "Type": 501, "Quality": 4, "Brand": 0, "Weight": 0, @@ -345,7 +349,7 @@ { "Id": 50005, "Model": "bobbers/expressfishing/bob_25162_25163/bob_25162", - "Type": 0, + "Type": 501, "Quality": 1, "Brand": 0, "Weight": 0, @@ -357,7 +361,7 @@ { "Id": 50006, "Model": "bobbers/expressfishing/bob_25162_25163/bob_25163", - "Type": 0, + "Type": 501, "Quality": 1, "Brand": 0, "Weight": 0, @@ -369,7 +373,7 @@ { "Id": 50007, "Model": "bobbers/expressfishing/bob_25164_25165/bob_25164", - "Type": 0, + "Type": 501, "Quality": 1, "Brand": 0, "Weight": 0, @@ -381,7 +385,7 @@ { "Id": 50008, "Model": "bobbers/expressfishing/bob_25164_25165/bob_25165", - "Type": 0, + "Type": 501, "Quality": 1, "Brand": 0, "Weight": 0, @@ -393,7 +397,7 @@ { "Id": 50009, "Model": "bobbers/expressfishing/bob_25166_25167/bob_25166", - "Type": 0, + "Type": 501, "Quality": 1, "Brand": 0, "Weight": 0, @@ -405,7 +409,7 @@ { "Id": 50010, "Model": "bobbers/expressfishing/bob_25166_25167/bob_25167", - "Type": 0, + "Type": 501, "Quality": 1, "Brand": 0, "Weight": 0, @@ -417,7 +421,7 @@ { "Id": 50011, "Model": "bobbers/expressfishing/float_ny_1/float_ny25_1", - "Type": 0, + "Type": 501, "Quality": 1, "Brand": 0, "Weight": 0, @@ -429,7 +433,7 @@ { "Id": 50012, "Model": "bobbers/expressfishing/float_ny_1/float_ny25_2", - "Type": 0, + "Type": 501, "Quality": 1, "Brand": 0, "Weight": 0, @@ -441,7 +445,7 @@ { "Id": 50013, "Model": "bobbers/expressfishing/float_ny_1/float_ny25_3", - "Type": 0, + "Type": 501, "Quality": 1, "Brand": 0, "Weight": 0, @@ -453,7 +457,7 @@ { "Id": 50014, "Model": "bobbers/expressfishing/float_ny_1/float_ny_1", - "Type": 0, + "Type": 501, "Quality": 1, "Brand": 0, "Weight": 0, @@ -465,7 +469,7 @@ { "Id": 60001, "Model": "lines/solid_materials/mono_40340/braid_40388", - "Type": 0, + "Type": 601, "Quality": 1, "Brand": 0, "Weight": 0, @@ -477,7 +481,7 @@ { "Id": 60002, "Model": "lines/solid_materials/mono_40340/braid_40389", - "Type": 0, + "Type": 601, "Quality": 1, "Brand": 0, "Weight": 0, @@ -489,7 +493,7 @@ { "Id": 60003, "Model": "lines/solid_materials/mono_40340/braid_40390", - "Type": 0, + "Type": 601, "Quality": 1, "Brand": 0, "Weight": 0, @@ -501,7 +505,7 @@ { "Id": 60004, "Model": "lines/solid_materials/mono_40340/braid_40391", - "Type": 0, + "Type": 601, "Quality": 1, "Brand": 0, "Weight": 0, @@ -513,7 +517,7 @@ { "Id": 60005, "Model": "lines/solid_materials/mono_40340/braid_40392", - "Type": 0, + "Type": 601, "Quality": 1, "Brand": 0, "Weight": 0, @@ -525,7 +529,7 @@ { "Id": 60006, "Model": "lines/solid_materials/mono_40340/braid_40393", - "Type": 0, + "Type": 601, "Quality": 1, "Brand": 0, "Weight": 0, @@ -537,7 +541,7 @@ { "Id": 60007, "Model": "lines/solid_materials/mono_40340/braid_40394", - "Type": 0, + "Type": 601, "Quality": 1, "Brand": 0, "Weight": 0, @@ -549,7 +553,7 @@ { "Id": 60008, "Model": "lines/solid_materials/mono_40340/braid_40395", - "Type": 0, + "Type": 601, "Quality": 1, "Brand": 0, "Weight": 0, @@ -561,7 +565,7 @@ { "Id": 60009, "Model": "lines/solid_materials/mono_40340/braid_40396", - "Type": 0, + "Type": 601, "Quality": 1, "Brand": 0, "Weight": 0, @@ -573,7 +577,7 @@ { "Id": 60010, "Model": "lines/solid_materials/mono_40340/braid_40397", - "Type": 0, + "Type": 601, "Quality": 1, "Brand": 0, "Weight": 0, @@ -585,7 +589,7 @@ { "Id": 70001, "Model": "baits/worm_01/worm_01", - "Type": 0, + "Type": 701, "Quality": 1, "Brand": 0, "Weight": 0, @@ -597,7 +601,7 @@ { "Id": 70002, "Model": "baits/fly/fly", - "Type": 0, + "Type": 701, "Quality": 2, "Brand": 0, "Weight": 0, @@ -609,7 +613,7 @@ { "Id": 70003, "Model": "baits/black_leech/black_leech", - "Type": 0, + "Type": 701, "Quality": 2, "Brand": 0, "Weight": 0, @@ -621,7 +625,7 @@ { "Id": 70004, "Model": "baits/bread/bread", - "Type": 0, + "Type": 701, "Quality": 3, "Brand": 0, "Weight": 0, @@ -633,7 +637,7 @@ { "Id": 80001, "Model": "lures/express_fishing/crankbaits_1/738/crankbaits_738", - "Type": 0, + "Type": 801, "Quality": 1, "Brand": 0, "Weight": 0, @@ -645,7 +649,7 @@ { "Id": 80002, "Model": "lures/express_fishing/crankbaits_1/744/crankbaits_744", - "Type": 0, + "Type": 801, "Quality": 2, "Brand": 0, "Weight": 0, @@ -657,7 +661,7 @@ { "Id": 80003, "Model": "lures/express_fishing/crankbaits_1/752/crankbaits_752", - "Type": 0, + "Type": 801, "Quality": 3, "Brand": 0, "Weight": 0, @@ -669,7 +673,7 @@ { "Id": 80004, "Model": "lures/express_fishing/crankbaits_1/863/crankbaits_863", - "Type": 0, + "Type": 801, "Quality": 4, "Brand": 0, "Weight": 0, @@ -681,7 +685,7 @@ { "Id": 80005, "Model": "lures/express_fishing/poppers_1/poppers_586/poppers_586", - "Type": 0, + "Type": 801, "Quality": 1, "Brand": 0, "Weight": 0, @@ -693,7 +697,7 @@ { "Id": 80006, "Model": "lures/express_fishing/softplastic/ef_supergrab_4/softplastic_g_1610", - "Type": 0, + "Type": 801, "Quality": 1, "Brand": 0, "Weight": 0, @@ -705,7 +709,7 @@ { "Id": 80007, "Model": "lures/express_fishing/softplastic/ef_supergrab_4/softplastic_g_1611", - "Type": 0, + "Type": 801, "Quality": 1, "Brand": 0, "Weight": 0, @@ -717,7 +721,7 @@ { "Id": 80008, "Model": "lures/express_fishing/softplastic/ef_superminnow_4/softplastic_m_1624", - "Type": 0, + "Type": 801, "Quality": 1, "Brand": 0, "Weight": 0, @@ -729,7 +733,7 @@ { "Id": 80009, "Model": "lures/express_fishing/spinnerbaits_1/594/spinnerbaits_594", - "Type": 0, + "Type": 801, "Quality": 1, "Brand": 0, "Weight": 0, @@ -741,7 +745,7 @@ { "Id": 80010, "Model": "lures/express_fishing/spinnerbaits_1/596/spinnerbaits_596", - "Type": 0, + "Type": 801, "Quality": 1, "Brand": 0, "Weight": 0, @@ -753,7 +757,7 @@ { "Id": 80011, "Model": "lures/express_fishing/spinnerbaits_1/597/spinnerbaits_597", - "Type": 0, + "Type": 801, "Quality": 1, "Brand": 0, "Weight": 0, @@ -765,7 +769,7 @@ { "Id": 80012, "Model": "lures/express_fishing/spoon_lures_1/spoon_lures_666/spoon_lures_666", - "Type": 0, + "Type": 801, "Quality": 1, "Brand": 0, "Weight": 0, @@ -777,7 +781,7 @@ { "Id": 80013, "Model": "lures/express_fishing/spoon_lures_1/spoon_lures_1045/spoon_lures_1045", - "Type": 0, + "Type": 801, "Quality": 1, "Brand": 0, "Weight": 0, @@ -789,7 +793,7 @@ { "Id": 90001, "Model": "hooks/alliance/c_hook_20789_20794/c_hook_20789", - "Type": 0, + "Type": 901, "Quality": 1, "Brand": 0, "Weight": 0, @@ -801,7 +805,7 @@ { "Id": 90002, "Model": "hooks/berserk_hooks/clas_20421_20446/clas_20421", - "Type": 0, + "Type": 901, "Quality": 1, "Brand": 0, "Weight": 0, @@ -813,7 +817,7 @@ { "Id": 90003, "Model": "hooks/berserk_hooks/clas_20447_20472/clas_20447", - "Type": 0, + "Type": 901, "Quality": 1, "Brand": 0, "Weight": 0, @@ -825,7 +829,7 @@ { "Id": 90004, "Model": "hooks/berserk_hooks/clas_20473_20492/clas_20473", - "Type": 0, + "Type": 901, "Quality": 1, "Brand": 0, "Weight": 0, @@ -837,7 +841,7 @@ { "Id": 90005, "Model": "hooks/berserk_hooks/clas_20493_20514/clas_20493", - "Type": 0, + "Type": 901, "Quality": 1, "Brand": 0, "Weight": 0, @@ -849,7 +853,7 @@ { "Id": 90006, "Model": "hooks/berserk_hooks/clas_20515_20532/clas_20515", - "Type": 0, + "Type": 901, "Quality": 1, "Brand": 0, "Weight": 0, @@ -861,7 +865,7 @@ { "Id": 90007, "Model": "hooks/berserk_hooks/clas_20533_20550/clas_20533", - "Type": 0, + "Type": 901, "Quality": 1, "Brand": 0, "Weight": 0, @@ -873,7 +877,7 @@ { "Id": 90008, "Model": "hooks/berserk_hooks/jhead_20596_20603/jhead_20596", - "Type": 0, + "Type": 901, "Quality": 1, "Brand": 0, "Weight": 0, @@ -885,7 +889,7 @@ { "Id": 90009, "Model": "hooks/berserk_hooks/jhead_20604_20613/jhead_20604", - "Type": 0, + "Type": 901, "Quality": 1, "Brand": 0, "Weight": 0, @@ -897,7 +901,7 @@ { "Id": 90010, "Model": "hooks/berserk_hooks/jhead_20614_20622/jhead_20614", - "Type": 0, + "Type": 901, "Quality": 1, "Brand": 0, "Weight": 0, @@ -909,7 +913,7 @@ { "Id": 90011, "Model": "hooks/berserk_hooks/jhead_20959_20994/jhead_20959", - "Type": 0, + "Type": 901, "Quality": 1, "Brand": 0, "Weight": 0, @@ -921,7 +925,7 @@ { "Id": 90012, "Model": "hooks/berserk_hooks/lfish_20637_20643/lfish_20637", - "Type": 0, + "Type": 901, "Quality": 1, "Brand": 0, "Weight": 0, @@ -933,7 +937,7 @@ { "Id": 90013, "Model": "hooks/berserk_hooks/lfish_20644_20650/lfish_20644", - "Type": 0, + "Type": 901, "Quality": 1, "Brand": 0, "Weight": 0, @@ -945,7 +949,7 @@ { "Id": 90014, "Model": "hooks/berserk_hooks/mdhook_20929_20935/mdhook_20929", - "Type": 0, + "Type": 901, "Quality": 1, "Brand": 0, "Weight": 0, @@ -957,7 +961,7 @@ { "Id": 90015, "Model": "hooks/berserk_hooks/mhook_20878/mhook_20878", - "Type": 0, + "Type": 901, "Quality": 1, "Brand": 0, "Weight": 0, @@ -969,7 +973,7 @@ { "Id": 90016, "Model": "hooks/berserk_hooks/triple_20569_20577/triple_20569", - "Type": 0, + "Type": 901, "Quality": 1, "Brand": 0, "Weight": 0, @@ -981,7 +985,7 @@ { "Id": 90017, "Model": "hooks/berserk_hooks/triple_20578_20586/triple_20578", - "Type": 0, + "Type": 901, "Quality": 1, "Brand": 0, "Weight": 0, @@ -993,7 +997,7 @@ { "Id": 90018, "Model": "hooks/berserk_hooks/triple_20660_20668/triple_20660", - "Type": 0, + "Type": 901, "Quality": 1, "Brand": 0, "Weight": 0, @@ -1005,7 +1009,7 @@ { "Id": 90019, "Model": "hooks/berserk_hooks/triple_20669_20677/triple_20669", - "Type": 0, + "Type": 901, "Quality": 1, "Brand": 0, "Weight": 0, @@ -1017,7 +1021,7 @@ { "Id": 90020, "Model": "hooks/berserk_hooks/woffset_20623_20636/woffset_20623", - "Type": 0, + "Type": 901, "Quality": 1, "Brand": 0, "Weight": 0, @@ -1029,7 +1033,7 @@ { "Id": 100001, "Model": "weights/Weight2_5g", - "Type": 0, + "Type": 1001, "Quality": 1, "Brand": 0, "Weight": 0, @@ -1041,7 +1045,7 @@ { "Id": 100002, "Model": "weights/weight_olive_1g", - "Type": 0, + "Type": 1001, "Quality": 1, "Brand": 0, "Weight": 0, @@ -1053,7 +1057,7 @@ { "Id": 100003, "Model": "sinkers/express fishing/bulsinker_30016_30056/bulsinker_30016", - "Type": 0, + "Type": 1001, "Quality": 1, "Brand": 0, "Weight": 0, @@ -1065,7 +1069,7 @@ { "Id": 100004, "Model": "sinkers/express fishing/dsinker_30001_30005/dsinker_30001", - "Type": 0, + "Type": 1001, "Quality": 1, "Brand": 0, "Weight": 0, @@ -1077,7 +1081,7 @@ { "Id": 100005, "Model": "sinkers/express fishing/psinker_30010_30014/psinker_30010", - "Type": 0, + "Type": 1001, "Quality": 1, "Brand": 0, "Weight": 0, @@ -1089,7 +1093,7 @@ { "Id": 100006, "Model": "sinkers/hvz/flpsinker_30138_30339/flpsinker_30138", - "Type": 0, + "Type": 1001, "Quality": 1, "Brand": 0, "Weight": 0, @@ -1101,7 +1105,7 @@ { "Id": 100007, "Model": "sinkers/hvz/flsinker_30110_30137/flsinker_30110", - "Type": 0, + "Type": 1001, "Quality": 1, "Brand": 0, "Weight": 0, @@ -1113,7 +1117,7 @@ { "Id": 100008, "Model": "sinkers/hvz/horsinker_30340_30371/horsinker_30340", - "Type": 0, + "Type": 1001, "Quality": 1, "Brand": 0, "Weight": 0, @@ -1125,7 +1129,7 @@ { "Id": 100009, "Model": "sinkers/hvz/mrksinker_30371/mrksinker_30371", - "Type": 0, + "Type": 1001, "Quality": 1, "Brand": 0, "Weight": 0, @@ -1137,7 +1141,7 @@ { "Id": 100010, "Model": "sinkers/hvz/trisinker_30282_30463/trisinker_30282", - "Type": 0, + "Type": 1001, "Quality": 1, "Brand": 0, "Weight": 0, @@ -1149,7 +1153,7 @@ { "Id": 110001, "Model": "Feeders/Feeder 1/FeedTrash 1", - "Type": 0, + "Type": 1101, "Quality": 1, "Brand": 0, "Weight": 0, diff --git a/Main/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/Main/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs deleted file mode 100644 index feda5e9..0000000 --- a/Main/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")] diff --git a/Main/obj/Debug/net9.0/Main.AssemblyInfo.cs b/Main/obj/Debug/net9.0/Main.AssemblyInfo.cs deleted file mode 100644 index b27d473..0000000 --- a/Main/obj/Debug/net9.0/Main.AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -//------------------------------------------------------------------------------ -// -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 -// -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 -// -//------------------------------------------------------------------------------ - -using System; -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+7b10d4cb317c9f310649a9cb4afe3882d4b12624")] -[assembly: System.Reflection.AssemblyProductAttribute("Main")] -[assembly: System.Reflection.AssemblyTitleAttribute("Main")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// 由 MSBuild WriteCodeFragment 类生成。 - diff --git a/Main/obj/Debug/net9.0/Main.AssemblyInfoInputs.cache b/Main/obj/Debug/net9.0/Main.AssemblyInfoInputs.cache deleted file mode 100644 index 479ec02..0000000 --- a/Main/obj/Debug/net9.0/Main.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -fc9a8788d075a5df6ba33e2aaff4335f57496fcbbea48b273642a6c07957e27a diff --git a/Main/obj/Debug/net9.0/Main.GeneratedMSBuildEditorConfig.editorconfig b/Main/obj/Debug/net9.0/Main.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 6b090ba..0000000 --- a/Main/obj/Debug/net9.0/Main.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,15 +0,0 @@ -is_global = true -build_property.TargetFramework = net9.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = Main -build_property.ProjectDir = D:\work\Fishing2Server\Main\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.EffectiveAnalysisLevelStyle = 9.0 -build_property.EnableCodeStyleSeverity = diff --git a/Main/obj/Debug/net9.0/Main.GlobalUsings.g.cs b/Main/obj/Debug/net9.0/Main.GlobalUsings.g.cs deleted file mode 100644 index 8578f3d..0000000 --- a/Main/obj/Debug/net9.0/Main.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -global using global::System; -global using global::System.Collections.Generic; -global using global::System.IO; -global using global::System.Linq; -global using global::System.Net.Http; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/Main/obj/Debug/net9.0/Main.assets.cache b/Main/obj/Debug/net9.0/Main.assets.cache deleted file mode 100644 index e0d1a81..0000000 Binary files a/Main/obj/Debug/net9.0/Main.assets.cache and /dev/null differ diff --git a/Main/obj/Debug/net9.0/Main.csproj.AssemblyReference.cache b/Main/obj/Debug/net9.0/Main.csproj.AssemblyReference.cache deleted file mode 100644 index 6bce45e..0000000 Binary files a/Main/obj/Debug/net9.0/Main.csproj.AssemblyReference.cache and /dev/null differ diff --git a/Main/obj/Debug/net9.0/Main.csproj.CoreCompileInputs.cache b/Main/obj/Debug/net9.0/Main.csproj.CoreCompileInputs.cache deleted file mode 100644 index adeb184..0000000 --- a/Main/obj/Debug/net9.0/Main.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -292ce48b0f62b84117b005a76ae2bf2724504c20e2a698038c8eb55ca1642b53 diff --git a/Main/obj/Debug/net9.0/Main.csproj.FileListAbsolute.txt b/Main/obj/Debug/net9.0/Main.csproj.FileListAbsolute.txt deleted file mode 100644 index c184870..0000000 --- a/Main/obj/Debug/net9.0/Main.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,43 +0,0 @@ -D:\work\Fishing2ServerNew\Fishing2\Server\Main\bin\Debug\net9.0\Fantasy.config -D:\work\Fishing2ServerNew\Fishing2\Server\Main\bin\Debug\net9.0\Fantasy.xsd -D:\work\Fishing2ServerNew\Fishing2\Server\Main\bin\Debug\net9.0\Main.exe -D:\work\Fishing2ServerNew\Fishing2\Server\Main\bin\Debug\net9.0\NLog.config -D:\work\Fishing2ServerNew\Fishing2\Server\Main\bin\Debug\net9.0\Main.deps.json -D:\work\Fishing2ServerNew\Fishing2\Server\Main\bin\Debug\net9.0\Main.runtimeconfig.json -D:\work\Fishing2ServerNew\Fishing2\Server\Main\bin\Debug\net9.0\Main.dll -D:\work\Fishing2ServerNew\Fishing2\Server\Main\bin\Debug\net9.0\Main.pdb -D:\work\Fishing2ServerNew\Fishing2\Server\Main\bin\Debug\net9.0\CommandLine.dll -D:\work\Fishing2ServerNew\Fishing2\Server\Main\bin\Debug\net9.0\DnsClient.dll -D:\work\Fishing2ServerNew\Fishing2\Server\Main\bin\Debug\net9.0\Fantasy-Net.dll -D:\work\Fishing2ServerNew\Fishing2\Server\Main\bin\Debug\net9.0\MongoDB.Bson.dll -D:\work\Fishing2ServerNew\Fishing2\Server\Main\bin\Debug\net9.0\MongoDB.Driver.dll -D:\work\Fishing2ServerNew\Fishing2\Server\Main\bin\Debug\net9.0\Newtonsoft.Json.dll -D:\work\Fishing2ServerNew\Fishing2\Server\Main\bin\Debug\net9.0\NLog.dll -D:\work\Fishing2ServerNew\Fishing2\Server\Main\bin\Debug\net9.0\protobuf-net.dll -D:\work\Fishing2ServerNew\Fishing2\Server\Main\bin\Debug\net9.0\protobuf-net.Core.dll -D:\work\Fishing2ServerNew\Fishing2\Server\Main\bin\Debug\net9.0\SharpCompress.dll -D:\work\Fishing2ServerNew\Fishing2\Server\Main\bin\Debug\net9.0\Snappier.dll -D:\work\Fishing2ServerNew\Fishing2\Server\Main\bin\Debug\net9.0\ZstdSharp.dll -D:\work\Fishing2ServerNew\Fishing2\Server\Main\bin\Debug\net9.0\Entity.dll -D:\work\Fishing2ServerNew\Fishing2\Server\Main\bin\Debug\net9.0\Hotfix.dll -D:\work\Fishing2ServerNew\Fishing2\Server\Main\bin\Debug\net9.0\Entity.pdb -D:\work\Fishing2ServerNew\Fishing2\Server\Main\bin\Debug\net9.0\Hotfix.pdb -D:\work\Fishing2ServerNew\Fishing2\Server\Main\obj\Debug\net9.0\Main.csproj.AssemblyReference.cache -D:\work\Fishing2ServerNew\Fishing2\Server\Main\obj\Debug\net9.0\Main.GeneratedMSBuildEditorConfig.editorconfig -D:\work\Fishing2ServerNew\Fishing2\Server\Main\obj\Debug\net9.0\Main.AssemblyInfoInputs.cache -D:\work\Fishing2ServerNew\Fishing2\Server\Main\obj\Debug\net9.0\Main.AssemblyInfo.cs -D:\work\Fishing2ServerNew\Fishing2\Server\Main\obj\Debug\net9.0\Main.csproj.CoreCompileInputs.cache -D:\work\Fishing2ServerNew\Fishing2\Server\Main\obj\Debug\net9.0\Main.csproj.Up2Date -D:\work\Fishing2ServerNew\Fishing2\Server\Main\obj\Debug\net9.0\Main.dll -D:\work\Fishing2ServerNew\Fishing2\Server\Main\obj\Debug\net9.0\refint\Main.dll -D:\work\Fishing2ServerNew\Fishing2\Server\Main\obj\Debug\net9.0\Main.pdb -D:\work\Fishing2ServerNew\Fishing2\Server\Main\obj\Debug\net9.0\Main.genruntimeconfig.cache -D:\work\Fishing2ServerNew\Fishing2\Server\Main\obj\Debug\net9.0\ref\Main.dll -D:\work\Fishing2ServerNew\Fishing2\Server\Main\bin\Debug\net9.0\configs.json -D:\work\Fishing2ServerNew\Fishing2\Server\Main\bin\Debug\net9.0\Microsoft.IdentityModel.Abstractions.dll -D:\work\Fishing2ServerNew\Fishing2\Server\Main\bin\Debug\net9.0\Microsoft.IdentityModel.Logging.dll -D:\work\Fishing2ServerNew\Fishing2\Server\Main\bin\Debug\net9.0\Microsoft.IdentityModel.Tokens.dll -D:\work\Fishing2ServerNew\Fishing2\Server\Main\bin\Debug\net9.0\ThirdParty.dll -D:\work\Fishing2ServerNew\Fishing2\Server\Main\bin\Debug\net9.0\ThirdParty.pdb -D:\work\Fishing2ServerNew\Fishing2\Server\Main\bin\Debug\net9.0\Microsoft.IdentityModel.JsonWebTokens.dll -D:\work\Fishing2ServerNew\Fishing2\Server\Main\bin\Debug\net9.0\System.IdentityModel.Tokens.Jwt.dll diff --git a/Main/obj/Debug/net9.0/Main.csproj.Up2Date b/Main/obj/Debug/net9.0/Main.csproj.Up2Date deleted file mode 100644 index e69de29..0000000 diff --git a/Main/obj/Debug/net9.0/Main.dll b/Main/obj/Debug/net9.0/Main.dll deleted file mode 100644 index 7d94324..0000000 Binary files a/Main/obj/Debug/net9.0/Main.dll and /dev/null differ diff --git a/Main/obj/Debug/net9.0/Main.genruntimeconfig.cache b/Main/obj/Debug/net9.0/Main.genruntimeconfig.cache deleted file mode 100644 index 9b8a746..0000000 --- a/Main/obj/Debug/net9.0/Main.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -f7b3b59ea4a346ccb1b1bd90e08296a5128123bee96b07e25dbe0d73dbe5fe11 diff --git a/Main/obj/Debug/net9.0/Main.pdb b/Main/obj/Debug/net9.0/Main.pdb deleted file mode 100644 index 331c676..0000000 Binary files a/Main/obj/Debug/net9.0/Main.pdb and /dev/null differ diff --git a/Main/obj/Debug/net9.0/apphost.exe b/Main/obj/Debug/net9.0/apphost.exe deleted file mode 100644 index f3fe461..0000000 Binary files a/Main/obj/Debug/net9.0/apphost.exe and /dev/null differ diff --git a/Main/obj/Debug/net9.0/ref/Main.dll b/Main/obj/Debug/net9.0/ref/Main.dll deleted file mode 100644 index 407ef54..0000000 Binary files a/Main/obj/Debug/net9.0/ref/Main.dll and /dev/null differ diff --git a/Main/obj/Debug/net9.0/refint/Main.dll b/Main/obj/Debug/net9.0/refint/Main.dll deleted file mode 100644 index 407ef54..0000000 Binary files a/Main/obj/Debug/net9.0/refint/Main.dll and /dev/null differ diff --git a/Main/obj/Main.csproj.nuget.dgspec.json b/Main/obj/Main.csproj.nuget.dgspec.json deleted file mode 100644 index b8b99c6..0000000 --- a/Main/obj/Main.csproj.nuget.dgspec.json +++ /dev/null @@ -1,303 +0,0 @@ -{ - "format": 1, - "restore": { - "D:\\work\\Fishing2Server\\Main\\Main.csproj": {} - }, - "projects": { - "D:\\work\\Fishing2Server\\Entity\\Entity.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\work\\Fishing2Server\\Entity\\Entity.csproj", - "projectName": "Entity", - "projectPath": "D:\\work\\Fishing2Server\\Entity\\Entity.csproj", - "packagesPath": "C:\\Users\\FIREBAT\\.nuget\\packages\\", - "outputPath": "D:\\work\\Fishing2Server\\Entity\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\FIREBAT\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net9.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net9.0": { - "targetAlias": "net9.0", - "projectReferences": { - "D:\\work\\Fishing2Server\\ThirdParty\\ThirdParty.csproj": { - "projectPath": "D:\\work\\Fishing2Server\\ThirdParty\\ThirdParty.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "direct" - }, - "SdkAnalysisLevel": "9.0.300" - }, - "frameworks": { - "net9.0": { - "targetAlias": "net9.0", - "dependencies": { - "Fantasy-Net": { - "target": "Package", - "version": "[2025.2.0, )" - }, - "Microsoft.IdentityModel.Tokens": { - "target": "Package", - "version": "[8.14.0, )" - }, - "System.IdentityModel.Tokens.Jwt": { - "target": "Package", - "version": "[8.14.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" - } - } - }, - "D:\\work\\Fishing2Server\\Hotfix\\Hotfix.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\work\\Fishing2Server\\Hotfix\\Hotfix.csproj", - "projectName": "Hotfix", - "projectPath": "D:\\work\\Fishing2Server\\Hotfix\\Hotfix.csproj", - "packagesPath": "C:\\Users\\FIREBAT\\.nuget\\packages\\", - "outputPath": "D:\\work\\Fishing2Server\\Hotfix\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\FIREBAT\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net9.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net9.0": { - "targetAlias": "net9.0", - "projectReferences": { - "D:\\work\\Fishing2Server\\Entity\\Entity.csproj": { - "projectPath": "D:\\work\\Fishing2Server\\Entity\\Entity.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "direct" - }, - "SdkAnalysisLevel": "9.0.300" - }, - "frameworks": { - "net9.0": { - "targetAlias": "net9.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" - } - } - }, - "D:\\work\\Fishing2Server\\Main\\Main.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\work\\Fishing2Server\\Main\\Main.csproj", - "projectName": "Main", - "projectPath": "D:\\work\\Fishing2Server\\Main\\Main.csproj", - "packagesPath": "C:\\Users\\FIREBAT\\.nuget\\packages\\", - "outputPath": "D:\\work\\Fishing2Server\\Main\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\FIREBAT\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net9.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net9.0": { - "targetAlias": "net9.0", - "projectReferences": { - "D:\\work\\Fishing2Server\\Entity\\Entity.csproj": { - "projectPath": "D:\\work\\Fishing2Server\\Entity\\Entity.csproj" - }, - "D:\\work\\Fishing2Server\\Hotfix\\Hotfix.csproj": { - "projectPath": "D:\\work\\Fishing2Server\\Hotfix\\Hotfix.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "direct" - }, - "SdkAnalysisLevel": "9.0.300" - }, - "frameworks": { - "net9.0": { - "targetAlias": "net9.0", - "dependencies": { - "NLog": { - "target": "Package", - "version": "[*, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" - } - } - }, - "D:\\work\\Fishing2Server\\ThirdParty\\ThirdParty.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\work\\Fishing2Server\\ThirdParty\\ThirdParty.csproj", - "projectName": "ThirdParty", - "projectPath": "D:\\work\\Fishing2Server\\ThirdParty\\ThirdParty.csproj", - "packagesPath": "C:\\Users\\FIREBAT\\.nuget\\packages\\", - "outputPath": "D:\\work\\Fishing2Server\\ThirdParty\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\FIREBAT\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net8.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net8.0": { - "targetAlias": "net8.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "direct" - }, - "SdkAnalysisLevel": "9.0.300" - }, - "frameworks": { - "net8.0": { - "targetAlias": "net8.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/Main/obj/Main.csproj.nuget.g.props b/Main/obj/Main.csproj.nuget.g.props deleted file mode 100644 index fbb082f..0000000 --- a/Main/obj/Main.csproj.nuget.g.props +++ /dev/null @@ -1,16 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\FIREBAT\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages - PackageReference - 6.14.0 - - - - - - \ No newline at end of file diff --git a/Main/obj/Main.csproj.nuget.g.targets b/Main/obj/Main.csproj.nuget.g.targets deleted file mode 100644 index eb7028d..0000000 --- a/Main/obj/Main.csproj.nuget.g.targets +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/Main/obj/project.assets.json b/Main/obj/project.assets.json deleted file mode 100644 index 82bbb3e..0000000 --- a/Main/obj/project.assets.json +++ /dev/null @@ -1,1282 +0,0 @@ -{ - "version": 3, - "targets": { - "net9.0": { - "CommandLineParser/2.9.1": { - "type": "package", - "compile": { - "lib/netstandard2.0/CommandLine.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/CommandLine.dll": { - "related": ".xml" - } - } - }, - "DnsClient/1.6.1": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Registry": "5.0.0" - }, - "compile": { - "lib/net5.0/DnsClient.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net5.0/DnsClient.dll": { - "related": ".xml" - } - } - }, - "Fantasy-Net/2025.2.0": { - "type": "package", - "dependencies": { - "CommandLineParser": "2.9.1", - "MongoDB.Bson": "3.5.0", - "MongoDB.Driver": "3.5.0", - "Newtonsoft.Json": "13.0.4", - "protobuf-net": "3.2.56" - }, - "compile": { - "lib/net9.0/Fantasy-Net.dll": {} - }, - "runtime": { - "lib/net9.0/Fantasy-Net.dll": {} - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ], - "build": { - "buildTransitive/Fantasy-Net.targets": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { - "type": "package", - "compile": { - "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/8.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" - }, - "compile": { - "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} - } - }, - "Microsoft.IdentityModel.Abstractions/8.14.0": { - "type": "package", - "compile": { - "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.JsonWebTokens/8.14.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Tokens": "8.14.0" - }, - "compile": { - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Logging/8.14.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "8.14.0" - }, - "compile": { - "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Tokens/8.14.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.IdentityModel.Logging": "8.14.0" - }, - "compile": { - "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { - "related": ".xml" - } - } - }, - "Microsoft.NETCore.Platforms/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.Win32.Registry/5.0.0": { - "type": "package", - "dependencies": { - "System.Security.AccessControl": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - }, - "compile": { - "ref/netstandard2.0/Microsoft.Win32.Registry.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { - "related": ".xml" - } - }, - "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "MongoDB.Bson/3.5.0": { - "type": "package", - "dependencies": { - "System.Memory": "4.5.5", - "System.Runtime.CompilerServices.Unsafe": "5.0.0" - }, - "compile": { - "lib/net6.0/MongoDB.Bson.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/MongoDB.Bson.dll": { - "related": ".xml" - } - } - }, - "MongoDB.Driver/3.5.0": { - "type": "package", - "dependencies": { - "DnsClient": "1.6.1", - "Microsoft.Extensions.Logging.Abstractions": "2.0.0", - "MongoDB.Bson": "3.5.0", - "SharpCompress": "0.30.1", - "Snappier": "1.0.0", - "System.Buffers": "4.5.1", - "ZstdSharp.Port": "0.7.3" - }, - "compile": { - "lib/net6.0/MongoDB.Driver.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/MongoDB.Driver.dll": { - "related": ".xml" - } - } - }, - "Newtonsoft.Json/13.0.4": { - "type": "package", - "compile": { - "lib/net6.0/Newtonsoft.Json.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Newtonsoft.Json.dll": { - "related": ".xml" - } - } - }, - "NLog/6.0.6": { - "type": "package", - "compile": { - "lib/netstandard2.1/NLog.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.1/NLog.dll": { - "related": ".xml" - } - } - }, - "protobuf-net/3.2.56": { - "type": "package", - "dependencies": { - "protobuf-net.Core": "3.2.56" - }, - "compile": { - "lib/net8.0/protobuf-net.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/protobuf-net.dll": { - "related": ".xml" - } - } - }, - "protobuf-net.Core/3.2.56": { - "type": "package", - "compile": { - "lib/net8.0/protobuf-net.Core.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/protobuf-net.Core.dll": { - "related": ".xml" - } - } - }, - "SharpCompress/0.30.1": { - "type": "package", - "compile": { - "lib/net5.0/SharpCompress.dll": {} - }, - "runtime": { - "lib/net5.0/SharpCompress.dll": {} - } - }, - "Snappier/1.0.0": { - "type": "package", - "compile": { - "lib/net5.0/Snappier.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net5.0/Snappier.dll": { - "related": ".xml" - } - } - }, - "System.Buffers/4.5.1": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "System.IdentityModel.Tokens.Jwt/8.14.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "8.14.0", - "Microsoft.IdentityModel.Tokens": "8.14.0" - }, - "compile": { - "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": { - "related": ".xml" - } - } - }, - "System.Memory/4.5.5": { - "type": "package", - "compile": { - "ref/netcoreapp2.1/_._": {} - }, - "runtime": { - "lib/netcoreapp2.1/_._": {} - } - }, - "System.Runtime.CompilerServices.Unsafe/5.0.0": { - "type": "package", - "compile": { - "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": { - "related": ".xml" - } - } - }, - "System.Security.AccessControl/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - }, - "compile": { - "ref/netstandard2.0/System.Security.AccessControl.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.Security.AccessControl.dll": { - "related": ".xml" - } - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Principal.Windows/5.0.0": { - "type": "package", - "compile": { - "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.Security.Principal.Windows.dll": { - "related": ".xml" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "ZstdSharp.Port/0.7.3": { - "type": "package", - "compile": { - "lib/net7.0/ZstdSharp.dll": {} - }, - "runtime": { - "lib/net7.0/ZstdSharp.dll": {} - } - }, - "Entity/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v9.0", - "dependencies": { - "Fantasy-Net": "2025.2.0", - "Microsoft.IdentityModel.Tokens": "8.14.0", - "System.IdentityModel.Tokens.Jwt": "8.14.0", - "ThirdParty": "1.0.0" - }, - "compile": { - "bin/placeholder/Entity.dll": {} - }, - "runtime": { - "bin/placeholder/Entity.dll": {} - } - }, - "Hotfix/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v9.0", - "dependencies": { - "Entity": "1.0.0" - }, - "compile": { - "bin/placeholder/Hotfix.dll": {} - }, - "runtime": { - "bin/placeholder/Hotfix.dll": {} - } - }, - "ThirdParty/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v8.0", - "compile": { - "bin/placeholder/ThirdParty.dll": {} - }, - "runtime": { - "bin/placeholder/ThirdParty.dll": {} - } - } - } - }, - "libraries": { - "CommandLineParser/2.9.1": { - "sha512": "OE0sl1/sQ37bjVsPKKtwQlWDgqaxWgtme3xZz7JssWUzg5JpMIyHgCTY9MVMxOg48fJ1AgGT3tgdH5m/kQ5xhA==", - "type": "package", - "path": "commandlineparser/2.9.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "CommandLine20.png", - "License.md", - "README.md", - "commandlineparser.2.9.1.nupkg.sha512", - "commandlineparser.nuspec", - "lib/net40/CommandLine.dll", - "lib/net40/CommandLine.xml", - "lib/net45/CommandLine.dll", - "lib/net45/CommandLine.xml", - "lib/net461/CommandLine.dll", - "lib/net461/CommandLine.xml", - "lib/netstandard2.0/CommandLine.dll", - "lib/netstandard2.0/CommandLine.xml" - ] - }, - "DnsClient/1.6.1": { - "sha512": "4H/f2uYJOZ+YObZjpY9ABrKZI+JNw3uizp6oMzTXwDw6F+2qIPhpRl/1t68O/6e98+vqNiYGu+lswmwdYUy3gg==", - "type": "package", - "path": "dnsclient/1.6.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "dnsclient.1.6.1.nupkg.sha512", - "dnsclient.nuspec", - "icon.png", - "lib/net45/DnsClient.dll", - "lib/net45/DnsClient.xml", - "lib/net471/DnsClient.dll", - "lib/net471/DnsClient.xml", - "lib/net5.0/DnsClient.dll", - "lib/net5.0/DnsClient.xml", - "lib/netstandard1.3/DnsClient.dll", - "lib/netstandard1.3/DnsClient.xml", - "lib/netstandard2.0/DnsClient.dll", - "lib/netstandard2.0/DnsClient.xml", - "lib/netstandard2.1/DnsClient.dll", - "lib/netstandard2.1/DnsClient.xml" - ] - }, - "Fantasy-Net/2025.2.0": { - "sha512": "vCkduwxkMlH8GozyS+ZlWGLC4nGjFGaL13Ah4w5HL55XAJaAhe+RX+gbSRNBeJf1Uu0cjG2MgVyS4NX7bXdN4g==", - "type": "package", - "path": "fantasy-net/2025.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE", - "README.md", - "analyzers/dotnet/cs/Fantasy.SourceGenerator.dll", - "build/Fantasy-Net.props", - "build/Fantasy-Net.targets", - "build/Fantasy.config", - "build/Fantasy.xsd", - "buildTransitive/Fantasy-Net.targets", - "buildTransitive/Fantasy.config", - "buildTransitive/Fantasy.xsd", - "fantasy-net.2025.2.0.nupkg.sha512", - "fantasy-net.nuspec", - "icon.png", - "lib/net8.0/Fantasy-Net.dll", - "lib/net9.0/Fantasy-Net.dll" - ] - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { - "sha512": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", - "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512", - "microsoft.extensions.dependencyinjection.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging.Abstractions/8.0.0": { - "sha512": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", - "type": "package", - "path": "microsoft.extensions.logging.abstractions/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", - "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", - "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", - "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", - "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", - "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", - "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512", - "microsoft.extensions.logging.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.IdentityModel.Abstractions/8.14.0": { - "sha512": "iwbCpSjD3ehfTwBhtSNEtKPK0ICun6ov7Ibx6ISNA9bfwIyzI2Siwyi9eJFCJBwxowK9xcA1mj+jBWiigeqgcQ==", - "type": "package", - "path": "microsoft.identitymodel.abstractions/8.14.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net462/Microsoft.IdentityModel.Abstractions.dll", - "lib/net462/Microsoft.IdentityModel.Abstractions.xml", - "lib/net472/Microsoft.IdentityModel.Abstractions.dll", - "lib/net472/Microsoft.IdentityModel.Abstractions.xml", - "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml", - "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/net8.0/Microsoft.IdentityModel.Abstractions.xml", - "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/net9.0/Microsoft.IdentityModel.Abstractions.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml", - "microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512", - "microsoft.identitymodel.abstractions.nuspec" - ] - }, - "Microsoft.IdentityModel.JsonWebTokens/8.14.0": { - "sha512": "4jOpiA4THdtpLyMdAb24dtj7+6GmvhOhxf5XHLYWmPKF8ApEnApal1UnJsKO4HxUWRXDA6C4WQVfYyqsRhpNpQ==", - "type": "package", - "path": "microsoft.identitymodel.jsonwebtokens/8.14.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "microsoft.identitymodel.jsonwebtokens.8.14.0.nupkg.sha512", - "microsoft.identitymodel.jsonwebtokens.nuspec" - ] - }, - "Microsoft.IdentityModel.Logging/8.14.0": { - "sha512": "eqqnemdW38CKZEHS6diA50BV94QICozDZEvSrsvN3SJXUFwVB9gy+/oz76gldP7nZliA16IglXjXTCTdmU/Ejg==", - "type": "package", - "path": "microsoft.identitymodel.logging/8.14.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net462/Microsoft.IdentityModel.Logging.dll", - "lib/net462/Microsoft.IdentityModel.Logging.xml", - "lib/net472/Microsoft.IdentityModel.Logging.dll", - "lib/net472/Microsoft.IdentityModel.Logging.xml", - "lib/net6.0/Microsoft.IdentityModel.Logging.dll", - "lib/net6.0/Microsoft.IdentityModel.Logging.xml", - "lib/net8.0/Microsoft.IdentityModel.Logging.dll", - "lib/net8.0/Microsoft.IdentityModel.Logging.xml", - "lib/net9.0/Microsoft.IdentityModel.Logging.dll", - "lib/net9.0/Microsoft.IdentityModel.Logging.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", - "microsoft.identitymodel.logging.8.14.0.nupkg.sha512", - "microsoft.identitymodel.logging.nuspec" - ] - }, - "Microsoft.IdentityModel.Tokens/8.14.0": { - "sha512": "lKIZiBiGd36k02TCdMHp1KlNWisyIvQxcYJvIkz7P4gSQ9zi8dgh6S5Grj8NNG7HWYIPfQymGyoZ6JB5d1Lo1g==", - "type": "package", - "path": "microsoft.identitymodel.tokens/8.14.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net462/Microsoft.IdentityModel.Tokens.dll", - "lib/net462/Microsoft.IdentityModel.Tokens.xml", - "lib/net472/Microsoft.IdentityModel.Tokens.dll", - "lib/net472/Microsoft.IdentityModel.Tokens.xml", - "lib/net6.0/Microsoft.IdentityModel.Tokens.dll", - "lib/net6.0/Microsoft.IdentityModel.Tokens.xml", - "lib/net8.0/Microsoft.IdentityModel.Tokens.dll", - "lib/net8.0/Microsoft.IdentityModel.Tokens.xml", - "lib/net9.0/Microsoft.IdentityModel.Tokens.dll", - "lib/net9.0/Microsoft.IdentityModel.Tokens.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", - "microsoft.identitymodel.tokens.8.14.0.nupkg.sha512", - "microsoft.identitymodel.tokens.nuspec" - ] - }, - "Microsoft.NETCore.Platforms/5.0.0": { - "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", - "type": "package", - "path": "microsoft.netcore.platforms/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netstandard1.0/_._", - "microsoft.netcore.platforms.5.0.0.nupkg.sha512", - "microsoft.netcore.platforms.nuspec", - "runtime.json", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Win32.Registry/5.0.0": { - "sha512": "dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", - "type": "package", - "path": "microsoft.win32.registry/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/Microsoft.Win32.Registry.dll", - "lib/net461/Microsoft.Win32.Registry.dll", - "lib/net461/Microsoft.Win32.Registry.xml", - "lib/netstandard1.3/Microsoft.Win32.Registry.dll", - "lib/netstandard2.0/Microsoft.Win32.Registry.dll", - "lib/netstandard2.0/Microsoft.Win32.Registry.xml", - "microsoft.win32.registry.5.0.0.nupkg.sha512", - "microsoft.win32.registry.nuspec", - "ref/net46/Microsoft.Win32.Registry.dll", - "ref/net461/Microsoft.Win32.Registry.dll", - "ref/net461/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/Microsoft.Win32.Registry.dll", - "ref/netstandard1.3/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", - "ref/netstandard2.0/Microsoft.Win32.Registry.dll", - "ref/netstandard2.0/Microsoft.Win32.Registry.xml", - "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", - "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "MongoDB.Bson/3.5.0": { - "sha512": "JGNK6BanLDEifgkvPLqVFCPus5EDCy416pxf1dxUBRSVd3D9+NB3AvMVX190eXlk5/UXuCxpsQv7jWfNKvppBQ==", - "type": "package", - "path": "mongodb.bson/3.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net472/MongoDB.Bson.dll", - "lib/net472/MongoDB.Bson.xml", - "lib/net6.0/MongoDB.Bson.dll", - "lib/net6.0/MongoDB.Bson.xml", - "lib/netstandard2.1/MongoDB.Bson.dll", - "lib/netstandard2.1/MongoDB.Bson.xml", - "mongodb.bson.3.5.0.nupkg.sha512", - "mongodb.bson.nuspec", - "packageIcon.png" - ] - }, - "MongoDB.Driver/3.5.0": { - "sha512": "ST90u7psyMkNNOWFgSkexsrB3kPn7Ynl2DlMFj2rJyYuc6SIxjmzu4ufy51yzM+cPVE1SvVcdb5UFobrRw6cMg==", - "type": "package", - "path": "mongodb.driver/3.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net472/MongoDB.Driver.dll", - "lib/net472/MongoDB.Driver.xml", - "lib/net6.0/MongoDB.Driver.dll", - "lib/net6.0/MongoDB.Driver.xml", - "lib/netstandard2.1/MongoDB.Driver.dll", - "lib/netstandard2.1/MongoDB.Driver.xml", - "mongodb.driver.3.5.0.nupkg.sha512", - "mongodb.driver.nuspec", - "packageIcon.png" - ] - }, - "Newtonsoft.Json/13.0.4": { - "sha512": "pdgNNMai3zv51W5aq268sujXUyx7SNdE2bj1wZcWjAQrKMFZV260lbqYop1d2GM67JI1huLRwxo9ZqnfF/lC6A==", - "type": "package", - "path": "newtonsoft.json/13.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.md", - "README.md", - "lib/net20/Newtonsoft.Json.dll", - "lib/net20/Newtonsoft.Json.xml", - "lib/net35/Newtonsoft.Json.dll", - "lib/net35/Newtonsoft.Json.xml", - "lib/net40/Newtonsoft.Json.dll", - "lib/net40/Newtonsoft.Json.xml", - "lib/net45/Newtonsoft.Json.dll", - "lib/net45/Newtonsoft.Json.xml", - "lib/net6.0/Newtonsoft.Json.dll", - "lib/net6.0/Newtonsoft.Json.xml", - "lib/netstandard1.0/Newtonsoft.Json.dll", - "lib/netstandard1.0/Newtonsoft.Json.xml", - "lib/netstandard1.3/Newtonsoft.Json.dll", - "lib/netstandard1.3/Newtonsoft.Json.xml", - "lib/netstandard2.0/Newtonsoft.Json.dll", - "lib/netstandard2.0/Newtonsoft.Json.xml", - "newtonsoft.json.13.0.4.nupkg.sha512", - "newtonsoft.json.nuspec", - "packageIcon.png" - ] - }, - "NLog/6.0.6": { - "sha512": "eUd/LDIwPtufj5OxtzFYiwuoKpzaS87iqO9P9D05avLCk4jIoOlqMwRH0o/43LmzM+CmgVAdDrCOq/rOK0sDKw==", - "type": "package", - "path": "nlog/6.0.6", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "N.png", - "lib/net35/NLog.dll", - "lib/net35/NLog.xml", - "lib/net45/NLog.dll", - "lib/net45/NLog.xml", - "lib/net46/NLog.dll", - "lib/net46/NLog.xml", - "lib/netstandard2.0/NLog.dll", - "lib/netstandard2.0/NLog.xml", - "lib/netstandard2.1/NLog.dll", - "lib/netstandard2.1/NLog.xml", - "nlog.6.0.6.nupkg.sha512", - "nlog.nuspec" - ] - }, - "protobuf-net/3.2.56": { - "sha512": "4IPJeTYAMNewlN8MDaFkcmR/9hLhJeo9eARnTh104zh7mf+vXT2gu5MUfUnkSQU+CH578Q6vcdU7LQDQPG6eaw==", - "type": "package", - "path": "protobuf-net/3.2.56", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net462/protobuf-net.dll", - "lib/net462/protobuf-net.xml", - "lib/net8.0/protobuf-net.dll", - "lib/net8.0/protobuf-net.xml", - "lib/netstandard2.0/protobuf-net.dll", - "lib/netstandard2.0/protobuf-net.xml", - "lib/netstandard2.1/protobuf-net.dll", - "lib/netstandard2.1/protobuf-net.xml", - "protobuf-net.3.2.56.nupkg.sha512", - "protobuf-net.nuspec", - "protobuf-net.png", - "readme.md" - ] - }, - "protobuf-net.Core/3.2.56": { - "sha512": "d6QOukTpDzs7zZv9tPnBZMtvHDNeHJQXUhMx54g4urUQsXK3oo9U70H9HvklYq7hlQ4A7AHJl7EVEqyCXXIl8Q==", - "type": "package", - "path": "protobuf-net.core/3.2.56", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net462/protobuf-net.Core.dll", - "lib/net462/protobuf-net.Core.xml", - "lib/net8.0/protobuf-net.Core.dll", - "lib/net8.0/protobuf-net.Core.xml", - "lib/netstandard2.0/protobuf-net.Core.dll", - "lib/netstandard2.0/protobuf-net.Core.xml", - "lib/netstandard2.1/protobuf-net.Core.dll", - "lib/netstandard2.1/protobuf-net.Core.xml", - "protobuf-net.core.3.2.56.nupkg.sha512", - "protobuf-net.core.nuspec", - "protobuf-net.png", - "readme.md" - ] - }, - "SharpCompress/0.30.1": { - "sha512": "XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==", - "type": "package", - "path": "sharpcompress/0.30.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net461/SharpCompress.dll", - "lib/net5.0/SharpCompress.dll", - "lib/netcoreapp3.1/SharpCompress.dll", - "lib/netstandard2.0/SharpCompress.dll", - "lib/netstandard2.1/SharpCompress.dll", - "sharpcompress.0.30.1.nupkg.sha512", - "sharpcompress.nuspec" - ] - }, - "Snappier/1.0.0": { - "sha512": "rFtK2KEI9hIe8gtx3a0YDXdHOpedIf9wYCEYtBEmtlyiWVX3XlCNV03JrmmAi/Cdfn7dxK+k0sjjcLv4fpHnqA==", - "type": "package", - "path": "snappier/1.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "COPYING.txt", - "lib/net5.0/Snappier.dll", - "lib/net5.0/Snappier.xml", - "lib/netcoreapp3.0/Snappier.dll", - "lib/netcoreapp3.0/Snappier.xml", - "lib/netstandard2.0/Snappier.dll", - "lib/netstandard2.0/Snappier.xml", - "lib/netstandard2.1/Snappier.dll", - "lib/netstandard2.1/Snappier.xml", - "snappier.1.0.0.nupkg.sha512", - "snappier.nuspec" - ] - }, - "System.Buffers/4.5.1": { - "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", - "type": "package", - "path": "system.buffers/4.5.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Buffers.dll", - "lib/net461/System.Buffers.xml", - "lib/netcoreapp2.0/_._", - "lib/netstandard1.1/System.Buffers.dll", - "lib/netstandard1.1/System.Buffers.xml", - "lib/netstandard2.0/System.Buffers.dll", - "lib/netstandard2.0/System.Buffers.xml", - "lib/uap10.0.16299/_._", - "ref/net45/System.Buffers.dll", - "ref/net45/System.Buffers.xml", - "ref/netcoreapp2.0/_._", - "ref/netstandard1.1/System.Buffers.dll", - "ref/netstandard1.1/System.Buffers.xml", - "ref/netstandard2.0/System.Buffers.dll", - "ref/netstandard2.0/System.Buffers.xml", - "ref/uap10.0.16299/_._", - "system.buffers.4.5.1.nupkg.sha512", - "system.buffers.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.IdentityModel.Tokens.Jwt/8.14.0": { - "sha512": "EYGgN/S+HK7S6F3GaaPLFAfK0UzMrkXFyWCvXpQWFYmZln3dqtbyIO7VuTM/iIIPMzkelg8ZLlBPvMhxj6nOAA==", - "type": "package", - "path": "system.identitymodel.tokens.jwt/8.14.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net462/System.IdentityModel.Tokens.Jwt.dll", - "lib/net462/System.IdentityModel.Tokens.Jwt.xml", - "lib/net472/System.IdentityModel.Tokens.Jwt.dll", - "lib/net472/System.IdentityModel.Tokens.Jwt.xml", - "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll", - "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml", - "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll", - "lib/net8.0/System.IdentityModel.Tokens.Jwt.xml", - "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll", - "lib/net9.0/System.IdentityModel.Tokens.Jwt.xml", - "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", - "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", - "system.identitymodel.tokens.jwt.8.14.0.nupkg.sha512", - "system.identitymodel.tokens.jwt.nuspec" - ] - }, - "System.Memory/4.5.5": { - "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", - "type": "package", - "path": "system.memory/4.5.5", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Memory.dll", - "lib/net461/System.Memory.xml", - "lib/netcoreapp2.1/_._", - "lib/netstandard1.1/System.Memory.dll", - "lib/netstandard1.1/System.Memory.xml", - "lib/netstandard2.0/System.Memory.dll", - "lib/netstandard2.0/System.Memory.xml", - "ref/netcoreapp2.1/_._", - "system.memory.4.5.5.nupkg.sha512", - "system.memory.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Runtime.CompilerServices.Unsafe/5.0.0": { - "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==", - "type": "package", - "path": "system.runtime.compilerservices.unsafe/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net45/System.Runtime.CompilerServices.Unsafe.dll", - "lib/net45/System.Runtime.CompilerServices.Unsafe.xml", - "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll", - "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml", - "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", - "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", - "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", - "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", - "ref/net461/System.Runtime.CompilerServices.Unsafe.dll", - "ref/net461/System.Runtime.CompilerServices.Unsafe.xml", - "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", - "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", - "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", - "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", - "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll", - "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml", - "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512", - "system.runtime.compilerservices.unsafe.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Security.AccessControl/5.0.0": { - "sha512": "dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", - "type": "package", - "path": "system.security.accesscontrol/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/System.Security.AccessControl.dll", - "lib/net461/System.Security.AccessControl.dll", - "lib/net461/System.Security.AccessControl.xml", - "lib/netstandard1.3/System.Security.AccessControl.dll", - "lib/netstandard2.0/System.Security.AccessControl.dll", - "lib/netstandard2.0/System.Security.AccessControl.xml", - "lib/uap10.0.16299/_._", - "ref/net46/System.Security.AccessControl.dll", - "ref/net461/System.Security.AccessControl.dll", - "ref/net461/System.Security.AccessControl.xml", - "ref/netstandard1.3/System.Security.AccessControl.dll", - "ref/netstandard1.3/System.Security.AccessControl.xml", - "ref/netstandard1.3/de/System.Security.AccessControl.xml", - "ref/netstandard1.3/es/System.Security.AccessControl.xml", - "ref/netstandard1.3/fr/System.Security.AccessControl.xml", - "ref/netstandard1.3/it/System.Security.AccessControl.xml", - "ref/netstandard1.3/ja/System.Security.AccessControl.xml", - "ref/netstandard1.3/ko/System.Security.AccessControl.xml", - "ref/netstandard1.3/ru/System.Security.AccessControl.xml", - "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", - "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", - "ref/netstandard2.0/System.Security.AccessControl.dll", - "ref/netstandard2.0/System.Security.AccessControl.xml", - "ref/uap10.0.16299/_._", - "runtimes/win/lib/net46/System.Security.AccessControl.dll", - "runtimes/win/lib/net461/System.Security.AccessControl.dll", - "runtimes/win/lib/net461/System.Security.AccessControl.xml", - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", - "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", - "runtimes/win/lib/uap10.0.16299/_._", - "system.security.accesscontrol.5.0.0.nupkg.sha512", - "system.security.accesscontrol.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Security.Principal.Windows/5.0.0": { - "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", - "type": "package", - "path": "system.security.principal.windows/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/System.Security.Principal.Windows.dll", - "lib/net461/System.Security.Principal.Windows.dll", - "lib/net461/System.Security.Principal.Windows.xml", - "lib/netstandard1.3/System.Security.Principal.Windows.dll", - "lib/netstandard2.0/System.Security.Principal.Windows.dll", - "lib/netstandard2.0/System.Security.Principal.Windows.xml", - "lib/uap10.0.16299/_._", - "ref/net46/System.Security.Principal.Windows.dll", - "ref/net461/System.Security.Principal.Windows.dll", - "ref/net461/System.Security.Principal.Windows.xml", - "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", - "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/System.Security.Principal.Windows.dll", - "ref/netstandard1.3/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", - "ref/netstandard2.0/System.Security.Principal.Windows.dll", - "ref/netstandard2.0/System.Security.Principal.Windows.xml", - "ref/uap10.0.16299/_._", - "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", - "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", - "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", - "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", - "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", - "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", - "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", - "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", - "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", - "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", - "runtimes/win/lib/uap10.0.16299/_._", - "system.security.principal.windows.5.0.0.nupkg.sha512", - "system.security.principal.windows.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "ZstdSharp.Port/0.7.3": { - "sha512": "U9Ix4l4cl58Kzz1rJzj5hoVTjmbx1qGMwzAcbv1j/d3NzrFaESIurQyg+ow4mivCgkE3S413y+U9k4WdnEIkRA==", - "type": "package", - "path": "zstdsharp.port/0.7.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net461/ZstdSharp.dll", - "lib/net5.0/ZstdSharp.dll", - "lib/net6.0/ZstdSharp.dll", - "lib/net7.0/ZstdSharp.dll", - "lib/netcoreapp3.1/ZstdSharp.dll", - "lib/netstandard2.0/ZstdSharp.dll", - "lib/netstandard2.1/ZstdSharp.dll", - "zstdsharp.port.0.7.3.nupkg.sha512", - "zstdsharp.port.nuspec" - ] - }, - "Entity/1.0.0": { - "type": "project", - "path": "../Entity/Entity.csproj", - "msbuildProject": "../Entity/Entity.csproj" - }, - "Hotfix/1.0.0": { - "type": "project", - "path": "../Hotfix/Hotfix.csproj", - "msbuildProject": "../Hotfix/Hotfix.csproj" - }, - "ThirdParty/1.0.0": { - "type": "project", - "path": "../ThirdParty/ThirdParty.csproj", - "msbuildProject": "../ThirdParty/ThirdParty.csproj" - } - }, - "projectFileDependencyGroups": { - "net9.0": [ - "Entity >= 1.0.0", - "Hotfix >= 1.0.0", - "NLog >= *" - ] - }, - "packageFolders": { - "C:\\Users\\FIREBAT\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\work\\Fishing2Server\\Main\\Main.csproj", - "projectName": "Main", - "projectPath": "D:\\work\\Fishing2Server\\Main\\Main.csproj", - "packagesPath": "C:\\Users\\FIREBAT\\.nuget\\packages\\", - "outputPath": "D:\\work\\Fishing2Server\\Main\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\FIREBAT\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net9.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net9.0": { - "targetAlias": "net9.0", - "projectReferences": { - "D:\\work\\Fishing2Server\\Entity\\Entity.csproj": { - "projectPath": "D:\\work\\Fishing2Server\\Entity\\Entity.csproj" - }, - "D:\\work\\Fishing2Server\\Hotfix\\Hotfix.csproj": { - "projectPath": "D:\\work\\Fishing2Server\\Hotfix\\Hotfix.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "direct" - }, - "SdkAnalysisLevel": "9.0.300" - }, - "frameworks": { - "net9.0": { - "targetAlias": "net9.0", - "dependencies": { - "NLog": { - "target": "Package", - "version": "[*, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/Main/obj/project.nuget.cache b/Main/obj/project.nuget.cache deleted file mode 100644 index cca274d..0000000 --- a/Main/obj/project.nuget.cache +++ /dev/null @@ -1,35 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "tXEWsEHCjQI=", - "success": true, - "projectFilePath": "D:\\work\\Fishing2Server\\Main\\Main.csproj", - "expectedPackageFiles": [ - "C:\\Users\\FIREBAT\\.nuget\\packages\\commandlineparser\\2.9.1\\commandlineparser.2.9.1.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\dnsclient\\1.6.1\\dnsclient.1.6.1.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\fantasy-net\\2025.2.0\\fantasy-net.2025.2.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.0\\microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\8.0.0\\microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\microsoft.identitymodel.abstractions\\8.14.0\\microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\8.14.0\\microsoft.identitymodel.jsonwebtokens.8.14.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\microsoft.identitymodel.logging\\8.14.0\\microsoft.identitymodel.logging.8.14.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\microsoft.identitymodel.tokens\\8.14.0\\microsoft.identitymodel.tokens.8.14.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\microsoft.win32.registry\\5.0.0\\microsoft.win32.registry.5.0.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\mongodb.bson\\3.5.0\\mongodb.bson.3.5.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\mongodb.driver\\3.5.0\\mongodb.driver.3.5.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\newtonsoft.json\\13.0.4\\newtonsoft.json.13.0.4.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\nlog\\6.0.6\\nlog.6.0.6.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\protobuf-net\\3.2.56\\protobuf-net.3.2.56.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\protobuf-net.core\\3.2.56\\protobuf-net.core.3.2.56.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\sharpcompress\\0.30.1\\sharpcompress.0.30.1.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\snappier\\1.0.0\\snappier.1.0.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\system.identitymodel.tokens.jwt\\8.14.0\\system.identitymodel.tokens.jwt.8.14.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\system.memory\\4.5.5\\system.memory.4.5.5.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\5.0.0\\system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\system.security.accesscontrol\\5.0.0\\system.security.accesscontrol.5.0.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", - "C:\\Users\\FIREBAT\\.nuget\\packages\\zstdsharp.port\\0.7.3\\zstdsharp.port.0.7.3.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/Main/obj/project.packagespec.json b/Main/obj/project.packagespec.json deleted file mode 100644 index 2b7f131..0000000 --- a/Main/obj/project.packagespec.json +++ /dev/null @@ -1 +0,0 @@ -"restore":{"projectUniqueName":"D:\\work\\Fishing2Server\\Main\\Main.csproj","projectName":"Main","projectPath":"D:\\work\\Fishing2Server\\Main\\Main.csproj","outputPath":"D:\\work\\Fishing2Server\\Main\\obj\\","projectStyle":"PackageReference","fallbackFolders":["C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"],"originalTargetFrameworks":["net9.0"],"sources":{"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net9.0":{"targetAlias":"net9.0","projectReferences":{"D:\\work\\Fishing2Server\\Entity\\Entity.csproj":{"projectPath":"D:\\work\\Fishing2Server\\Entity\\Entity.csproj"},"D:\\work\\Fishing2Server\\Hotfix\\Hotfix.csproj":{"projectPath":"D:\\work\\Fishing2Server\\Hotfix\\Hotfix.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"},"SdkAnalysisLevel":"9.0.300"}"frameworks":{"net9.0":{"targetAlias":"net9.0","dependencies":{"NLog":{"target":"Package","version":"[*, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/Main/obj/rider.project.model.nuget.info b/Main/obj/rider.project.model.nuget.info deleted file mode 100644 index 6d2746b..0000000 --- a/Main/obj/rider.project.model.nuget.info +++ /dev/null @@ -1 +0,0 @@ -17628533865638419 \ No newline at end of file diff --git a/Main/obj/rider.project.restore.info b/Main/obj/rider.project.restore.info deleted file mode 100644 index fb450a1..0000000 --- a/Main/obj/rider.project.restore.info +++ /dev/null @@ -1 +0,0 @@ -17628541519681195 \ No newline at end of file diff --git a/ThirdParty/bin/Debug/net8.0/ThirdParty.deps.json b/ThirdParty/bin/Debug/net8.0/ThirdParty.deps.json deleted file mode 100644 index 84789c4..0000000 --- a/ThirdParty/bin/Debug/net8.0/ThirdParty.deps.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v8.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v8.0": { - "ThirdParty/1.0.0": { - "runtime": { - "ThirdParty.dll": {} - } - } - } - }, - "libraries": { - "ThirdParty/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/ThirdParty/bin/Debug/net8.0/ThirdParty.dll b/ThirdParty/bin/Debug/net8.0/ThirdParty.dll deleted file mode 100644 index c68db15..0000000 Binary files a/ThirdParty/bin/Debug/net8.0/ThirdParty.dll and /dev/null differ diff --git a/ThirdParty/bin/Debug/net8.0/ThirdParty.pdb b/ThirdParty/bin/Debug/net8.0/ThirdParty.pdb deleted file mode 100644 index 6d74378..0000000 Binary files a/ThirdParty/bin/Debug/net8.0/ThirdParty.pdb and /dev/null differ diff --git a/ThirdParty/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/ThirdParty/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs deleted file mode 100644 index 2217181..0000000 --- a/ThirdParty/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/ThirdParty/obj/Debug/net8.0/ThirdParty.AssemblyInfo.cs b/ThirdParty/obj/Debug/net8.0/ThirdParty.AssemblyInfo.cs deleted file mode 100644 index ea1b1f0..0000000 --- a/ThirdParty/obj/Debug/net8.0/ThirdParty.AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -//------------------------------------------------------------------------------ -// -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 -// -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("ThirdParty")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7b10d4cb317c9f310649a9cb4afe3882d4b12624")] -[assembly: System.Reflection.AssemblyProductAttribute("ThirdParty")] -[assembly: System.Reflection.AssemblyTitleAttribute("ThirdParty")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// 由 MSBuild WriteCodeFragment 类生成。 - diff --git a/ThirdParty/obj/Debug/net8.0/ThirdParty.AssemblyInfoInputs.cache b/ThirdParty/obj/Debug/net8.0/ThirdParty.AssemblyInfoInputs.cache deleted file mode 100644 index 4db7bb4..0000000 --- a/ThirdParty/obj/Debug/net8.0/ThirdParty.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -343aff4060e1171ae9efe8ea48e50784b28c7410d94cfab84812dab9813996af diff --git a/ThirdParty/obj/Debug/net8.0/ThirdParty.GeneratedMSBuildEditorConfig.editorconfig b/ThirdParty/obj/Debug/net8.0/ThirdParty.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 5536950..0000000 --- a/ThirdParty/obj/Debug/net8.0/ThirdParty.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,15 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = ThirdParty -build_property.ProjectDir = D:\work\Fishing2Server\ThirdParty\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.EffectiveAnalysisLevelStyle = 8.0 -build_property.EnableCodeStyleSeverity = diff --git a/ThirdParty/obj/Debug/net8.0/ThirdParty.GlobalUsings.g.cs b/ThirdParty/obj/Debug/net8.0/ThirdParty.GlobalUsings.g.cs deleted file mode 100644 index 8578f3d..0000000 --- a/ThirdParty/obj/Debug/net8.0/ThirdParty.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -global using global::System; -global using global::System.Collections.Generic; -global using global::System.IO; -global using global::System.Linq; -global using global::System.Net.Http; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/ThirdParty/obj/Debug/net8.0/ThirdParty.assets.cache b/ThirdParty/obj/Debug/net8.0/ThirdParty.assets.cache deleted file mode 100644 index c4ddefd..0000000 Binary files a/ThirdParty/obj/Debug/net8.0/ThirdParty.assets.cache and /dev/null differ diff --git a/ThirdParty/obj/Debug/net8.0/ThirdParty.csproj.CoreCompileInputs.cache b/ThirdParty/obj/Debug/net8.0/ThirdParty.csproj.CoreCompileInputs.cache deleted file mode 100644 index acb400e..0000000 --- a/ThirdParty/obj/Debug/net8.0/ThirdParty.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -67676f43cfe61f8f0c588d3eb57c01718e4bdc9b7f4587b07207c9cd9eefc6bf diff --git a/ThirdParty/obj/Debug/net8.0/ThirdParty.csproj.FileListAbsolute.txt b/ThirdParty/obj/Debug/net8.0/ThirdParty.csproj.FileListAbsolute.txt deleted file mode 100644 index ca7481a..0000000 --- a/ThirdParty/obj/Debug/net8.0/ThirdParty.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,22 +0,0 @@ -D:\work\Fishing2Server\ThirdParty\bin\Debug\net8.0\ThirdParty.deps.json -D:\work\Fishing2Server\ThirdParty\bin\Debug\net8.0\ThirdParty.dll -D:\work\Fishing2Server\ThirdParty\bin\Debug\net8.0\ThirdParty.pdb -D:\work\Fishing2Server\ThirdParty\obj\Debug\net8.0\ThirdParty.GeneratedMSBuildEditorConfig.editorconfig -D:\work\Fishing2Server\ThirdParty\obj\Debug\net8.0\ThirdParty.AssemblyInfoInputs.cache -D:\work\Fishing2Server\ThirdParty\obj\Debug\net8.0\ThirdParty.AssemblyInfo.cs -D:\work\Fishing2Server\ThirdParty\obj\Debug\net8.0\ThirdParty.csproj.CoreCompileInputs.cache -D:\work\Fishing2Server\ThirdParty\obj\Debug\net8.0\ThirdParty.dll -D:\work\Fishing2Server\ThirdParty\obj\Debug\net8.0\refint\ThirdParty.dll -D:\work\Fishing2Server\ThirdParty\obj\Debug\net8.0\ThirdParty.pdb -D:\work\Fishing2Server\ThirdParty\obj\Debug\net8.0\ref\ThirdParty.dll -D:\work\Fishing2ServerNew\Fishing2\Server\ThirdParty\bin\Debug\net8.0\ThirdParty.deps.json -D:\work\Fishing2ServerNew\Fishing2\Server\ThirdParty\bin\Debug\net8.0\ThirdParty.dll -D:\work\Fishing2ServerNew\Fishing2\Server\ThirdParty\bin\Debug\net8.0\ThirdParty.pdb -D:\work\Fishing2ServerNew\Fishing2\Server\ThirdParty\obj\Debug\net8.0\ThirdParty.GeneratedMSBuildEditorConfig.editorconfig -D:\work\Fishing2ServerNew\Fishing2\Server\ThirdParty\obj\Debug\net8.0\ThirdParty.AssemblyInfoInputs.cache -D:\work\Fishing2ServerNew\Fishing2\Server\ThirdParty\obj\Debug\net8.0\ThirdParty.AssemblyInfo.cs -D:\work\Fishing2ServerNew\Fishing2\Server\ThirdParty\obj\Debug\net8.0\ThirdParty.csproj.CoreCompileInputs.cache -D:\work\Fishing2ServerNew\Fishing2\Server\ThirdParty\obj\Debug\net8.0\ThirdParty.dll -D:\work\Fishing2ServerNew\Fishing2\Server\ThirdParty\obj\Debug\net8.0\refint\ThirdParty.dll -D:\work\Fishing2ServerNew\Fishing2\Server\ThirdParty\obj\Debug\net8.0\ThirdParty.pdb -D:\work\Fishing2ServerNew\Fishing2\Server\ThirdParty\obj\Debug\net8.0\ref\ThirdParty.dll diff --git a/ThirdParty/obj/Debug/net8.0/ThirdParty.dll b/ThirdParty/obj/Debug/net8.0/ThirdParty.dll deleted file mode 100644 index c68db15..0000000 Binary files a/ThirdParty/obj/Debug/net8.0/ThirdParty.dll and /dev/null differ diff --git a/ThirdParty/obj/Debug/net8.0/ThirdParty.pdb b/ThirdParty/obj/Debug/net8.0/ThirdParty.pdb deleted file mode 100644 index 6d74378..0000000 Binary files a/ThirdParty/obj/Debug/net8.0/ThirdParty.pdb and /dev/null differ diff --git a/ThirdParty/obj/Debug/net8.0/ref/ThirdParty.dll b/ThirdParty/obj/Debug/net8.0/ref/ThirdParty.dll deleted file mode 100644 index 9547fd1..0000000 Binary files a/ThirdParty/obj/Debug/net8.0/ref/ThirdParty.dll and /dev/null differ diff --git a/ThirdParty/obj/Debug/net8.0/refint/ThirdParty.dll b/ThirdParty/obj/Debug/net8.0/refint/ThirdParty.dll deleted file mode 100644 index 9547fd1..0000000 Binary files a/ThirdParty/obj/Debug/net8.0/refint/ThirdParty.dll and /dev/null differ diff --git a/ThirdParty/obj/ThirdParty.csproj.nuget.dgspec.json b/ThirdParty/obj/ThirdParty.csproj.nuget.dgspec.json deleted file mode 100644 index 34fe0b9..0000000 --- a/ThirdParty/obj/ThirdParty.csproj.nuget.dgspec.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "format": 1, - "restore": { - "D:\\work\\Fishing2Server\\ThirdParty\\ThirdParty.csproj": {} - }, - "projects": { - "D:\\work\\Fishing2Server\\ThirdParty\\ThirdParty.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\work\\Fishing2Server\\ThirdParty\\ThirdParty.csproj", - "projectName": "ThirdParty", - "projectPath": "D:\\work\\Fishing2Server\\ThirdParty\\ThirdParty.csproj", - "packagesPath": "C:\\Users\\FIREBAT\\.nuget\\packages\\", - "outputPath": "D:\\work\\Fishing2Server\\ThirdParty\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\FIREBAT\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net8.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net8.0": { - "targetAlias": "net8.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "direct" - }, - "SdkAnalysisLevel": "9.0.300" - }, - "frameworks": { - "net8.0": { - "targetAlias": "net8.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/ThirdParty/obj/ThirdParty.csproj.nuget.g.props b/ThirdParty/obj/ThirdParty.csproj.nuget.g.props deleted file mode 100644 index fbb082f..0000000 --- a/ThirdParty/obj/ThirdParty.csproj.nuget.g.props +++ /dev/null @@ -1,16 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\FIREBAT\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages - PackageReference - 6.14.0 - - - - - - \ No newline at end of file diff --git a/ThirdParty/obj/ThirdParty.csproj.nuget.g.targets b/ThirdParty/obj/ThirdParty.csproj.nuget.g.targets deleted file mode 100644 index 3dc06ef..0000000 --- a/ThirdParty/obj/ThirdParty.csproj.nuget.g.targets +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/ThirdParty/obj/project.assets.json b/ThirdParty/obj/project.assets.json deleted file mode 100644 index 604a98f..0000000 --- a/ThirdParty/obj/project.assets.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "version": 3, - "targets": { - "net8.0": {} - }, - "libraries": {}, - "projectFileDependencyGroups": { - "net8.0": [] - }, - "packageFolders": { - "C:\\Users\\FIREBAT\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\work\\Fishing2Server\\ThirdParty\\ThirdParty.csproj", - "projectName": "ThirdParty", - "projectPath": "D:\\work\\Fishing2Server\\ThirdParty\\ThirdParty.csproj", - "packagesPath": "C:\\Users\\FIREBAT\\.nuget\\packages\\", - "outputPath": "D:\\work\\Fishing2Server\\ThirdParty\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\FIREBAT\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net8.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net8.0": { - "targetAlias": "net8.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "direct" - }, - "SdkAnalysisLevel": "9.0.300" - }, - "frameworks": { - "net8.0": { - "targetAlias": "net8.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/ThirdParty/obj/project.nuget.cache b/ThirdParty/obj/project.nuget.cache deleted file mode 100644 index 5a9b4e8..0000000 --- a/ThirdParty/obj/project.nuget.cache +++ /dev/null @@ -1,8 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "lXq0CpWaEKA=", - "success": true, - "projectFilePath": "D:\\work\\Fishing2Server\\ThirdParty\\ThirdParty.csproj", - "expectedPackageFiles": [], - "logs": [] -} \ No newline at end of file diff --git a/ThirdParty/obj/project.packagespec.json b/ThirdParty/obj/project.packagespec.json deleted file mode 100644 index bd75f68..0000000 --- a/ThirdParty/obj/project.packagespec.json +++ /dev/null @@ -1 +0,0 @@ -"restore":{"projectUniqueName":"D:\\work\\Fishing2Server\\ThirdParty\\ThirdParty.csproj","projectName":"ThirdParty","projectPath":"D:\\work\\Fishing2Server\\ThirdParty\\ThirdParty.csproj","outputPath":"D:\\work\\Fishing2Server\\ThirdParty\\obj\\","projectStyle":"PackageReference","fallbackFolders":["C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"],"originalTargetFrameworks":["net8.0"],"sources":{"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"},"SdkAnalysisLevel":"9.0.300"}"frameworks":{"net8.0":{"targetAlias":"net8.0","imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/ThirdParty/obj/rider.project.model.nuget.info b/ThirdParty/obj/rider.project.model.nuget.info deleted file mode 100644 index b93a03c..0000000 --- a/ThirdParty/obj/rider.project.model.nuget.info +++ /dev/null @@ -1 +0,0 @@ -17628533858668918 \ No newline at end of file diff --git a/ThirdParty/obj/rider.project.restore.info b/ThirdParty/obj/rider.project.restore.info deleted file mode 100644 index ef1587a..0000000 --- a/ThirdParty/obj/rider.project.restore.info +++ /dev/null @@ -1 +0,0 @@ -17628541514056906 \ No newline at end of file diff --git a/Tools/NetworkProtocol/NetworkProtocol.zip b/Tools/NetworkProtocol/NetworkProtocol.zip deleted file mode 100644 index 706552d..0000000 Binary files a/Tools/NetworkProtocol/NetworkProtocol.zip and /dev/null differ diff --git a/Tools/NetworkProtocol/Outer/GameMessage.proto b/Tools/NetworkProtocol/Outer/GameMessage.proto index 3dea31f..0c02e10 100644 --- a/Tools/NetworkProtocol/Outer/GameMessage.proto +++ b/Tools/NetworkProtocol/Outer/GameMessage.proto @@ -40,9 +40,10 @@ message Game2C_ItemChange // ICustomRouteMessage,GameRoute ///请求安装或取下配件 message C2Game_RigChangeRequest // ICustomRouteRequest,Game2C_RigChangeResponse,GameRoute { - int64 RodId = 1;//杆子id + int64 ItemId = 1;//主物体id int64 RigId = 2;//变更的配件 - bool IsAdd = 3;//是否添加 + int64 OldRigId = 3;//换下的配件 + bool IsAdd = 4;//是否添加 } ///请求安装配件响应 diff --git a/Tools/NetworkProtocol/Outer/SocialMessage.proto b/Tools/NetworkProtocol/Outer/SocialMessage.proto index 1f68903..9b73e67 100644 --- a/Tools/NetworkProtocol/Outer/SocialMessage.proto +++ b/Tools/NetworkProtocol/Outer/SocialMessage.proto @@ -130,7 +130,7 @@ message S2C_SendMessageResponse // ICustomRouteResponse ///推送消息 message S2C_Message // ICustomRouteMessage,SocialRoute { - ChatMessageInfo Message = 1; + ChatMessageInfo Msg = 1; } diff --git a/Tools/ProtocolExportTool/ExporterSettings.json b/Tools/ProtocolExportTool/ExporterSettings.json index f6cc5dc..69a4e1e 100644 --- a/Tools/ProtocolExportTool/ExporterSettings.json +++ b/Tools/ProtocolExportTool/ExporterSettings.json @@ -5,11 +5,11 @@ "Comment": "网络协议文件所在的文件夹位置" }, "NetworkProtocolServerDirectory": { - "Value": "../../Server/Entity/Generate/NetworkProtocol/", + "Value": "../../Entity/Generate/NetworkProtocol/", "Comment": "网络协议生成到服务端的文件夹位置" }, "NetworkProtocolClientDirectory": { - "Value": "../../Client/Unity/Assets/Scripts/Hotfix/Generate/NetworkProtocol/", + "Value": "../../../Fishing2/Assets/Scripts/Generate/NetworkProtocol/", "Comment": "网络协议生成到客户端的文件夹位置" }, "Serializes": { diff --git a/Tools/ProtocolExportTool/__MACOSX/._Run.bat b/Tools/ProtocolExportTool/__MACOSX/._Run.bat deleted file mode 100644 index 9747896..0000000 Binary files a/Tools/ProtocolExportTool/__MACOSX/._Run.bat and /dev/null differ diff --git a/Tools/ProtocolExportTool/__MACOSX/._Run.sh b/Tools/ProtocolExportTool/__MACOSX/._Run.sh deleted file mode 100644 index cb3996a..0000000 Binary files a/Tools/ProtocolExportTool/__MACOSX/._Run.sh and /dev/null differ diff --git a/Tools/ProtocolExportTool/__MACOSX/runtimes/._.DS_Store b/Tools/ProtocolExportTool/__MACOSX/runtimes/._.DS_Store deleted file mode 100644 index a5b28df..0000000 Binary files a/Tools/ProtocolExportTool/__MACOSX/runtimes/._.DS_Store and /dev/null differ diff --git a/Tools/ProtocolExportTool/__MACOSX/runtimes/browser/._.DS_Store b/Tools/ProtocolExportTool/__MACOSX/runtimes/browser/._.DS_Store deleted file mode 100644 index a5b28df..0000000 Binary files a/Tools/ProtocolExportTool/__MACOSX/runtimes/browser/._.DS_Store and /dev/null differ diff --git a/Tools/ProtocolExportTool/__MACOSX/runtimes/browser/lib/._.DS_Store b/Tools/ProtocolExportTool/__MACOSX/runtimes/browser/lib/._.DS_Store deleted file mode 100644 index a5b28df..0000000 Binary files a/Tools/ProtocolExportTool/__MACOSX/runtimes/browser/lib/._.DS_Store and /dev/null differ