forked from powerfun/udpservice
修复一个虚拟人物和真实人物冲突的BUG
This commit is contained in:
parent
de0ff1454c
commit
927e3f7a88
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,2 +1,4 @@
|
|||||||
bin/Debug/netcoreapp3.1/logs
|
bin/Debug/netcoreapp3.1/logs
|
||||||
.vs
|
.vs
|
||||||
|
obj
|
||||||
|
bin
|
||||||
|
|||||||
@ -70,7 +70,9 @@ namespace OnlineUserPool
|
|||||||
lock (locker)
|
lock (locker)
|
||||||
{
|
{
|
||||||
receiveMes.Add(msg);
|
receiveMes.Add(msg);
|
||||||
|
#if DEBUG
|
||||||
Console.WriteLine($"本次接收:{ remoteIpEndPoint.Address.ToString() }:{ remoteIpEndPoint.Port }收到消息:{ returnData }");
|
Console.WriteLine($"本次接收:{ remoteIpEndPoint.Address.ToString() }:{ remoteIpEndPoint.Port }收到消息:{ returnData }");
|
||||||
|
#endif
|
||||||
if (!clients.Any(c => c.Equals(remoteIpEndPoint)))
|
if (!clients.Any(c => c.Equals(remoteIpEndPoint)))
|
||||||
{
|
{
|
||||||
clients.Add(new HostModel
|
clients.Add(new HostModel
|
||||||
@ -114,14 +116,17 @@ namespace OnlineUserPool
|
|||||||
//加入虚拟人物消息
|
//加入虚拟人物消息
|
||||||
var virtualData = mapRecordRankingHander.GetVirtualUserData();
|
var virtualData = mapRecordRankingHander.GetVirtualUserData();
|
||||||
Console.WriteLine(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + "-当前在线人数:" + clients.Count + "-当前虚拟人数:" + virtualData.Count);
|
Console.WriteLine(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + "-当前在线人数:" + clients.Count + "-当前虚拟人数:" + virtualData.Count);
|
||||||
|
#if DEBUG
|
||||||
Console.WriteLine($"在线人:{Newtonsoft.Json.JsonConvert.SerializeObject(receiveMes)}\r\n虚拟人:{Newtonsoft.Json.JsonConvert.SerializeObject(virtualData)}");
|
Console.WriteLine($"在线人:{Newtonsoft.Json.JsonConvert.SerializeObject(receiveMes)}\r\n虚拟人:{Newtonsoft.Json.JsonConvert.SerializeObject(virtualData)}");
|
||||||
|
#endif
|
||||||
receiveMes.AddRange(virtualData);
|
receiveMes.AddRange(virtualData);
|
||||||
SendMessage(clients, receiveMes);
|
SendMessage(clients, receiveMes);
|
||||||
//移除下线的客户端
|
//移除下线的客户端
|
||||||
for (int i = 0; i < receiveMes.Count; i++)
|
for (int i = 0; i < receiveMes.Count; i++)
|
||||||
{
|
{
|
||||||
if (receiveMes[i].exit)
|
if (receiveMes[i].exit && !receiveMes[i].IsVirtual)//客户端退出,并且不是虚拟的人物
|
||||||
{
|
{
|
||||||
|
//这个地方有严重的逻辑错误(虚拟的人物不能和真实的人用同一个名字)
|
||||||
var index = clients.FindIndex(n => n.MemberId == receiveMes[i].MemberId);
|
var index = clients.FindIndex(n => n.MemberId == receiveMes[i].MemberId);
|
||||||
if (index > -1)
|
if (index > -1)
|
||||||
{
|
{
|
||||||
@ -133,7 +138,7 @@ namespace OnlineUserPool
|
|||||||
clients.RemoveAll(i => i.Expire);//移除5钟内连接不上的客户端
|
clients.RemoveAll(i => i.Expire);//移除5钟内连接不上的客户端
|
||||||
}
|
}
|
||||||
//更新虚拟人物信息
|
//更新虚拟人物信息
|
||||||
Task.Run(() => { mapRecordRankingHander.RemoveEndAndAddNewVirtualUser(); });
|
mapRecordRankingHander.RemoveEndAndAddNewVirtualUser();
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@ -1,568 +0,0 @@
|
|||||||
{
|
|
||||||
"runtimeTarget": {
|
|
||||||
"name": ".NETCoreApp,Version=v3.1",
|
|
||||||
"signature": ""
|
|
||||||
},
|
|
||||||
"compilationOptions": {},
|
|
||||||
"targets": {
|
|
||||||
".NETCoreApp,Version=v3.1": {
|
|
||||||
"OnlineUserPool/1.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Newtonsoft.Json": "12.0.3",
|
|
||||||
"Serilog": "2.9.0",
|
|
||||||
"Serilog.Sinks.Console": "3.1.1",
|
|
||||||
"Serilog.Sinks.File": "4.1.0",
|
|
||||||
"System.Configuration.ConfigurationManager": "4.7.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"OnlineUserPool.dll": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.NETCore.Platforms/3.1.0": {},
|
|
||||||
"Microsoft.NETCore.Targets/1.1.0": {},
|
|
||||||
"Microsoft.Win32.SystemEvents/4.7.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.NETCore.Platforms": "3.1.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
|
|
||||||
"assemblyVersion": "4.0.2.0",
|
|
||||||
"fileVersion": "4.700.19.56404"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeTargets": {
|
|
||||||
"runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
|
|
||||||
"rid": "win",
|
|
||||||
"assetType": "runtime",
|
|
||||||
"assemblyVersion": "4.0.2.0",
|
|
||||||
"fileVersion": "4.700.19.56404"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Newtonsoft.Json/12.0.3": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/netstandard2.0/Newtonsoft.Json.dll": {
|
|
||||||
"assemblyVersion": "12.0.0.0",
|
|
||||||
"fileVersion": "12.0.3.23909"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtime.native.System/4.3.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.NETCore.Platforms": "3.1.0",
|
|
||||||
"Microsoft.NETCore.Targets": "1.1.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Serilog/2.9.0": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/netstandard2.0/Serilog.dll": {
|
|
||||||
"assemblyVersion": "2.0.0.0",
|
|
||||||
"fileVersion": "2.9.0.0"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Serilog.Sinks.Console/3.1.1": {
|
|
||||||
"dependencies": {
|
|
||||||
"Serilog": "2.9.0",
|
|
||||||
"System.Console": "4.3.0",
|
|
||||||
"System.Runtime.InteropServices": "4.3.0",
|
|
||||||
"System.Runtime.InteropServices.RuntimeInformation": "4.3.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/netcoreapp1.1/Serilog.Sinks.Console.dll": {
|
|
||||||
"assemblyVersion": "3.1.1.0",
|
|
||||||
"fileVersion": "3.1.1.0"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Serilog.Sinks.File/4.1.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Serilog": "2.9.0",
|
|
||||||
"System.IO.FileSystem": "4.0.1",
|
|
||||||
"System.Text.Encoding.Extensions": "4.0.11",
|
|
||||||
"System.Threading.Timer": "4.0.1"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/netstandard2.0/Serilog.Sinks.File.dll": {
|
|
||||||
"assemblyVersion": "2.0.0.0",
|
|
||||||
"fileVersion": "4.1.0.0"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Configuration.ConfigurationManager/4.7.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Security.Cryptography.ProtectedData": "4.7.0",
|
|
||||||
"System.Security.Permissions": "4.7.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
|
|
||||||
"assemblyVersion": "4.0.3.0",
|
|
||||||
"fileVersion": "4.700.19.56404"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Console/4.3.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.NETCore.Platforms": "3.1.0",
|
|
||||||
"Microsoft.NETCore.Targets": "1.1.0",
|
|
||||||
"System.IO": "4.3.0",
|
|
||||||
"System.Runtime": "4.3.0",
|
|
||||||
"System.Text.Encoding": "4.3.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Drawing.Common/4.7.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.NETCore.Platforms": "3.1.0",
|
|
||||||
"Microsoft.Win32.SystemEvents": "4.7.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/netstandard2.0/System.Drawing.Common.dll": {
|
|
||||||
"assemblyVersion": "4.0.0.1",
|
|
||||||
"fileVersion": "4.6.26919.2"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeTargets": {
|
|
||||||
"runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
|
|
||||||
"rid": "unix",
|
|
||||||
"assetType": "runtime",
|
|
||||||
"assemblyVersion": "4.0.2.0",
|
|
||||||
"fileVersion": "4.700.19.56404"
|
|
||||||
},
|
|
||||||
"runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
|
|
||||||
"rid": "win",
|
|
||||||
"assetType": "runtime",
|
|
||||||
"assemblyVersion": "4.0.2.0",
|
|
||||||
"fileVersion": "4.700.19.56404"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Globalization/4.3.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.NETCore.Platforms": "3.1.0",
|
|
||||||
"Microsoft.NETCore.Targets": "1.1.0",
|
|
||||||
"System.Runtime": "4.3.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.IO/4.3.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.NETCore.Platforms": "3.1.0",
|
|
||||||
"Microsoft.NETCore.Targets": "1.1.0",
|
|
||||||
"System.Runtime": "4.3.0",
|
|
||||||
"System.Text.Encoding": "4.3.0",
|
|
||||||
"System.Threading.Tasks": "4.3.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.IO.FileSystem/4.0.1": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.NETCore.Platforms": "3.1.0",
|
|
||||||
"Microsoft.NETCore.Targets": "1.1.0",
|
|
||||||
"System.IO": "4.3.0",
|
|
||||||
"System.IO.FileSystem.Primitives": "4.0.1",
|
|
||||||
"System.Runtime": "4.3.0",
|
|
||||||
"System.Runtime.Handles": "4.3.0",
|
|
||||||
"System.Text.Encoding": "4.3.0",
|
|
||||||
"System.Threading.Tasks": "4.3.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.IO.FileSystem.Primitives/4.0.1": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Runtime": "4.3.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Reflection/4.3.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.NETCore.Platforms": "3.1.0",
|
|
||||||
"Microsoft.NETCore.Targets": "1.1.0",
|
|
||||||
"System.IO": "4.3.0",
|
|
||||||
"System.Reflection.Primitives": "4.3.0",
|
|
||||||
"System.Runtime": "4.3.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Reflection.Extensions/4.3.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.NETCore.Platforms": "3.1.0",
|
|
||||||
"Microsoft.NETCore.Targets": "1.1.0",
|
|
||||||
"System.Reflection": "4.3.0",
|
|
||||||
"System.Runtime": "4.3.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Reflection.Primitives/4.3.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.NETCore.Platforms": "3.1.0",
|
|
||||||
"Microsoft.NETCore.Targets": "1.1.0",
|
|
||||||
"System.Runtime": "4.3.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Resources.ResourceManager/4.3.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.NETCore.Platforms": "3.1.0",
|
|
||||||
"Microsoft.NETCore.Targets": "1.1.0",
|
|
||||||
"System.Globalization": "4.3.0",
|
|
||||||
"System.Reflection": "4.3.0",
|
|
||||||
"System.Runtime": "4.3.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Runtime/4.3.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.NETCore.Platforms": "3.1.0",
|
|
||||||
"Microsoft.NETCore.Targets": "1.1.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Runtime.Handles/4.3.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.NETCore.Platforms": "3.1.0",
|
|
||||||
"Microsoft.NETCore.Targets": "1.1.0",
|
|
||||||
"System.Runtime": "4.3.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Runtime.InteropServices/4.3.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.NETCore.Platforms": "3.1.0",
|
|
||||||
"Microsoft.NETCore.Targets": "1.1.0",
|
|
||||||
"System.Reflection": "4.3.0",
|
|
||||||
"System.Reflection.Primitives": "4.3.0",
|
|
||||||
"System.Runtime": "4.3.0",
|
|
||||||
"System.Runtime.Handles": "4.3.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Reflection": "4.3.0",
|
|
||||||
"System.Reflection.Extensions": "4.3.0",
|
|
||||||
"System.Resources.ResourceManager": "4.3.0",
|
|
||||||
"System.Runtime": "4.3.0",
|
|
||||||
"System.Runtime.InteropServices": "4.3.0",
|
|
||||||
"System.Threading": "4.3.0",
|
|
||||||
"runtime.native.System": "4.3.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Security.AccessControl/4.7.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.NETCore.Platforms": "3.1.0",
|
|
||||||
"System.Security.Principal.Windows": "4.7.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Security.Cryptography.ProtectedData/4.7.0": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
|
|
||||||
"assemblyVersion": "4.0.5.0",
|
|
||||||
"fileVersion": "4.700.19.56404"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeTargets": {
|
|
||||||
"runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
|
|
||||||
"rid": "win",
|
|
||||||
"assetType": "runtime",
|
|
||||||
"assemblyVersion": "4.0.5.0",
|
|
||||||
"fileVersion": "4.700.19.56404"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Security.Permissions/4.7.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Security.AccessControl": "4.7.0",
|
|
||||||
"System.Windows.Extensions": "4.7.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/netcoreapp3.0/System.Security.Permissions.dll": {
|
|
||||||
"assemblyVersion": "4.0.3.0",
|
|
||||||
"fileVersion": "4.700.19.56404"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Security.Principal.Windows/4.7.0": {},
|
|
||||||
"System.Text.Encoding/4.3.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.NETCore.Platforms": "3.1.0",
|
|
||||||
"Microsoft.NETCore.Targets": "1.1.0",
|
|
||||||
"System.Runtime": "4.3.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Text.Encoding.Extensions/4.0.11": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.NETCore.Platforms": "3.1.0",
|
|
||||||
"Microsoft.NETCore.Targets": "1.1.0",
|
|
||||||
"System.Runtime": "4.3.0",
|
|
||||||
"System.Text.Encoding": "4.3.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Threading/4.3.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Runtime": "4.3.0",
|
|
||||||
"System.Threading.Tasks": "4.3.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Threading.Tasks/4.3.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.NETCore.Platforms": "3.1.0",
|
|
||||||
"Microsoft.NETCore.Targets": "1.1.0",
|
|
||||||
"System.Runtime": "4.3.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Threading.Timer/4.0.1": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.NETCore.Platforms": "3.1.0",
|
|
||||||
"Microsoft.NETCore.Targets": "1.1.0",
|
|
||||||
"System.Runtime": "4.3.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Windows.Extensions/4.7.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Drawing.Common": "4.7.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/netcoreapp3.0/System.Windows.Extensions.dll": {
|
|
||||||
"assemblyVersion": "4.0.1.0",
|
|
||||||
"fileVersion": "4.700.19.56404"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeTargets": {
|
|
||||||
"runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
|
|
||||||
"rid": "win",
|
|
||||||
"assetType": "runtime",
|
|
||||||
"assemblyVersion": "4.0.1.0",
|
|
||||||
"fileVersion": "4.700.19.56404"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"libraries": {
|
|
||||||
"OnlineUserPool/1.0.0": {
|
|
||||||
"type": "project",
|
|
||||||
"serviceable": false,
|
|
||||||
"sha512": ""
|
|
||||||
},
|
|
||||||
"Microsoft.NETCore.Platforms/3.1.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
|
|
||||||
"path": "microsoft.netcore.platforms/3.1.0",
|
|
||||||
"hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.NETCore.Targets/1.1.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
|
|
||||||
"path": "microsoft.netcore.targets/1.1.0",
|
|
||||||
"hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Win32.SystemEvents/4.7.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
|
|
||||||
"path": "microsoft.win32.systemevents/4.7.0",
|
|
||||||
"hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Newtonsoft.Json/12.0.3": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
|
|
||||||
"path": "newtonsoft.json/12.0.3",
|
|
||||||
"hashPath": "newtonsoft.json.12.0.3.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"runtime.native.System/4.3.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
|
|
||||||
"path": "runtime.native.system/4.3.0",
|
|
||||||
"hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Serilog/2.9.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-QzcrD33A3+CsVvwi1I5CSei67ikQnkGrw7SscgL+vZTghaC2aNYg8fiUcedXHzKJFNjgje9rBjzwYGQTKEaXaA==",
|
|
||||||
"path": "serilog/2.9.0",
|
|
||||||
"hashPath": "serilog.2.9.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Serilog.Sinks.Console/3.1.1": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-56mI5AqvyF/i/c2451nvV71kq370XOCE4Uu5qiaJ295sOhMb9q3BWwG7mWLOVSnmpWiq0SBT3SXfgRXGNP6vzA==",
|
|
||||||
"path": "serilog.sinks.console/3.1.1",
|
|
||||||
"hashPath": "serilog.sinks.console.3.1.1.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Serilog.Sinks.File/4.1.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-U0b34w+ZikbqWEZ3ui7BdzxY/19zwrdhLtI3o6tfmLdD3oXxg7n2TZJjwCCTlKPgRuYic9CBWfrZevbb70mTaw==",
|
|
||||||
"path": "serilog.sinks.file/4.1.0",
|
|
||||||
"hashPath": "serilog.sinks.file.4.1.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Configuration.ConfigurationManager/4.7.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
|
|
||||||
"path": "system.configuration.configurationmanager/4.7.0",
|
|
||||||
"hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Console/4.3.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
|
|
||||||
"path": "system.console/4.3.0",
|
|
||||||
"hashPath": "system.console.4.3.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Drawing.Common/4.7.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
|
|
||||||
"path": "system.drawing.common/4.7.0",
|
|
||||||
"hashPath": "system.drawing.common.4.7.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Globalization/4.3.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
|
|
||||||
"path": "system.globalization/4.3.0",
|
|
||||||
"hashPath": "system.globalization.4.3.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.IO/4.3.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
|
|
||||||
"path": "system.io/4.3.0",
|
|
||||||
"hashPath": "system.io.4.3.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.IO.FileSystem/4.0.1": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
|
|
||||||
"path": "system.io.filesystem/4.0.1",
|
|
||||||
"hashPath": "system.io.filesystem.4.0.1.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.IO.FileSystem.Primitives/4.0.1": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==",
|
|
||||||
"path": "system.io.filesystem.primitives/4.0.1",
|
|
||||||
"hashPath": "system.io.filesystem.primitives.4.0.1.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Reflection/4.3.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
|
|
||||||
"path": "system.reflection/4.3.0",
|
|
||||||
"hashPath": "system.reflection.4.3.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Reflection.Extensions/4.3.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
|
|
||||||
"path": "system.reflection.extensions/4.3.0",
|
|
||||||
"hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Reflection.Primitives/4.3.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
|
|
||||||
"path": "system.reflection.primitives/4.3.0",
|
|
||||||
"hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Resources.ResourceManager/4.3.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
|
|
||||||
"path": "system.resources.resourcemanager/4.3.0",
|
|
||||||
"hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Runtime/4.3.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
|
|
||||||
"path": "system.runtime/4.3.0",
|
|
||||||
"hashPath": "system.runtime.4.3.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Runtime.Handles/4.3.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
|
|
||||||
"path": "system.runtime.handles/4.3.0",
|
|
||||||
"hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Runtime.InteropServices/4.3.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
|
|
||||||
"path": "system.runtime.interopservices/4.3.0",
|
|
||||||
"hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
|
|
||||||
"path": "system.runtime.interopservices.runtimeinformation/4.3.0",
|
|
||||||
"hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Security.AccessControl/4.7.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
|
|
||||||
"path": "system.security.accesscontrol/4.7.0",
|
|
||||||
"hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Security.Cryptography.ProtectedData/4.7.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
|
|
||||||
"path": "system.security.cryptography.protecteddata/4.7.0",
|
|
||||||
"hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Security.Permissions/4.7.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
|
|
||||||
"path": "system.security.permissions/4.7.0",
|
|
||||||
"hashPath": "system.security.permissions.4.7.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Security.Principal.Windows/4.7.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
|
|
||||||
"path": "system.security.principal.windows/4.7.0",
|
|
||||||
"hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Text.Encoding/4.3.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
|
|
||||||
"path": "system.text.encoding/4.3.0",
|
|
||||||
"hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Text.Encoding.Extensions/4.0.11": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
|
|
||||||
"path": "system.text.encoding.extensions/4.0.11",
|
|
||||||
"hashPath": "system.text.encoding.extensions.4.0.11.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Threading/4.3.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
|
|
||||||
"path": "system.threading/4.3.0",
|
|
||||||
"hashPath": "system.threading.4.3.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Threading.Tasks/4.3.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
|
|
||||||
"path": "system.threading.tasks/4.3.0",
|
|
||||||
"hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Threading.Timer/4.0.1": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
|
|
||||||
"path": "system.threading.timer/4.0.1",
|
|
||||||
"hashPath": "system.threading.timer.4.0.1.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Windows.Extensions/4.7.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
|
|
||||||
"path": "system.windows.extensions/4.7.0",
|
|
||||||
"hashPath": "system.windows.extensions.4.7.0.nupkg.sha512"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Binary file not shown.
@ -1,10 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" ?>
|
|
||||||
<configuration>
|
|
||||||
<appSettings>
|
|
||||||
<add key="Host" value="http://47.97.84.8:81/"/>
|
|
||||||
<add key="Top" value="100"/>
|
|
||||||
<add key="ShowVirtualUser" value="true"/>
|
|
||||||
<add key="Ip" value="192.168.0.94"/>
|
|
||||||
<add key="Port" value="11000"/>
|
|
||||||
</appSettings>
|
|
||||||
</configuration>
|
|
||||||
Binary file not shown.
Binary file not shown.
@ -1,9 +0,0 @@
|
|||||||
{
|
|
||||||
"runtimeOptions": {
|
|
||||||
"additionalProbingPaths": [
|
|
||||||
"C:\\Users\\Aries\\.dotnet\\store\\|arch|\\|tfm|",
|
|
||||||
"C:\\Users\\Aries\\.nuget\\packages",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,9 +0,0 @@
|
|||||||
{
|
|
||||||
"runtimeOptions": {
|
|
||||||
"tfm": "netcoreapp3.1",
|
|
||||||
"framework": {
|
|
||||||
"name": "Microsoft.NETCore.App",
|
|
||||||
"version": "3.1.0"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,4 +0,0 @@
|
|||||||
// <autogenerated />
|
|
||||||
using System;
|
|
||||||
using System.Reflection;
|
|
||||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.0", FrameworkDisplayName = "")]
|
|
||||||
@ -1,23 +0,0 @@
|
|||||||
//------------------------------------------------------------------------------
|
|
||||||
// <auto-generated>
|
|
||||||
// 此代码由工具生成。
|
|
||||||
// 运行时版本:4.0.30319.42000
|
|
||||||
//
|
|
||||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
|
||||||
// 重新生成代码,这些更改将会丢失。
|
|
||||||
// </auto-generated>
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Reflection;
|
|
||||||
|
|
||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("OnlineUserPool")]
|
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
|
||||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("OnlineUserPool")]
|
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("OnlineUserPool")]
|
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
|
||||||
|
|
||||||
// 由 MSBuild WriteCodeFragment 类生成。
|
|
||||||
|
|
||||||
@ -1 +0,0 @@
|
|||||||
7d4e7e5da665fffcfdff31f28fde61cc376abe37
|
|
||||||
Binary file not shown.
@ -1 +0,0 @@
|
|||||||
451f79064f8640077cd9eeb7407b205151813964
|
|
||||||
@ -1,15 +0,0 @@
|
|||||||
F:\JuZeCompany\OnlineUserPool\bin\Debug\netcoreapp3.0\OnlineUserPool.exe
|
|
||||||
F:\JuZeCompany\OnlineUserPool\bin\Debug\netcoreapp3.0\OnlineUserPool.deps.json
|
|
||||||
F:\JuZeCompany\OnlineUserPool\bin\Debug\netcoreapp3.0\OnlineUserPool.runtimeconfig.json
|
|
||||||
F:\JuZeCompany\OnlineUserPool\bin\Debug\netcoreapp3.0\OnlineUserPool.runtimeconfig.dev.json
|
|
||||||
F:\JuZeCompany\OnlineUserPool\bin\Debug\netcoreapp3.0\OnlineUserPool.dll
|
|
||||||
F:\JuZeCompany\OnlineUserPool\bin\Debug\netcoreapp3.0\OnlineUserPool.pdb
|
|
||||||
F:\JuZeCompany\OnlineUserPool\bin\Debug\netcoreapp3.0\Newtonsoft.Json.dll
|
|
||||||
F:\JuZeCompany\OnlineUserPool\obj\Debug\netcoreapp3.0\OnlineUserPool.csprojAssemblyReference.cache
|
|
||||||
F:\JuZeCompany\OnlineUserPool\obj\Debug\netcoreapp3.0\OnlineUserPool.AssemblyInfoInputs.cache
|
|
||||||
F:\JuZeCompany\OnlineUserPool\obj\Debug\netcoreapp3.0\OnlineUserPool.AssemblyInfo.cs
|
|
||||||
F:\JuZeCompany\OnlineUserPool\obj\Debug\netcoreapp3.0\OnlineUserPool.csproj.CoreCompileInputs.cache
|
|
||||||
F:\JuZeCompany\OnlineUserPool\obj\Debug\netcoreapp3.0\OnlineUserPool.csproj.CopyComplete
|
|
||||||
F:\JuZeCompany\OnlineUserPool\obj\Debug\netcoreapp3.0\OnlineUserPool.dll
|
|
||||||
F:\JuZeCompany\OnlineUserPool\obj\Debug\netcoreapp3.0\OnlineUserPool.pdb
|
|
||||||
F:\JuZeCompany\OnlineUserPool\obj\Debug\netcoreapp3.0\OnlineUserPool.genruntimeconfig.cache
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1 +0,0 @@
|
|||||||
328f4b4fb17a823c610727a3f51bc5ac00ef805d
|
|
||||||
Binary file not shown.
@ -1,4 +0,0 @@
|
|||||||
// <autogenerated />
|
|
||||||
using System;
|
|
||||||
using System.Reflection;
|
|
||||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")]
|
|
||||||
@ -1,23 +0,0 @@
|
|||||||
//------------------------------------------------------------------------------
|
|
||||||
// <auto-generated>
|
|
||||||
// 此代码由工具生成。
|
|
||||||
// 运行时版本:4.0.30319.42000
|
|
||||||
//
|
|
||||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
|
||||||
// 重新生成代码,这些更改将会丢失。
|
|
||||||
// </auto-generated>
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Reflection;
|
|
||||||
|
|
||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("OnlineUserPool")]
|
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
|
||||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("OnlineUserPool")]
|
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("OnlineUserPool")]
|
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
|
||||||
|
|
||||||
// 由 MSBuild WriteCodeFragment 类生成。
|
|
||||||
|
|
||||||
@ -1 +0,0 @@
|
|||||||
7d4e7e5da665fffcfdff31f28fde61cc376abe37
|
|
||||||
Binary file not shown.
@ -1 +0,0 @@
|
|||||||
fb2308a5e45c7979dae039b770fb1a38ad3c328c
|
|
||||||
@ -1,30 +0,0 @@
|
|||||||
F:\JuZeCompany\OnlineUserPool\bin\Debug\netcoreapp3.1\OnlineUserPool.exe
|
|
||||||
F:\JuZeCompany\OnlineUserPool\bin\Debug\netcoreapp3.1\OnlineUserPool.dll.config
|
|
||||||
F:\JuZeCompany\OnlineUserPool\bin\Debug\netcoreapp3.1\OnlineUserPool.deps.json
|
|
||||||
F:\JuZeCompany\OnlineUserPool\bin\Debug\netcoreapp3.1\OnlineUserPool.runtimeconfig.json
|
|
||||||
F:\JuZeCompany\OnlineUserPool\bin\Debug\netcoreapp3.1\OnlineUserPool.runtimeconfig.dev.json
|
|
||||||
F:\JuZeCompany\OnlineUserPool\bin\Debug\netcoreapp3.1\OnlineUserPool.dll
|
|
||||||
F:\JuZeCompany\OnlineUserPool\bin\Debug\netcoreapp3.1\OnlineUserPool.pdb
|
|
||||||
F:\JuZeCompany\OnlineUserPool\bin\Debug\netcoreapp3.1\Microsoft.Win32.SystemEvents.dll
|
|
||||||
F:\JuZeCompany\OnlineUserPool\bin\Debug\netcoreapp3.1\Newtonsoft.Json.dll
|
|
||||||
F:\JuZeCompany\OnlineUserPool\bin\Debug\netcoreapp3.1\Serilog.dll
|
|
||||||
F:\JuZeCompany\OnlineUserPool\bin\Debug\netcoreapp3.1\Serilog.Sinks.Console.dll
|
|
||||||
F:\JuZeCompany\OnlineUserPool\bin\Debug\netcoreapp3.1\Serilog.Sinks.File.dll
|
|
||||||
F:\JuZeCompany\OnlineUserPool\bin\Debug\netcoreapp3.1\System.Configuration.ConfigurationManager.dll
|
|
||||||
F:\JuZeCompany\OnlineUserPool\bin\Debug\netcoreapp3.1\System.Drawing.Common.dll
|
|
||||||
F:\JuZeCompany\OnlineUserPool\bin\Debug\netcoreapp3.1\System.Security.Cryptography.ProtectedData.dll
|
|
||||||
F:\JuZeCompany\OnlineUserPool\bin\Debug\netcoreapp3.1\System.Security.Permissions.dll
|
|
||||||
F:\JuZeCompany\OnlineUserPool\bin\Debug\netcoreapp3.1\System.Windows.Extensions.dll
|
|
||||||
F:\JuZeCompany\OnlineUserPool\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp3.0\Microsoft.Win32.SystemEvents.dll
|
|
||||||
F:\JuZeCompany\OnlineUserPool\bin\Debug\netcoreapp3.1\runtimes\unix\lib\netcoreapp3.0\System.Drawing.Common.dll
|
|
||||||
F:\JuZeCompany\OnlineUserPool\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp3.0\System.Drawing.Common.dll
|
|
||||||
F:\JuZeCompany\OnlineUserPool\bin\Debug\netcoreapp3.1\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll
|
|
||||||
F:\JuZeCompany\OnlineUserPool\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp3.0\System.Windows.Extensions.dll
|
|
||||||
F:\JuZeCompany\OnlineUserPool\obj\Debug\netcoreapp3.1\OnlineUserPool.AssemblyInfoInputs.cache
|
|
||||||
F:\JuZeCompany\OnlineUserPool\obj\Debug\netcoreapp3.1\OnlineUserPool.AssemblyInfo.cs
|
|
||||||
F:\JuZeCompany\OnlineUserPool\obj\Debug\netcoreapp3.1\OnlineUserPool.csproj.CoreCompileInputs.cache
|
|
||||||
F:\JuZeCompany\OnlineUserPool\obj\Debug\netcoreapp3.1\OnlineUserPool.csproj.CopyComplete
|
|
||||||
F:\JuZeCompany\OnlineUserPool\obj\Debug\netcoreapp3.1\OnlineUserPool.dll
|
|
||||||
F:\JuZeCompany\OnlineUserPool\obj\Debug\netcoreapp3.1\OnlineUserPool.pdb
|
|
||||||
F:\JuZeCompany\OnlineUserPool\obj\Debug\netcoreapp3.1\OnlineUserPool.genruntimeconfig.cache
|
|
||||||
F:\JuZeCompany\OnlineUserPool\obj\Debug\netcoreapp3.1\OnlineUserPool.csprojAssemblyReference.cache
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1 +0,0 @@
|
|||||||
86c8e15dd33445635927cfaf398408205fd11473
|
|
||||||
Binary file not shown.
@ -1,85 +0,0 @@
|
|||||||
{
|
|
||||||
"format": 1,
|
|
||||||
"restore": {
|
|
||||||
"F:\\JuZeCompany\\udpservice\\OnlineUserPool.csproj": {}
|
|
||||||
},
|
|
||||||
"projects": {
|
|
||||||
"F:\\JuZeCompany\\udpservice\\OnlineUserPool.csproj": {
|
|
||||||
"version": "1.0.0",
|
|
||||||
"restore": {
|
|
||||||
"projectUniqueName": "F:\\JuZeCompany\\udpservice\\OnlineUserPool.csproj",
|
|
||||||
"projectName": "OnlineUserPool",
|
|
||||||
"projectPath": "F:\\JuZeCompany\\udpservice\\OnlineUserPool.csproj",
|
|
||||||
"packagesPath": "C:\\Users\\Aries\\.nuget\\packages\\",
|
|
||||||
"outputPath": "F:\\JuZeCompany\\udpservice\\obj\\",
|
|
||||||
"projectStyle": "PackageReference",
|
|
||||||
"fallbackFolders": [
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
|
|
||||||
],
|
|
||||||
"configFilePaths": [
|
|
||||||
"C:\\Users\\Aries\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
|
||||||
],
|
|
||||||
"originalTargetFrameworks": [
|
|
||||||
"netcoreapp3.1"
|
|
||||||
],
|
|
||||||
"sources": {
|
|
||||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
|
||||||
"https://api.nuget.org/v3/index.json": {}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"netcoreapp3.1": {
|
|
||||||
"projectReferences": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"warningProperties": {
|
|
||||||
"warnAsError": [
|
|
||||||
"NU1605"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"netcoreapp3.1": {
|
|
||||||
"dependencies": {
|
|
||||||
"Newtonsoft.Json": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[12.0.3, )"
|
|
||||||
},
|
|
||||||
"Serilog": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[2.9.0, )"
|
|
||||||
},
|
|
||||||
"Serilog.Sinks.Console": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[3.1.1, )"
|
|
||||||
},
|
|
||||||
"Serilog.Sinks.File": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[4.1.0, )"
|
|
||||||
},
|
|
||||||
"System.Configuration.ConfigurationManager": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[4.7.0, )"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"imports": [
|
|
||||||
"net461",
|
|
||||||
"net462",
|
|
||||||
"net47",
|
|
||||||
"net471",
|
|
||||||
"net472",
|
|
||||||
"net48"
|
|
||||||
],
|
|
||||||
"assetTargetFallback": true,
|
|
||||||
"warn": true,
|
|
||||||
"frameworkReferences": {
|
|
||||||
"Microsoft.NETCore.App": {
|
|
||||||
"privateAssets": "all"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.302\\RuntimeIdentifierGraph.json"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,15 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
|
||||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
|
||||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
|
||||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
|
||||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
|
||||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
|
||||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Aries\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder</NuGetPackageFolders>
|
|
||||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
|
||||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.6.0</NuGetToolVersion>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup>
|
|
||||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
|
||||||
</PropertyGroup>
|
|
||||||
</Project>
|
|
||||||
@ -1,6 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
|
||||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<PropertyGroup>
|
|
||||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
|
||||||
</PropertyGroup>
|
|
||||||
</Project>
|
|
||||||
File diff suppressed because it is too large
Load Diff
@ -1,42 +0,0 @@
|
|||||||
{
|
|
||||||
"version": 2,
|
|
||||||
"dgSpecHash": "KE775DjJVHyMpMcDJsZPA72v7aK20YhCUY6xJPybKRLOnTeXn4NJbTN53JCtb1F9UTPN6sWFBPpX+YAIaRhsog==",
|
|
||||||
"success": true,
|
|
||||||
"projectFilePath": "F:\\JuZeCompany\\udpservice\\OnlineUserPool.csproj",
|
|
||||||
"expectedPackageFiles": [
|
|
||||||
"C:\\Users\\Aries\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.0\\microsoft.netcore.platforms.3.1.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\Aries\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\Aries\\.nuget\\packages\\microsoft.win32.systemevents\\4.7.0\\microsoft.win32.systemevents.4.7.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\Aries\\.nuget\\packages\\newtonsoft.json\\12.0.3\\newtonsoft.json.12.0.3.nupkg.sha512",
|
|
||||||
"C:\\Users\\Aries\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\Aries\\.nuget\\packages\\serilog\\2.9.0\\serilog.2.9.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\Aries\\.nuget\\packages\\serilog.sinks.console\\3.1.1\\serilog.sinks.console.3.1.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\Aries\\.nuget\\packages\\serilog.sinks.file\\4.1.0\\serilog.sinks.file.4.1.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\Aries\\.nuget\\packages\\system.configuration.configurationmanager\\4.7.0\\system.configuration.configurationmanager.4.7.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\Aries\\.nuget\\packages\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\Aries\\.nuget\\packages\\system.drawing.common\\4.7.0\\system.drawing.common.4.7.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\Aries\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\Aries\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\Aries\\.nuget\\packages\\system.io.filesystem\\4.0.1\\system.io.filesystem.4.0.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\Aries\\.nuget\\packages\\system.io.filesystem.primitives\\4.0.1\\system.io.filesystem.primitives.4.0.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\Aries\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\Aries\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\Aries\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\Aries\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\Aries\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\Aries\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\Aries\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\Aries\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\Aries\\.nuget\\packages\\system.security.accesscontrol\\4.7.0\\system.security.accesscontrol.4.7.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\Aries\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.7.0\\system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\Aries\\.nuget\\packages\\system.security.permissions\\4.7.0\\system.security.permissions.4.7.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\Aries\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\Aries\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\Aries\\.nuget\\packages\\system.text.encoding.extensions\\4.0.11\\system.text.encoding.extensions.4.0.11.nupkg.sha512",
|
|
||||||
"C:\\Users\\Aries\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\Aries\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\Aries\\.nuget\\packages\\system.threading.timer\\4.0.1\\system.threading.timer.4.0.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\Aries\\.nuget\\packages\\system.windows.extensions\\4.7.0\\system.windows.extensions.4.7.0.nupkg.sha512"
|
|
||||||
],
|
|
||||||
"logs": []
|
|
||||||
}
|
|
||||||
Loading…
x
Reference in New Issue
Block a user