diff --git a/GameServer/.vs/GameServer/FileContentIndex/5baa5e5b-6fbc-4b72-ab66-e4de1da732d6.vsidx b/GameServer/.vs/GameServer/FileContentIndex/5baa5e5b-6fbc-4b72-ab66-e4de1da732d6.vsidx new file mode 100644 index 0000000..f34e854 Binary files /dev/null and b/GameServer/.vs/GameServer/FileContentIndex/5baa5e5b-6fbc-4b72-ab66-e4de1da732d6.vsidx differ diff --git a/GameServer/.vs/GameServer/FileContentIndex/c52fb330-2e63-42d0-ad62-7114724f4687.vsidx b/GameServer/.vs/GameServer/FileContentIndex/c52fb330-2e63-42d0-ad62-7114724f4687.vsidx new file mode 100644 index 0000000..abb5f5e Binary files /dev/null and b/GameServer/.vs/GameServer/FileContentIndex/c52fb330-2e63-42d0-ad62-7114724f4687.vsidx differ diff --git a/GameServer/.vs/GameServer/FileContentIndex/d8d74d54-bdc5-4de1-85ca-ba249f90bd68.vsidx b/GameServer/.vs/GameServer/FileContentIndex/d8d74d54-bdc5-4de1-85ca-ba249f90bd68.vsidx new file mode 100644 index 0000000..fc15b5b Binary files /dev/null and b/GameServer/.vs/GameServer/FileContentIndex/d8d74d54-bdc5-4de1-85ca-ba249f90bd68.vsidx differ diff --git a/GameServer/.vs/GameServer/FileContentIndex/read.lock b/GameServer/.vs/GameServer/FileContentIndex/read.lock new file mode 100644 index 0000000..e69de29 diff --git a/GameServer/.vs/GameServer/v17/.suo b/GameServer/.vs/GameServer/v17/.suo new file mode 100644 index 0000000..3bfbf78 Binary files /dev/null and b/GameServer/.vs/GameServer/v17/.suo differ diff --git a/GameServer/.vs/GameServer/v17/.wsuo b/GameServer/.vs/GameServer/v17/.wsuo new file mode 100644 index 0000000..daf8f88 Binary files /dev/null and b/GameServer/.vs/GameServer/v17/.wsuo differ diff --git a/GameServer/.vs/ProjectSettings.json b/GameServer/.vs/ProjectSettings.json new file mode 100644 index 0000000..f8b4888 --- /dev/null +++ b/GameServer/.vs/ProjectSettings.json @@ -0,0 +1,3 @@ +{ + "CurrentProjectSetting": null +} \ No newline at end of file diff --git a/GameServer/.vs/VSWorkspaceState.json b/GameServer/.vs/VSWorkspaceState.json new file mode 100644 index 0000000..7e98a77 --- /dev/null +++ b/GameServer/.vs/VSWorkspaceState.json @@ -0,0 +1,7 @@ +{ + "ExpandedNodes": [ + "" + ], + "SelectedNode": "\\GameServer.sln", + "PreviewInSolutionExplorer": false +} \ No newline at end of file diff --git a/GameServer/.vs/slnx.sqlite b/GameServer/.vs/slnx.sqlite new file mode 100644 index 0000000..09bf312 Binary files /dev/null and b/GameServer/.vs/slnx.sqlite differ diff --git a/GameServer/GameServer.csproj b/GameServer/GameServer.csproj index 74abf5c..5cd525e 100644 --- a/GameServer/GameServer.csproj +++ b/GameServer/GameServer.csproj @@ -7,4 +7,9 @@ enable + + + + + diff --git a/GameServer/Program.cs b/GameServer/Program.cs index 2b6e3aa..fb7a2b6 100644 --- a/GameServer/Program.cs +++ b/GameServer/Program.cs @@ -1,4 +1,6 @@ -using System; +using NetMQ; +using NetMQ.Sockets; +using System; using System.Collections.Concurrent; using System.Net; using System.Net.Sockets; @@ -10,11 +12,23 @@ namespace GameServer internal class Program { private static ConcurrentDictionary clients = new ConcurrentDictionary(); + public static SubscriberSocket ToClientSubscriber; + public static PublisherSocket ToClientPublisher; + static string subPort = ""; + static string pubPort = ""; - static async Task Main(string[] args) + static void Main(string[] args) { - await RunServer(); - Console.ReadKey(); + Task.Run(RunServer); + ToClientPublisher = new PublisherSocket(); + ToClientPublisher.Bind("tcp://*:8888"); + ToClientSubscriber = new SubscriberSocket(); + ToClientSubscriber.Bind("tcp://*:8889"); + ThreadStart start1 = new ThreadStart(ReciveFormRoomSyncArea); + Thread thread1 = new Thread(start1); + thread1.IsBackground = true; + thread1.Start(); + thread1.Join(); } static async Task RunServer() @@ -70,6 +84,8 @@ namespace GameServer Console.WriteLine($"创建房间 {commands[1]}"); var room = Room.Create(commands[1], user.userId); response = Encoding.UTF8.GetBytes(string.Format("createroom {0},{1},{2}", room.roomId, room.roomname, room.creater)); + ToClientSubscriber.Subscribe(room.roomId.ToString()); + Console.WriteLine("订阅:" + room.roomId.ToString()); await stream.WriteAsync(response, 0, response.Length); break; case "getrooms"://获取所有房间 @@ -115,6 +131,8 @@ namespace GameServer if (!string.IsNullOrWhiteSpace(close)) { response = Encoding.UTF8.GetBytes(string.Format("closeroom {0}", close)); + ToClientSubscriber.Unsubscribe(close); + Console.WriteLine("退订:" + close); await stream.WriteAsync(response, 0, response.Length); } break; @@ -141,5 +159,28 @@ namespace GameServer } client.Close(); } + + static void ReciveFormRoomSyncArea() + { + while (true) + { + List frameByte = new List(); + if (ToClientSubscriber.TryReceiveMultipartBytes(ref frameByte)) + { + if (!ToClientPublisher.SendMoreFrame(frameByte[0]).TrySendFrame(frameByte[1])) + { + Console.WriteLine("发送消息错误:" + frameByte[0]); + } + } + } + } + } + + [Serializable] + public class st_Motions + { + public string area; + public int m_iOperaType; + public byte[] m_sOperaData; } } \ No newline at end of file diff --git a/GameServer/bin/Debug/net6.0/AsyncIO.dll b/GameServer/bin/Debug/net6.0/AsyncIO.dll new file mode 100644 index 0000000..81f1bd0 Binary files /dev/null and b/GameServer/bin/Debug/net6.0/AsyncIO.dll differ diff --git a/GameServer/bin/Debug/net6.0/GameServer.deps.json b/GameServer/bin/Debug/net6.0/GameServer.deps.json index f28731c..b314d9d 100644 --- a/GameServer/bin/Debug/net6.0/GameServer.deps.json +++ b/GameServer/bin/Debug/net6.0/GameServer.deps.json @@ -7,9 +7,263 @@ "targets": { ".NETCoreApp,Version=v6.0": { "GameServer/1.0.0": { + "dependencies": { + "NetMQ": "4.0.1.13", + "Newtonsoft.Json": "13.0.3" + }, "runtime": { "GameServer.dll": {} } + }, + "AsyncIO/0.1.69": { + "runtime": { + "lib/netstandard2.0/AsyncIO.dll": { + "assemblyVersion": "0.1.69.0", + "fileVersion": "0.1.69.0" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/5.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "Microsoft.Extensions.ObjectPool/5.0.10": { + "runtime": { + "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.1021.41022" + } + } + }, + "Microsoft.NETCore.Platforms/5.0.0": {}, + "Microsoft.Win32.SystemEvents/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "NaCl.Net/0.1.13": { + "runtime": { + "lib/netstandard2.1/NaCl.dll": { + "assemblyVersion": "0.1.13.0", + "fileVersion": "0.1.13.0" + } + } + }, + "NetMQ/4.0.1.13": { + "dependencies": { + "AsyncIO": "0.1.69", + "NaCl.Net": "0.1.13", + "System.ServiceModel.Primitives": "4.9.0", + "System.ValueTuple": "4.5.0" + }, + "runtime": { + "lib/netstandard2.1/NetMQ.dll": { + "assemblyVersion": "4.0.1.13", + "fileVersion": "4.0.1.13" + } + } + }, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + } + }, + "System.Drawing.Common/5.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "5.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Formats.Asn1/5.0.0": {}, + "System.Numerics.Vectors/4.5.0": {}, + "System.Private.ServiceModel/4.9.0": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "5.0.0", + "Microsoft.Extensions.ObjectPool": "5.0.10", + "System.Numerics.Vectors": "4.5.0", + "System.Reflection.DispatchProxy": "4.7.1", + "System.Security.Cryptography.Xml": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Private.ServiceModel.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + } + }, + "resources": { + "lib/netstandard2.0/cs/System.Private.ServiceModel.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/System.Private.ServiceModel.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/System.Private.ServiceModel.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/System.Private.ServiceModel.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/System.Private.ServiceModel.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/System.Private.ServiceModel.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/System.Private.ServiceModel.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/System.Private.ServiceModel.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/System.Private.ServiceModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/System.Private.ServiceModel.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/System.Private.ServiceModel.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/System.Private.ServiceModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/System.Private.ServiceModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Reflection.DispatchProxy/4.7.1": {}, + "System.Security.AccessControl/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "System.Security.Cryptography.Cng/5.0.0": { + "dependencies": { + "System.Formats.Asn1": "5.0.0" + } + }, + "System.Security.Cryptography.Pkcs/5.0.0": { + "dependencies": { + "System.Formats.Asn1": "5.0.0", + "System.Security.Cryptography.Cng": "5.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Security.Cryptography.Xml/5.0.0": { + "dependencies": { + "System.Security.Cryptography.Pkcs": "5.0.0", + "System.Security.Permissions": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.Xml.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Security.Permissions/5.0.0": { + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Windows.Extensions": "5.0.0" + }, + "runtime": { + "lib/net5.0/System.Security.Permissions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Security.Principal.Windows/5.0.0": {}, + "System.ServiceModel.Primitives/4.9.0": { + "dependencies": { + "System.Private.ServiceModel": "4.9.0" + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Primitives.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + }, + "lib/net6.0/System.ServiceModel.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.900.21.52002" + } + } + }, + "System.ValueTuple/4.5.0": {}, + "System.Windows.Extensions/5.0.0": { + "dependencies": { + "System.Drawing.Common": "5.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } } } }, @@ -18,6 +272,160 @@ "type": "project", "serviceable": false, "sha512": "" + }, + "AsyncIO/0.1.69": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xyXJLi+wjy6AtIyWXHXJkPS0gItqVT4lg5w++7bA5YEjugYKdrFMGxCo6KUJ1yYwjriLQJ1g35LDljZs3Q90XQ==", + "path": "asyncio/0.1.69", + "hashPath": "asyncio.0.1.69.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W8DPQjkMScOMTtJbPwmPyj9c3zYSFGawDW3jwlBOOsnY+EzZFLgNQ/UMkK35JmkNOVPdCyPr2Tw7Vv9N+KA3ZQ==", + "path": "microsoft.bcl.asyncinterfaces/5.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.ObjectPool/5.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pp9tbGqIhdEXL6Q1yJl+zevAJSq4BsxqhS1GXzBvEsEz9DDNu9GLNzgUy2xyFc4YjB4m4Ff2YEWTnvQvVYdkvQ==", + "path": "microsoft.extensions.objectpool/5.0.10", + "hashPath": "microsoft.extensions.objectpool.5.0.10.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.SystemEvents/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==", + "path": "microsoft.win32.systemevents/5.0.0", + "hashPath": "microsoft.win32.systemevents.5.0.0.nupkg.sha512" + }, + "NaCl.Net/0.1.13": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AVg1455RQnyTy6tiessudruZHvbl70QWRPyx3og2I1Fei17LDNc7Z3DRgqN2+PsySBui/1EDP4A7adhQXydi6g==", + "path": "nacl.net/0.1.13", + "hashPath": "nacl.net.0.1.13.nupkg.sha512" + }, + "NetMQ/4.0.1.13": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OhjdNuwD2pGMzMYqzc5kBIDMt6DGw4dRWHxifWmrjWPXCpaeXy1A3MQAoKXJ88Z5UmWHMmF60AJ/FRWcutXxJg==", + "path": "netmq/4.0.1.13", + "hashPath": "netmq.4.0.1.13.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "path": "newtonsoft.json/13.0.3", + "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" + }, + "System.Drawing.Common/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SztFwAnpfKC8+sEKXAFxCBWhKQaEd97EiOL7oZJZP56zbqnLpmxACWA8aGseaUExciuEAUuR9dY8f7HkTRAdnw==", + "path": "system.drawing.common/5.0.0", + "hashPath": "system.drawing.common.5.0.0.nupkg.sha512" + }, + "System.Formats.Asn1/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==", + "path": "system.formats.asn1/5.0.0", + "hashPath": "system.formats.asn1.5.0.0.nupkg.sha512" + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "path": "system.numerics.vectors/4.5.0", + "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" + }, + "System.Private.ServiceModel/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-d3RjkrtpjUQ63PzFmm/SZ4aOXeJNP+8YW5QeP0lCJy8iX4xlHdlNLWTF9sRn9SmrFTK757kQXT9Op/R4l858uw==", + "path": "system.private.servicemodel/4.9.0", + "hashPath": "system.private.servicemodel.4.9.0.nupkg.sha512" + }, + "System.Reflection.DispatchProxy/4.7.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-C1sMLwIG6ILQ2bmOT4gh62V6oJlyF4BlHcVMrOoor49p0Ji2tA8QAoqyMcIhAdH6OHKJ8m7BU+r4LK2CUEOKqw==", + "path": "system.reflection.dispatchproxy/4.7.1", + "hashPath": "system.reflection.dispatchproxy.4.7.1.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.Cryptography.Cng/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==", + "path": "system.security.cryptography.cng/5.0.0", + "hashPath": "system.security.cryptography.cng.5.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Pkcs/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9TPLGjBCGKmNvG8pjwPeuYy0SMVmGZRwlTZvyPHDbYv/DRkoeumJdfumaaDNQzVGMEmbWtg07zUpSW9q70IlDQ==", + "path": "system.security.cryptography.pkcs/5.0.0", + "hashPath": "system.security.cryptography.pkcs.5.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Xml/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MYmkHtCW+paFmPGFDktnLdOeH3zUrNchbZNki87E1ejNSMm9enSRbJokmvFrsWUrDE4bRE1lVeAle01+t6SGhA==", + "path": "system.security.cryptography.xml/5.0.0", + "hashPath": "system.security.cryptography.xml.5.0.0.nupkg.sha512" + }, + "System.Security.Permissions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uE8juAhEkp7KDBCdjDIE3H9R1HJuEHqeqX8nLX9gmYKWwsqk3T5qZlPx8qle5DPKimC/Fy3AFTdV7HamgCh9qQ==", + "path": "system.security.permissions/5.0.0", + "hashPath": "system.security.permissions.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" + }, + "System.ServiceModel.Primitives/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LTFPVdS8Nf76xg/wRZkDa+2Q+GnjTOmwkTlwuoetwX37mAfYnGkf7p8ydhpDwVmomNljpUOhUUGxfjQyd5YcOg==", + "path": "system.servicemodel.primitives/4.9.0", + "hashPath": "system.servicemodel.primitives.4.9.0.nupkg.sha512" + }, + "System.ValueTuple/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==", + "path": "system.valuetuple/4.5.0", + "hashPath": "system.valuetuple.4.5.0.nupkg.sha512" + }, + "System.Windows.Extensions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c1ho9WU9ZxMZawML+ssPKZfdnrg/OjR3pe0m9v8230z3acqphwvPJqzAkH54xRYm5ntZHGG1EPP3sux9H3qSPg==", + "path": "system.windows.extensions/5.0.0", + "hashPath": "system.windows.extensions.5.0.0.nupkg.sha512" } } } \ No newline at end of file diff --git a/GameServer/bin/Debug/net6.0/GameServer.dll b/GameServer/bin/Debug/net6.0/GameServer.dll index 0c344bb..2067015 100644 Binary files a/GameServer/bin/Debug/net6.0/GameServer.dll and b/GameServer/bin/Debug/net6.0/GameServer.dll differ diff --git a/GameServer/bin/Debug/net6.0/GameServer.exe b/GameServer/bin/Debug/net6.0/GameServer.exe index 754afd1..ed362bc 100644 Binary files a/GameServer/bin/Debug/net6.0/GameServer.exe and b/GameServer/bin/Debug/net6.0/GameServer.exe differ diff --git a/GameServer/bin/Debug/net6.0/GameServer.pdb b/GameServer/bin/Debug/net6.0/GameServer.pdb index df47eca..174a61f 100644 Binary files a/GameServer/bin/Debug/net6.0/GameServer.pdb and b/GameServer/bin/Debug/net6.0/GameServer.pdb differ diff --git a/GameServer/bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll b/GameServer/bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll new file mode 100644 index 0000000..be25bdb Binary files /dev/null and b/GameServer/bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/GameServer/bin/Debug/net6.0/Microsoft.Extensions.ObjectPool.dll b/GameServer/bin/Debug/net6.0/Microsoft.Extensions.ObjectPool.dll new file mode 100644 index 0000000..730dead Binary files /dev/null and b/GameServer/bin/Debug/net6.0/Microsoft.Extensions.ObjectPool.dll differ diff --git a/GameServer/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll b/GameServer/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..d62f333 Binary files /dev/null and b/GameServer/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/GameServer/bin/Debug/net6.0/NaCl.dll b/GameServer/bin/Debug/net6.0/NaCl.dll new file mode 100644 index 0000000..d3c6cb9 Binary files /dev/null and b/GameServer/bin/Debug/net6.0/NaCl.dll differ diff --git a/GameServer/bin/Debug/net6.0/NetMQ.dll b/GameServer/bin/Debug/net6.0/NetMQ.dll new file mode 100644 index 0000000..c76392c Binary files /dev/null and b/GameServer/bin/Debug/net6.0/NetMQ.dll differ diff --git a/GameServer/bin/Debug/net6.0/Newtonsoft.Json.dll b/GameServer/bin/Debug/net6.0/Newtonsoft.Json.dll new file mode 100644 index 0000000..d035c38 Binary files /dev/null and b/GameServer/bin/Debug/net6.0/Newtonsoft.Json.dll differ diff --git a/GameServer/bin/Debug/net6.0/System.Drawing.Common.dll b/GameServer/bin/Debug/net6.0/System.Drawing.Common.dll new file mode 100644 index 0000000..2ca2eb5 Binary files /dev/null and b/GameServer/bin/Debug/net6.0/System.Drawing.Common.dll differ diff --git a/GameServer/bin/Debug/net6.0/System.Private.ServiceModel.dll b/GameServer/bin/Debug/net6.0/System.Private.ServiceModel.dll new file mode 100644 index 0000000..82e7a91 Binary files /dev/null and b/GameServer/bin/Debug/net6.0/System.Private.ServiceModel.dll differ diff --git a/GameServer/bin/Debug/net6.0/System.Security.Cryptography.Pkcs.dll b/GameServer/bin/Debug/net6.0/System.Security.Cryptography.Pkcs.dll new file mode 100644 index 0000000..661acf6 Binary files /dev/null and b/GameServer/bin/Debug/net6.0/System.Security.Cryptography.Pkcs.dll differ diff --git a/GameServer/bin/Debug/net6.0/System.Security.Cryptography.Xml.dll b/GameServer/bin/Debug/net6.0/System.Security.Cryptography.Xml.dll new file mode 100644 index 0000000..a78daa4 Binary files /dev/null and b/GameServer/bin/Debug/net6.0/System.Security.Cryptography.Xml.dll differ diff --git a/GameServer/bin/Debug/net6.0/System.Security.Permissions.dll b/GameServer/bin/Debug/net6.0/System.Security.Permissions.dll new file mode 100644 index 0000000..b380d08 Binary files /dev/null and b/GameServer/bin/Debug/net6.0/System.Security.Permissions.dll differ diff --git a/GameServer/bin/Debug/net6.0/System.ServiceModel.Primitives.dll b/GameServer/bin/Debug/net6.0/System.ServiceModel.Primitives.dll new file mode 100644 index 0000000..8c32245 Binary files /dev/null and b/GameServer/bin/Debug/net6.0/System.ServiceModel.Primitives.dll differ diff --git a/GameServer/bin/Debug/net6.0/System.ServiceModel.dll b/GameServer/bin/Debug/net6.0/System.ServiceModel.dll new file mode 100644 index 0000000..e7849b5 Binary files /dev/null and b/GameServer/bin/Debug/net6.0/System.ServiceModel.dll differ diff --git a/GameServer/bin/Debug/net6.0/System.Windows.Extensions.dll b/GameServer/bin/Debug/net6.0/System.Windows.Extensions.dll new file mode 100644 index 0000000..316eb46 Binary files /dev/null and b/GameServer/bin/Debug/net6.0/System.Windows.Extensions.dll differ diff --git a/GameServer/bin/Debug/net6.0/cs/System.Private.ServiceModel.resources.dll b/GameServer/bin/Debug/net6.0/cs/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..2cedcf5 Binary files /dev/null and b/GameServer/bin/Debug/net6.0/cs/System.Private.ServiceModel.resources.dll differ diff --git a/GameServer/bin/Debug/net6.0/de/System.Private.ServiceModel.resources.dll b/GameServer/bin/Debug/net6.0/de/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..3dc63b8 Binary files /dev/null and b/GameServer/bin/Debug/net6.0/de/System.Private.ServiceModel.resources.dll differ diff --git a/GameServer/bin/Debug/net6.0/es/System.Private.ServiceModel.resources.dll b/GameServer/bin/Debug/net6.0/es/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..65078e9 Binary files /dev/null and b/GameServer/bin/Debug/net6.0/es/System.Private.ServiceModel.resources.dll differ diff --git a/GameServer/bin/Debug/net6.0/fr/System.Private.ServiceModel.resources.dll b/GameServer/bin/Debug/net6.0/fr/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..a2ad076 Binary files /dev/null and b/GameServer/bin/Debug/net6.0/fr/System.Private.ServiceModel.resources.dll differ diff --git a/GameServer/bin/Debug/net6.0/it/System.Private.ServiceModel.resources.dll b/GameServer/bin/Debug/net6.0/it/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..7bb0d14 Binary files /dev/null and b/GameServer/bin/Debug/net6.0/it/System.Private.ServiceModel.resources.dll differ diff --git a/GameServer/bin/Debug/net6.0/ja/System.Private.ServiceModel.resources.dll b/GameServer/bin/Debug/net6.0/ja/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..c92e54a Binary files /dev/null and b/GameServer/bin/Debug/net6.0/ja/System.Private.ServiceModel.resources.dll differ diff --git a/GameServer/bin/Debug/net6.0/ko/System.Private.ServiceModel.resources.dll b/GameServer/bin/Debug/net6.0/ko/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..5f09fb1 Binary files /dev/null and b/GameServer/bin/Debug/net6.0/ko/System.Private.ServiceModel.resources.dll differ diff --git a/GameServer/bin/Debug/net6.0/pl/System.Private.ServiceModel.resources.dll b/GameServer/bin/Debug/net6.0/pl/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..bcdbbbb Binary files /dev/null and b/GameServer/bin/Debug/net6.0/pl/System.Private.ServiceModel.resources.dll differ diff --git a/GameServer/bin/Debug/net6.0/pt-BR/System.Private.ServiceModel.resources.dll b/GameServer/bin/Debug/net6.0/pt-BR/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..6138c5d Binary files /dev/null and b/GameServer/bin/Debug/net6.0/pt-BR/System.Private.ServiceModel.resources.dll differ diff --git a/GameServer/bin/Debug/net6.0/ru/System.Private.ServiceModel.resources.dll b/GameServer/bin/Debug/net6.0/ru/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..11f804c Binary files /dev/null and b/GameServer/bin/Debug/net6.0/ru/System.Private.ServiceModel.resources.dll differ diff --git a/GameServer/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll b/GameServer/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll new file mode 100644 index 0000000..aad03ed Binary files /dev/null and b/GameServer/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll differ diff --git a/GameServer/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll b/GameServer/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..b5aa0c4 Binary files /dev/null and b/GameServer/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/GameServer/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll b/GameServer/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll new file mode 100644 index 0000000..87fe0ae Binary files /dev/null and b/GameServer/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll differ diff --git a/GameServer/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll b/GameServer/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll new file mode 100644 index 0000000..252b80c Binary files /dev/null and b/GameServer/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll differ diff --git a/GameServer/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll b/GameServer/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll new file mode 100644 index 0000000..ab82e83 Binary files /dev/null and b/GameServer/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll differ diff --git a/GameServer/bin/Debug/net6.0/tr/System.Private.ServiceModel.resources.dll b/GameServer/bin/Debug/net6.0/tr/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..4a0bd6f Binary files /dev/null and b/GameServer/bin/Debug/net6.0/tr/System.Private.ServiceModel.resources.dll differ diff --git a/GameServer/bin/Debug/net6.0/zh-Hans/System.Private.ServiceModel.resources.dll b/GameServer/bin/Debug/net6.0/zh-Hans/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..8e8fe2e Binary files /dev/null and b/GameServer/bin/Debug/net6.0/zh-Hans/System.Private.ServiceModel.resources.dll differ diff --git a/GameServer/bin/Debug/net6.0/zh-Hant/System.Private.ServiceModel.resources.dll b/GameServer/bin/Debug/net6.0/zh-Hant/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..2001bc8 Binary files /dev/null and b/GameServer/bin/Debug/net6.0/zh-Hant/System.Private.ServiceModel.resources.dll differ diff --git a/GameServer/obj/Debug/net6.0/GameServer.AssemblyInfo.cs b/GameServer/obj/Debug/net6.0/GameServer.AssemblyInfo.cs index 688557e..e473275 100644 --- a/GameServer/obj/Debug/net6.0/GameServer.AssemblyInfo.cs +++ b/GameServer/obj/Debug/net6.0/GameServer.AssemblyInfo.cs @@ -14,7 +14,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("GameServer")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+17025c92b74f1e9f6f68577cca012e8bce6c6f30")] [assembly: System.Reflection.AssemblyProductAttribute("GameServer")] [assembly: System.Reflection.AssemblyTitleAttribute("GameServer")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/GameServer/obj/Debug/net6.0/GameServer.AssemblyInfoInputs.cache b/GameServer/obj/Debug/net6.0/GameServer.AssemblyInfoInputs.cache index a3d7b77..e1cc917 100644 --- a/GameServer/obj/Debug/net6.0/GameServer.AssemblyInfoInputs.cache +++ b/GameServer/obj/Debug/net6.0/GameServer.AssemblyInfoInputs.cache @@ -1 +1 @@ -44d4d4a93eb4a5fc9bfbe81395c78f181b3d5a87 +d2f9503a444e907a813f2f83f332c10053cdfc1191631b12a66cb7cfb06243dd diff --git a/GameServer/obj/Debug/net6.0/GameServer.GeneratedMSBuildEditorConfig.editorconfig b/GameServer/obj/Debug/net6.0/GameServer.GeneratedMSBuildEditorConfig.editorconfig index ed16cde..0b9d645 100644 --- a/GameServer/obj/Debug/net6.0/GameServer.GeneratedMSBuildEditorConfig.editorconfig +++ b/GameServer/obj/Debug/net6.0/GameServer.GeneratedMSBuildEditorConfig.editorconfig @@ -5,6 +5,9 @@ build_property.UsingMicrosoftNETSdkWeb = build_property.ProjectTypeGuids = build_property.InvariantGlobalization = build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = GameServer -build_property.ProjectDir = E:\UnityProjects\LGZN\Unity2019.4.9\Net_ServerProjects\GameServer\GameServer\ +build_property.ProjectDir = D:\chenxiangxue\DotnetProject\WRJServer\GameServer\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/GameServer/obj/Debug/net6.0/GameServer.assets.cache b/GameServer/obj/Debug/net6.0/GameServer.assets.cache index 93ce83a..eea873c 100644 Binary files a/GameServer/obj/Debug/net6.0/GameServer.assets.cache and b/GameServer/obj/Debug/net6.0/GameServer.assets.cache differ diff --git a/GameServer/obj/Debug/net6.0/GameServer.csproj.AssemblyReference.cache b/GameServer/obj/Debug/net6.0/GameServer.csproj.AssemblyReference.cache index 7eab194..fa8de98 100644 Binary files a/GameServer/obj/Debug/net6.0/GameServer.csproj.AssemblyReference.cache and b/GameServer/obj/Debug/net6.0/GameServer.csproj.AssemblyReference.cache differ diff --git a/GameServer/obj/Debug/net6.0/GameServer.csproj.CoreCompileInputs.cache b/GameServer/obj/Debug/net6.0/GameServer.csproj.CoreCompileInputs.cache index 7bb91b5..9bc3225 100644 --- a/GameServer/obj/Debug/net6.0/GameServer.csproj.CoreCompileInputs.cache +++ b/GameServer/obj/Debug/net6.0/GameServer.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -63a566d08a7206798c242db0ecedff7a3abff278 +a982d1a6dbc820a07ef5779dbf8dd5d675b3da243464414e8952c3496e8e26e4 diff --git a/GameServer/obj/Debug/net6.0/GameServer.csproj.FileListAbsolute.txt b/GameServer/obj/Debug/net6.0/GameServer.csproj.FileListAbsolute.txt index 12106ca..ebce783 100644 --- a/GameServer/obj/Debug/net6.0/GameServer.csproj.FileListAbsolute.txt +++ b/GameServer/obj/Debug/net6.0/GameServer.csproj.FileListAbsolute.txt @@ -42,3 +42,52 @@ E:\UnityProjects\LGZN\Unity2019.4.9\Net_ServerProjects\GameServer\GameServer\obj E:\UnityProjects\LGZN\Unity2019.4.9\Net_ServerProjects\GameServer\GameServer\obj\Debug\net6.0\ref\GameServer.dll E:\UnityProjects\LGZN\Unity2019.4.9\Net_ServerProjects\GameServer\GameServer\obj\Debug\net6.0\GameServer.pdb E:\UnityProjects\LGZN\Unity2019.4.9\Net_ServerProjects\GameServer\GameServer\obj\Debug\net6.0\GameServer.genruntimeconfig.cache +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\GameServer.exe +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\GameServer.deps.json +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\GameServer.runtimeconfig.json +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\GameServer.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\GameServer.pdb +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\obj\Debug\net6.0\GameServer.GeneratedMSBuildEditorConfig.editorconfig +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\obj\Debug\net6.0\GameServer.AssemblyInfoInputs.cache +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\obj\Debug\net6.0\GameServer.AssemblyInfo.cs +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\obj\Debug\net6.0\GameServer.csproj.CoreCompileInputs.cache +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\obj\Debug\net6.0\GameServer.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\obj\Debug\net6.0\refint\GameServer.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\obj\Debug\net6.0\GameServer.pdb +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\obj\Debug\net6.0\GameServer.genruntimeconfig.cache +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\obj\Debug\net6.0\ref\GameServer.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\AsyncIO.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\Microsoft.Bcl.AsyncInterfaces.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\Microsoft.Extensions.ObjectPool.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\Microsoft.Win32.SystemEvents.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\NaCl.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\NetMQ.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\Newtonsoft.Json.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\System.Drawing.Common.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\System.Private.ServiceModel.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\System.Security.Cryptography.Pkcs.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\System.Security.Cryptography.Xml.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\System.Security.Permissions.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\System.ServiceModel.Primitives.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\System.ServiceModel.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\System.Windows.Extensions.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\cs\System.Private.ServiceModel.resources.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\de\System.Private.ServiceModel.resources.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\es\System.Private.ServiceModel.resources.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\fr\System.Private.ServiceModel.resources.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\it\System.Private.ServiceModel.resources.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\ja\System.Private.ServiceModel.resources.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\ko\System.Private.ServiceModel.resources.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\pl\System.Private.ServiceModel.resources.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\pt-BR\System.Private.ServiceModel.resources.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\ru\System.Private.ServiceModel.resources.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\tr\System.Private.ServiceModel.resources.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\zh-Hans\System.Private.ServiceModel.resources.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\zh-Hant\System.Private.ServiceModel.resources.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\Microsoft.Win32.SystemEvents.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp3.0\System.Drawing.Common.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\System.Drawing.Common.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\System.Security.Cryptography.Pkcs.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\System.Windows.Extensions.dll +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\obj\Debug\net6.0\GameServer.csproj.AssemblyReference.cache +D:\chenxiangxue\DotnetProject\WRJServer\GameServer\obj\Debug\net6.0\GameServer.csproj.Up2Date diff --git a/GameServer/obj/Debug/net6.0/GameServer.csproj.Up2Date b/GameServer/obj/Debug/net6.0/GameServer.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/GameServer/obj/Debug/net6.0/GameServer.dll b/GameServer/obj/Debug/net6.0/GameServer.dll index 0c344bb..2067015 100644 Binary files a/GameServer/obj/Debug/net6.0/GameServer.dll and b/GameServer/obj/Debug/net6.0/GameServer.dll differ diff --git a/GameServer/obj/Debug/net6.0/GameServer.genruntimeconfig.cache b/GameServer/obj/Debug/net6.0/GameServer.genruntimeconfig.cache index b3988e7..d36c9eb 100644 --- a/GameServer/obj/Debug/net6.0/GameServer.genruntimeconfig.cache +++ b/GameServer/obj/Debug/net6.0/GameServer.genruntimeconfig.cache @@ -1 +1 @@ -ba8724e2c19024b0fcbcf48f4f56a47d8c47765e +1d8500c798932290e21a9ae4c01bd35489377615e7b887243495d4f73de6420b diff --git a/GameServer/obj/Debug/net6.0/GameServer.pdb b/GameServer/obj/Debug/net6.0/GameServer.pdb index df47eca..174a61f 100644 Binary files a/GameServer/obj/Debug/net6.0/GameServer.pdb and b/GameServer/obj/Debug/net6.0/GameServer.pdb differ diff --git a/GameServer/obj/Debug/net6.0/_IsIncrementalBuild b/GameServer/obj/Debug/net6.0/_IsIncrementalBuild new file mode 100644 index 0000000..9735daa --- /dev/null +++ b/GameServer/obj/Debug/net6.0/_IsIncrementalBuild @@ -0,0 +1 @@ +obj\Debug\net6.0\\_IsIncrementalBuild diff --git a/GameServer/obj/Debug/net6.0/apphost.exe b/GameServer/obj/Debug/net6.0/apphost.exe index 754afd1..ed362bc 100644 Binary files a/GameServer/obj/Debug/net6.0/apphost.exe and b/GameServer/obj/Debug/net6.0/apphost.exe differ diff --git a/GameServer/obj/Debug/net6.0/ref/GameServer.dll b/GameServer/obj/Debug/net6.0/ref/GameServer.dll index cdcb4b0..99691a5 100644 Binary files a/GameServer/obj/Debug/net6.0/ref/GameServer.dll and b/GameServer/obj/Debug/net6.0/ref/GameServer.dll differ diff --git a/GameServer/obj/Debug/net6.0/refint/GameServer.dll b/GameServer/obj/Debug/net6.0/refint/GameServer.dll index 962034b..99691a5 100644 Binary files a/GameServer/obj/Debug/net6.0/refint/GameServer.dll and b/GameServer/obj/Debug/net6.0/refint/GameServer.dll differ diff --git a/GameServer/obj/GameServer.csproj.nuget.dgspec.json b/GameServer/obj/GameServer.csproj.nuget.dgspec.json index f562a34..cc9f792 100644 --- a/GameServer/obj/GameServer.csproj.nuget.dgspec.json +++ b/GameServer/obj/GameServer.csproj.nuget.dgspec.json @@ -1,23 +1,23 @@ { "format": 1, "restore": { - "E:\\UnityProjects\\LGZN\\Unity2019.4.9\\Net_ServerProjects\\GameServer\\GameServer\\GameServer.csproj": {} + "D:\\chenxiangxue\\DotnetProject\\WRJServer\\GameServer\\GameServer.csproj": {} }, "projects": { - "E:\\UnityProjects\\LGZN\\Unity2019.4.9\\Net_ServerProjects\\GameServer\\GameServer\\GameServer.csproj": { + "D:\\chenxiangxue\\DotnetProject\\WRJServer\\GameServer\\GameServer.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "E:\\UnityProjects\\LGZN\\Unity2019.4.9\\Net_ServerProjects\\GameServer\\GameServer\\GameServer.csproj", + "projectUniqueName": "D:\\chenxiangxue\\DotnetProject\\WRJServer\\GameServer\\GameServer.csproj", "projectName": "GameServer", - "projectPath": "E:\\UnityProjects\\LGZN\\Unity2019.4.9\\Net_ServerProjects\\GameServer\\GameServer\\GameServer.csproj", - "packagesPath": "C:\\Users\\Adam\\.nuget\\packages\\", - "outputPath": "E:\\UnityProjects\\LGZN\\Unity2019.4.9\\Net_ServerProjects\\GameServer\\GameServer\\obj\\", + "projectPath": "D:\\chenxiangxue\\DotnetProject\\WRJServer\\GameServer\\GameServer.csproj", + "packagesPath": "C:\\Users\\Xiayun\\.nuget\\packages\\", + "outputPath": "D:\\chenxiangxue\\DotnetProject\\WRJServer\\GameServer\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" ], "configFilePaths": [ - "C:\\Users\\Adam\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Users\\Xiayun\\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" ], @@ -26,6 +26,7 @@ ], "sources": { "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -38,18 +39,34 @@ "warnAsError": [ "NU1605" ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" } }, "frameworks": { "net6.0": { "targetAlias": "net6.0", + "dependencies": { + "NetMQ": { + "target": "Package", + "version": "[4.0.1.13, )" + }, + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.3, )" + } + }, "imports": [ "net461", "net462", "net47", "net471", "net472", - "net48" + "net48", + "net481" ], "assetTargetFallback": true, "warn": true, @@ -58,7 +75,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.200\\RuntimeIdentifierGraph.json" } } } diff --git a/GameServer/obj/GameServer.csproj.nuget.g.props b/GameServer/obj/GameServer.csproj.nuget.g.props index f41941c..5aaa25c 100644 --- a/GameServer/obj/GameServer.csproj.nuget.g.props +++ b/GameServer/obj/GameServer.csproj.nuget.g.props @@ -5,12 +5,12 @@ NuGet $(MSBuildThisFileDirectory)project.assets.json $(UserProfile)\.nuget\packages\ - C:\Users\Adam\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + C:\Users\Xiayun\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages PackageReference - 6.0.1 + 6.9.1 - + \ No newline at end of file diff --git a/GameServer/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/GameServer/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..ed92695 --- /dev/null +++ b/GameServer/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")] diff --git a/GameServer/obj/Release/net6.0/GameServer.AssemblyInfo.cs b/GameServer/obj/Release/net6.0/GameServer.AssemblyInfo.cs new file mode 100644 index 0000000..efc22d9 --- /dev/null +++ b/GameServer/obj/Release/net6.0/GameServer.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("GameServer")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("GameServer")] +[assembly: System.Reflection.AssemblyTitleAttribute("GameServer")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/GameServer/obj/Release/net6.0/GameServer.AssemblyInfoInputs.cache b/GameServer/obj/Release/net6.0/GameServer.AssemblyInfoInputs.cache new file mode 100644 index 0000000..e5f32ff --- /dev/null +++ b/GameServer/obj/Release/net6.0/GameServer.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +7f4f32c7ae5826f364d73e704b4d13a819f7f1af diff --git a/GameServer/obj/Release/net6.0/GameServer.GeneratedMSBuildEditorConfig.editorconfig b/GameServer/obj/Release/net6.0/GameServer.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..22ae998 --- /dev/null +++ b/GameServer/obj/Release/net6.0/GameServer.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.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 = GameServer +build_property.ProjectDir = D:\chenxiangxue\DotnetProject\WRJServer\GameServer\ diff --git a/GameServer/obj/Release/net6.0/GameServer.GlobalUsings.g.cs b/GameServer/obj/Release/net6.0/GameServer.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/GameServer/obj/Release/net6.0/GameServer.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +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/GameServer/obj/Release/net6.0/GameServer.assets.cache b/GameServer/obj/Release/net6.0/GameServer.assets.cache new file mode 100644 index 0000000..2e8da72 Binary files /dev/null and b/GameServer/obj/Release/net6.0/GameServer.assets.cache differ diff --git a/GameServer/obj/Release/net6.0/GameServer.csproj.AssemblyReference.cache b/GameServer/obj/Release/net6.0/GameServer.csproj.AssemblyReference.cache new file mode 100644 index 0000000..0a4b2f1 Binary files /dev/null and b/GameServer/obj/Release/net6.0/GameServer.csproj.AssemblyReference.cache differ diff --git a/GameServer/obj/project.assets.json b/GameServer/obj/project.assets.json index e5fcd92..5eb4cfc 100644 --- a/GameServer/obj/project.assets.json +++ b/GameServer/obj/project.assets.json @@ -1,30 +1,1229 @@ { "version": 3, "targets": { - "net6.0": {} + "net6.0": { + "AsyncIO/0.1.69": { + "type": "package", + "compile": { + "lib/netstandard2.0/AsyncIO.dll": { + "related": ".pdb" + } + }, + "runtime": { + "lib/netstandard2.0/AsyncIO.dll": { + "related": ".pdb" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.ObjectPool/5.0.10": { + "type": "package", + "compile": { + "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": { + "related": ".xml" + } + } + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.SystemEvents/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "NaCl.Net/0.1.13": { + "type": "package", + "compile": { + "lib/netstandard2.1/NaCl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/NaCl.dll": { + "related": ".xml" + } + } + }, + "NetMQ/4.0.1.13": { + "type": "package", + "dependencies": { + "AsyncIO": "0.1.69", + "NaCl.Net": "0.1.13", + "System.ServiceModel.Primitives": "4.9.0", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/netstandard2.1/NetMQ.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/NetMQ.dll": { + "related": ".xml" + } + } + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "compile": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "System.Drawing.Common/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "5.0.0" + }, + "compile": { + "ref/netcoreapp3.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Formats.Asn1/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Formats.Asn1.dll": { + "related": ".xml" + } + } + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Private.ServiceModel/4.9.0": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "5.0.0", + "Microsoft.Extensions.ObjectPool": "5.0.10", + "System.Numerics.Vectors": "4.5.0", + "System.Reflection.DispatchProxy": "4.7.1", + "System.Security.Cryptography.Xml": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Private.ServiceModel.dll": { + "related": ".pdb" + } + }, + "resource": { + "lib/netstandard2.0/cs/System.Private.ServiceModel.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/System.Private.ServiceModel.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/System.Private.ServiceModel.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/System.Private.ServiceModel.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/System.Private.ServiceModel.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/System.Private.ServiceModel.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/System.Private.ServiceModel.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/System.Private.ServiceModel.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/System.Private.ServiceModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/System.Private.ServiceModel.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/System.Private.ServiceModel.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/System.Private.ServiceModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/System.Private.ServiceModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Reflection.DispatchProxy/4.7.1": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Reflection.DispatchProxy.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.0/System.Reflection.DispatchProxy.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.Cryptography.Cng/5.0.0": { + "type": "package", + "dependencies": { + "System.Formats.Asn1": "5.0.0" + }, + "compile": { + "ref/netcoreapp3.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Pkcs/5.0.0": { + "type": "package", + "dependencies": { + "System.Formats.Asn1": "5.0.0", + "System.Security.Cryptography.Cng": "5.0.0" + }, + "compile": { + "ref/netcoreapp3.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Xml/5.0.0": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.Pkcs": "5.0.0", + "System.Security.Permissions": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.Cryptography.Xml.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.Xml.dll": { + "related": ".xml" + } + } + }, + "System.Security.Permissions/5.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Windows.Extensions": "5.0.0" + }, + "compile": { + "ref/net5.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/System.Security.Permissions.dll": { + "related": ".xml" + } + } + }, + "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" + } + } + }, + "System.ServiceModel.Primitives/4.9.0": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.9.0" + }, + "compile": { + "ref/net6.0/System.ServiceModel.Primitives.dll": {}, + "ref/net6.0/System.ServiceModel.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Primitives.dll": { + "related": ".pdb" + }, + "lib/net6.0/System.ServiceModel.dll": { + "related": ".Primitives.pdb" + } + } + }, + "System.ValueTuple/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Windows.Extensions/5.0.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "5.0.0" + }, + "compile": { + "ref/netcoreapp3.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + } + } + }, + "libraries": { + "AsyncIO/0.1.69": { + "sha512": "xyXJLi+wjy6AtIyWXHXJkPS0gItqVT4lg5w++7bA5YEjugYKdrFMGxCo6KUJ1yYwjriLQJ1g35LDljZs3Q90XQ==", + "type": "package", + "path": "asyncio/0.1.69", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "asyncio.0.1.69.nupkg.sha512", + "asyncio.nuspec", + "lib/net40/AsyncIO.dll", + "lib/net40/AsyncIO.pdb", + "lib/netstandard1.3/AsyncIO.dll", + "lib/netstandard1.3/AsyncIO.pdb", + "lib/netstandard2.0/AsyncIO.dll", + "lib/netstandard2.0/AsyncIO.pdb" + ] + }, + "Microsoft.Bcl.AsyncInterfaces/5.0.0": { + "sha512": "W8DPQjkMScOMTtJbPwmPyj9c3zYSFGawDW3jwlBOOsnY+EzZFLgNQ/UMkK35JmkNOVPdCyPr2Tw7Vv9N+KA3ZQ==", + "type": "package", + "path": "microsoft.bcl.asyncinterfaces/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", + "microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512", + "microsoft.bcl.asyncinterfaces.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.ObjectPool/5.0.10": { + "sha512": "pp9tbGqIhdEXL6Q1yJl+zevAJSq4BsxqhS1GXzBvEsEz9DDNu9GLNzgUy2xyFc4YjB4m4Ff2YEWTnvQvVYdkvQ==", + "type": "package", + "path": "microsoft.extensions.objectpool/5.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.ObjectPool.dll", + "lib/net461/Microsoft.Extensions.ObjectPool.xml", + "lib/net5.0/Microsoft.Extensions.ObjectPool.dll", + "lib/net5.0/Microsoft.Extensions.ObjectPool.xml", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml", + "microsoft.extensions.objectpool.5.0.10.nupkg.sha512", + "microsoft.extensions.objectpool.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.SystemEvents/5.0.0": { + "sha512": "Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==", + "type": "package", + "path": "microsoft.win32.systemevents/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.5.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "ref/net461/Microsoft.Win32.SystemEvents.dll", + "ref/net461/Microsoft.Win32.SystemEvents.xml", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "NaCl.Net/0.1.13": { + "sha512": "AVg1455RQnyTy6tiessudruZHvbl70QWRPyx3og2I1Fei17LDNc7Z3DRgqN2+PsySBui/1EDP4A7adhQXydi6g==", + "type": "package", + "path": "nacl.net/0.1.13", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/NaCl.dll", + "lib/net45/NaCl.xml", + "lib/net472/NaCl.dll", + "lib/net472/NaCl.xml", + "lib/netstandard1.3/NaCl.dll", + "lib/netstandard1.3/NaCl.xml", + "lib/netstandard2.0/NaCl.dll", + "lib/netstandard2.0/NaCl.xml", + "lib/netstandard2.1/NaCl.dll", + "lib/netstandard2.1/NaCl.xml", + "nacl.net.0.1.13.nupkg.sha512", + "nacl.net.nuspec" + ] + }, + "NetMQ/4.0.1.13": { + "sha512": "OhjdNuwD2pGMzMYqzc5kBIDMt6DGw4dRWHxifWmrjWPXCpaeXy1A3MQAoKXJ88Z5UmWHMmF60AJ/FRWcutXxJg==", + "type": "package", + "path": "netmq/4.0.1.13", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "NetMQLogoSquare-256px.png", + "lib/net45/NetMQ.dll", + "lib/net45/NetMQ.xml", + "lib/net47/NetMQ.dll", + "lib/net47/NetMQ.xml", + "lib/netstandard2.0/NetMQ.dll", + "lib/netstandard2.0/NetMQ.xml", + "lib/netstandard2.1/NetMQ.dll", + "lib/netstandard2.1/NetMQ.xml", + "netmq.4.0.1.13.nupkg.sha512", + "netmq.nuspec" + ] + }, + "Newtonsoft.Json/13.0.3": { + "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "type": "package", + "path": "newtonsoft.json/13.0.3", + "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.3.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "System.Drawing.Common/5.0.0": { + "sha512": "SztFwAnpfKC8+sEKXAFxCBWhKQaEd97EiOL7oZJZP56zbqnLpmxACWA8aGseaUExciuEAUuR9dY8f7HkTRAdnw==", + "type": "package", + "path": "system.drawing.common/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/netcoreapp3.0/System.Drawing.Common.dll", + "lib/netcoreapp3.0/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.xml", + "ref/netstandard2.0/System.Drawing.Common.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml", + "system.drawing.common.5.0.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Formats.Asn1/5.0.0": { + "sha512": "MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==", + "type": "package", + "path": "system.formats.asn1/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Formats.Asn1.dll", + "lib/net461/System.Formats.Asn1.xml", + "lib/netstandard2.0/System.Formats.Asn1.dll", + "lib/netstandard2.0/System.Formats.Asn1.xml", + "system.formats.asn1.5.0.0.nupkg.sha512", + "system.formats.asn1.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Numerics.Vectors/4.5.0": { + "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "type": "package", + "path": "system.numerics.vectors/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Numerics.Vectors.dll", + "lib/net46/System.Numerics.Vectors.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.Numerics.Vectors.dll", + "lib/netstandard1.0/System.Numerics.Vectors.xml", + "lib/netstandard2.0/System.Numerics.Vectors.dll", + "lib/netstandard2.0/System.Numerics.Vectors.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.Numerics.Vectors.dll", + "ref/net45/System.Numerics.Vectors.xml", + "ref/net46/System.Numerics.Vectors.dll", + "ref/net46/System.Numerics.Vectors.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/System.Numerics.Vectors.dll", + "ref/netstandard1.0/System.Numerics.Vectors.xml", + "ref/netstandard2.0/System.Numerics.Vectors.dll", + "ref/netstandard2.0/System.Numerics.Vectors.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.numerics.vectors.4.5.0.nupkg.sha512", + "system.numerics.vectors.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Private.ServiceModel/4.9.0": { + "sha512": "d3RjkrtpjUQ63PzFmm/SZ4aOXeJNP+8YW5QeP0lCJy8iX4xlHdlNLWTF9sRn9SmrFTK757kQXT9Op/R4l858uw==", + "type": "package", + "path": "system.private.servicemodel/4.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard2.0/System.Private.ServiceModel.dll", + "lib/netstandard2.0/System.Private.ServiceModel.pdb", + "lib/netstandard2.0/cs/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/de/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/es/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/fr/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/it/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/ja/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/ko/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/pl/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/pt-BR/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/ru/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/tr/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/zh-Hans/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/zh-Hant/System.Private.ServiceModel.resources.dll", + "ref/netstandard2.0/_._", + "system.private.servicemodel.4.9.0.nupkg.sha512", + "system.private.servicemodel.nuspec" + ] + }, + "System.Reflection.DispatchProxy/4.7.1": { + "sha512": "C1sMLwIG6ILQ2bmOT4gh62V6oJlyF4BlHcVMrOoor49p0Ji2tA8QAoqyMcIhAdH6OHKJ8m7BU+r4LK2CUEOKqw==", + "type": "package", + "path": "system.reflection.dispatchproxy/4.7.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Reflection.DispatchProxy.dll", + "lib/net461/System.Reflection.DispatchProxy.xml", + "lib/netcoreapp2.0/System.Reflection.DispatchProxy.dll", + "lib/netcoreapp2.0/System.Reflection.DispatchProxy.xml", + "lib/netstandard1.3/System.Reflection.DispatchProxy.dll", + "lib/netstandard2.0/System.Reflection.DispatchProxy.dll", + "lib/netstandard2.0/System.Reflection.DispatchProxy.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Reflection.DispatchProxy.dll", + "ref/net461/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/System.Reflection.DispatchProxy.dll", + "ref/netstandard1.3/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/de/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/es/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/fr/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/it/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/ja/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/ko/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/ru/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.DispatchProxy.xml", + "ref/netstandard2.0/System.Reflection.DispatchProxy.dll", + "ref/netstandard2.0/System.Reflection.DispatchProxy.xml", + "ref/uap10.0.16299/System.Reflection.DispatchProxy.dll", + "ref/uap10.0.16299/System.Reflection.DispatchProxy.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll", + "runtimes/win-aot/lib/uap10.0.16299/System.Reflection.DispatchProxy.dll", + "runtimes/win/lib/uap10.0.16299/System.Reflection.DispatchProxy.dll", + "system.reflection.dispatchproxy.4.7.1.nupkg.sha512", + "system.reflection.dispatchproxy.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.Cryptography.Cng/5.0.0": { + "sha512": "jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==", + "type": "package", + "path": "system.security.cryptography.cng/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.xml", + "lib/net462/System.Security.Cryptography.Cng.dll", + "lib/net462/System.Security.Cryptography.Cng.xml", + "lib/net47/System.Security.Cryptography.Cng.dll", + "lib/net47/System.Security.Cryptography.Cng.xml", + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml", + "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.xml", + "lib/netstandard2.1/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.1/System.Security.Cryptography.Cng.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.xml", + "ref/net462/System.Security.Cryptography.Cng.dll", + "ref/net462/System.Security.Cryptography.Cng.xml", + "ref/net47/System.Security.Cryptography.Cng.dll", + "ref/net47/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp3.0/System.Security.Cryptography.Cng.xml", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", + "ref/netstandard2.1/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.1/System.Security.Cryptography.Cng.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.xml", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.xml", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.cryptography.cng.5.0.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Pkcs/5.0.0": { + "sha512": "9TPLGjBCGKmNvG8pjwPeuYy0SMVmGZRwlTZvyPHDbYv/DRkoeumJdfumaaDNQzVGMEmbWtg07zUpSW9q70IlDQ==", + "type": "package", + "path": "system.security.cryptography.pkcs/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Cryptography.Pkcs.dll", + "lib/net461/System.Security.Cryptography.Pkcs.dll", + "lib/net461/System.Security.Cryptography.Pkcs.xml", + "lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll", + "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll", + "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml", + "lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml", + "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml", + "ref/net46/System.Security.Cryptography.Pkcs.dll", + "ref/net461/System.Security.Cryptography.Pkcs.dll", + "ref/net461/System.Security.Cryptography.Pkcs.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.xml", + "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll", + "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml", + "ref/netstandard1.3/System.Security.Cryptography.Pkcs.dll", + "ref/netstandard2.0/System.Security.Cryptography.Pkcs.dll", + "ref/netstandard2.0/System.Security.Cryptography.Pkcs.xml", + "ref/netstandard2.1/System.Security.Cryptography.Pkcs.dll", + "ref/netstandard2.1/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net46/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml", + "system.security.cryptography.pkcs.5.0.0.nupkg.sha512", + "system.security.cryptography.pkcs.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Xml/5.0.0": { + "sha512": "MYmkHtCW+paFmPGFDktnLdOeH3zUrNchbZNki87E1ejNSMm9enSRbJokmvFrsWUrDE4bRE1lVeAle01+t6SGhA==", + "type": "package", + "path": "system.security.cryptography.xml/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Security.Cryptography.Xml.dll", + "lib/net461/System.Security.Cryptography.Xml.xml", + "lib/netstandard2.0/System.Security.Cryptography.Xml.dll", + "lib/netstandard2.0/System.Security.Cryptography.Xml.xml", + "ref/net461/System.Security.Cryptography.Xml.dll", + "ref/net461/System.Security.Cryptography.Xml.xml", + "ref/netstandard2.0/System.Security.Cryptography.Xml.dll", + "ref/netstandard2.0/System.Security.Cryptography.Xml.xml", + "system.security.cryptography.xml.5.0.0.nupkg.sha512", + "system.security.cryptography.xml.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Permissions/5.0.0": { + "sha512": "uE8juAhEkp7KDBCdjDIE3H9R1HJuEHqeqX8nLX9gmYKWwsqk3T5qZlPx8qle5DPKimC/Fy3AFTdV7HamgCh9qQ==", + "type": "package", + "path": "system.security.permissions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Security.Permissions.dll", + "lib/net461/System.Security.Permissions.xml", + "lib/net5.0/System.Security.Permissions.dll", + "lib/net5.0/System.Security.Permissions.xml", + "lib/netcoreapp3.0/System.Security.Permissions.dll", + "lib/netcoreapp3.0/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "ref/net461/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.xml", + "ref/net5.0/System.Security.Permissions.dll", + "ref/net5.0/System.Security.Permissions.xml", + "ref/netcoreapp3.0/System.Security.Permissions.dll", + "ref/netcoreapp3.0/System.Security.Permissions.xml", + "ref/netstandard2.0/System.Security.Permissions.dll", + "ref/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.5.0.0.nupkg.sha512", + "system.security.permissions.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" + ] + }, + "System.ServiceModel.Primitives/4.9.0": { + "sha512": "LTFPVdS8Nf76xg/wRZkDa+2Q+GnjTOmwkTlwuoetwX37mAfYnGkf7p8ydhpDwVmomNljpUOhUUGxfjQyd5YcOg==", + "type": "package", + "path": "system.servicemodel.primitives/4.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.ServiceModel.Primitives.dll", + "lib/net461/System.ServiceModel.Primitives.dll", + "lib/net461/System.ServiceModel.Primitives.pdb", + "lib/net6.0/System.ServiceModel.Primitives.dll", + "lib/net6.0/System.ServiceModel.Primitives.pdb", + "lib/net6.0/System.ServiceModel.dll", + "lib/netcore50/System.ServiceModel.Primitives.dll", + "lib/netcoreapp2.1/System.ServiceModel.Primitives.dll", + "lib/netcoreapp2.1/System.ServiceModel.Primitives.pdb", + "lib/netcoreapp2.1/System.ServiceModel.dll", + "lib/netstandard1.3/System.ServiceModel.Primitives.dll", + "lib/netstandard2.0/System.ServiceModel.Primitives.dll", + "lib/netstandard2.0/System.ServiceModel.Primitives.pdb", + "lib/netstandard2.0/System.ServiceModel.dll", + "lib/portable-net45+win8+wp8/_._", + "lib/win8/_._", + "lib/wp8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.ServiceModel.Primitives.dll", + "ref/net461/System.ServiceModel.Primitives.dll", + "ref/net6.0/System.ServiceModel.Primitives.dll", + "ref/net6.0/System.ServiceModel.dll", + "ref/netcore50/System.ServiceModel.Primitives.dll", + "ref/netcoreapp2.1/System.ServiceModel.Primitives.dll", + "ref/netcoreapp2.1/System.ServiceModel.dll", + "ref/netstandard1.0/System.ServiceModel.Primitives.dll", + "ref/netstandard1.1/System.ServiceModel.Primitives.dll", + "ref/netstandard1.3/System.ServiceModel.Primitives.dll", + "ref/netstandard2.0/System.ServiceModel.Primitives.dll", + "ref/netstandard2.0/System.ServiceModel.dll", + "ref/portable-net45+win8+wp8/_._", + "ref/win8/_._", + "ref/wp8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.servicemodel.primitives.4.9.0.nupkg.sha512", + "system.servicemodel.primitives.nuspec" + ] + }, + "System.ValueTuple/4.5.0": { + "sha512": "okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==", + "type": "package", + "path": "system.valuetuple/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.ValueTuple.dll", + "lib/net461/System.ValueTuple.xml", + "lib/net47/System.ValueTuple.dll", + "lib/net47/System.ValueTuple.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.ValueTuple.dll", + "lib/netstandard1.0/System.ValueTuple.xml", + "lib/netstandard2.0/_._", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.ValueTuple.dll", + "ref/net47/System.ValueTuple.dll", + "ref/netcoreapp2.0/_._", + "ref/netstandard2.0/_._", + "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.valuetuple.4.5.0.nupkg.sha512", + "system.valuetuple.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Windows.Extensions/5.0.0": { + "sha512": "c1ho9WU9ZxMZawML+ssPKZfdnrg/OjR3pe0m9v8230z3acqphwvPJqzAkH54xRYm5ntZHGG1EPP3sux9H3qSPg==", + "type": "package", + "path": "system.windows.extensions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp3.0/System.Windows.Extensions.dll", + "lib/netcoreapp3.0/System.Windows.Extensions.xml", + "ref/netcoreapp3.0/System.Windows.Extensions.dll", + "ref/netcoreapp3.0/System.Windows.Extensions.xml", + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll", + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml", + "system.windows.extensions.5.0.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + } }, - "libraries": {}, "projectFileDependencyGroups": { - "net6.0": [] + "net6.0": [ + "NetMQ >= 4.0.1.13", + "Newtonsoft.Json >= 13.0.3" + ] }, "packageFolders": { - "C:\\Users\\Adam\\.nuget\\packages\\": {}, + "C:\\Users\\Xiayun\\.nuget\\packages\\": {}, "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} }, "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "E:\\UnityProjects\\LGZN\\Unity2019.4.9\\Net_ServerProjects\\GameServer\\GameServer\\GameServer.csproj", + "projectUniqueName": "D:\\chenxiangxue\\DotnetProject\\WRJServer\\GameServer\\GameServer.csproj", "projectName": "GameServer", - "projectPath": "E:\\UnityProjects\\LGZN\\Unity2019.4.9\\Net_ServerProjects\\GameServer\\GameServer\\GameServer.csproj", - "packagesPath": "C:\\Users\\Adam\\.nuget\\packages\\", - "outputPath": "E:\\UnityProjects\\LGZN\\Unity2019.4.9\\Net_ServerProjects\\GameServer\\GameServer\\obj\\", + "projectPath": "D:\\chenxiangxue\\DotnetProject\\WRJServer\\GameServer\\GameServer.csproj", + "packagesPath": "C:\\Users\\Xiayun\\.nuget\\packages\\", + "outputPath": "D:\\chenxiangxue\\DotnetProject\\WRJServer\\GameServer\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" ], "configFilePaths": [ - "C:\\Users\\Adam\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Users\\Xiayun\\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" ], @@ -33,6 +1232,7 @@ ], "sources": { "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -45,18 +1245,34 @@ "warnAsError": [ "NU1605" ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" } }, "frameworks": { "net6.0": { "targetAlias": "net6.0", + "dependencies": { + "NetMQ": { + "target": "Package", + "version": "[4.0.1.13, )" + }, + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.3, )" + } + }, "imports": [ "net461", "net462", "net47", "net471", "net472", - "net48" + "net48", + "net481" ], "assetTargetFallback": true, "warn": true, @@ -65,7 +1281,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.200\\RuntimeIdentifierGraph.json" } } } diff --git a/GameServer/obj/project.nuget.cache b/GameServer/obj/project.nuget.cache index b922e02..4f66591 100644 --- a/GameServer/obj/project.nuget.cache +++ b/GameServer/obj/project.nuget.cache @@ -1,8 +1,31 @@ { "version": 2, - "dgSpecHash": "TT49gNyPB3lm2ESjvd3RayDRbzkB+dyPZCZY8/rjR8LQG1PPcVPchSzUpuTOX3TZaBBFGF/xjy/Lx1zZTayKGA==", + "dgSpecHash": "yDS3er7B8/ADKZ9MO9ZOYVlMQxm8N1GUodWNGNrQMoY3yIUrwEmDIKalyTCu1N/ycDYucnDy2int1LZTALpMQg==", "success": true, - "projectFilePath": "E:\\UnityProjects\\LGZN\\Unity2019.4.9\\Net_ServerProjects\\GameServer\\GameServer\\GameServer.csproj", - "expectedPackageFiles": [], + "projectFilePath": "D:\\chenxiangxue\\DotnetProject\\WRJServer\\GameServer\\GameServer.csproj", + "expectedPackageFiles": [ + "C:\\Users\\Xiayun\\.nuget\\packages\\asyncio\\0.1.69\\asyncio.0.1.69.nupkg.sha512", + "C:\\Users\\Xiayun\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\5.0.0\\microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512", + "C:\\Users\\Xiayun\\.nuget\\packages\\microsoft.extensions.objectpool\\5.0.10\\microsoft.extensions.objectpool.5.0.10.nupkg.sha512", + "C:\\Users\\Xiayun\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512", + "C:\\Users\\Xiayun\\.nuget\\packages\\microsoft.win32.systemevents\\5.0.0\\microsoft.win32.systemevents.5.0.0.nupkg.sha512", + "C:\\Users\\Xiayun\\.nuget\\packages\\nacl.net\\0.1.13\\nacl.net.0.1.13.nupkg.sha512", + "C:\\Users\\Xiayun\\.nuget\\packages\\netmq\\4.0.1.13\\netmq.4.0.1.13.nupkg.sha512", + "C:\\Users\\Xiayun\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512", + "C:\\Users\\Xiayun\\.nuget\\packages\\system.drawing.common\\5.0.0\\system.drawing.common.5.0.0.nupkg.sha512", + "C:\\Users\\Xiayun\\.nuget\\packages\\system.formats.asn1\\5.0.0\\system.formats.asn1.5.0.0.nupkg.sha512", + "C:\\Users\\Xiayun\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512", + "C:\\Users\\Xiayun\\.nuget\\packages\\system.private.servicemodel\\4.9.0\\system.private.servicemodel.4.9.0.nupkg.sha512", + "C:\\Users\\Xiayun\\.nuget\\packages\\system.reflection.dispatchproxy\\4.7.1\\system.reflection.dispatchproxy.4.7.1.nupkg.sha512", + "C:\\Users\\Xiayun\\.nuget\\packages\\system.security.accesscontrol\\5.0.0\\system.security.accesscontrol.5.0.0.nupkg.sha512", + "C:\\Users\\Xiayun\\.nuget\\packages\\system.security.cryptography.cng\\5.0.0\\system.security.cryptography.cng.5.0.0.nupkg.sha512", + "C:\\Users\\Xiayun\\.nuget\\packages\\system.security.cryptography.pkcs\\5.0.0\\system.security.cryptography.pkcs.5.0.0.nupkg.sha512", + "C:\\Users\\Xiayun\\.nuget\\packages\\system.security.cryptography.xml\\5.0.0\\system.security.cryptography.xml.5.0.0.nupkg.sha512", + "C:\\Users\\Xiayun\\.nuget\\packages\\system.security.permissions\\5.0.0\\system.security.permissions.5.0.0.nupkg.sha512", + "C:\\Users\\Xiayun\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", + "C:\\Users\\Xiayun\\.nuget\\packages\\system.servicemodel.primitives\\4.9.0\\system.servicemodel.primitives.4.9.0.nupkg.sha512", + "C:\\Users\\Xiayun\\.nuget\\packages\\system.valuetuple\\4.5.0\\system.valuetuple.4.5.0.nupkg.sha512", + "C:\\Users\\Xiayun\\.nuget\\packages\\system.windows.extensions\\5.0.0\\system.windows.extensions.5.0.0.nupkg.sha512" + ], "logs": [] } \ No newline at end of file