diff --git a/Sln.Iot.Business/CheckTimeBusiness.cs b/Sln.Iot.Business/CheckTimeBusiness.cs
index f2408e7..0ed1b33 100644
--- a/Sln.Iot.Business/CheckTimeBusiness.cs
+++ b/Sln.Iot.Business/CheckTimeBusiness.cs
@@ -68,7 +68,7 @@ namespace Sln.Iot.Business
return FilterResult.Success;
}
- public override void ResponseHandle(ISocketClient client, byte[] buffer)
+ public override void ResponseHandle(ISocketClient client, BufferRequestInfo requestInfo)
{
//校时指令通过业务数据返回
}
diff --git a/Sln.Iot.Business/DevControlBusiness.cs b/Sln.Iot.Business/DevControlBusiness.cs
new file mode 100644
index 0000000..30b4701
--- /dev/null
+++ b/Sln.Iot.Business/DevControlBusiness.cs
@@ -0,0 +1,155 @@
+#region << 版 本 注 释 >>
+
+/*--------------------------------------------------------------------
+* 版权所有 (c) 2025 WenJY 保留所有权利。
+* CLR版本:4.0.30319.42000
+* 机器名称:Mr.Wen's MacBook Pro
+* 命名空间:Sln.Iot.Business
+* 唯一标识:97943988-8BBA-44B7-9139-BB7D4EC7FC3A
+*
+* 创建者:WenJY
+* 电子邮箱:
+* 创建时间:2025-05-09 13:55:47
+* 版本:V1.0.0
+* 描述:
+*
+*--------------------------------------------------------------------
+* 修改人:
+* 时间:
+* 修改说明:
+*
+* 版本:V1.0.0
+*--------------------------------------------------------------------*/
+
+#endregion << 版 本 注 释 >>
+
+using System;
+using Newtonsoft.Json;
+using Sln.Iot.Common;
+using Sln.Iot.Config;
+using Sln.Iot.Model.dto;
+using Sln.Iot.Serilog;
+using Sln.Iot.Socket;
+using Sln.Iot.Socket.Adapter;
+using TouchSocket.Core;
+using TouchSocket.Rpc;
+using TouchSocket.WebApi;
+
+namespace Sln.Iot.Business
+{
+ ///
+ /// 设备控制执行处理
+ ///
+ public class DevControlBusiness : RpcServer
+ {
+ private SerilogHelper _logger;
+ private StringChange _stringChange;
+
+ private readonly TcpServer _tcpServer;
+
+ public DevControlBusiness(SerilogHelper logger, StringChange stringChange, TcpServer tcpServer)
+ {
+ _logger = logger;
+ _stringChange = stringChange;
+ _tcpServer = tcpServer;
+ }
+
+ ///
+ /// 开锁
+ ///
+ ///
+ ///
+ [EnableCors("cors")]
+ [WebApi(HttpMethodType.POST)]
+ public ApiResInfo Unlock(string idStr,string password)
+ {
+ BufferRequestInfo bufferRequestInfo = new BufferRequestInfo();
+ ApiResInfo apiResInfo = new ApiResInfo();
+ try
+ {
+ BufferPack(idStr, password,0x35,out byte[] buffer);
+ _logger.Info($"向客户端:{idStr};发送开锁指令:{_stringChange.bytesToHexStr(buffer,buffer.Length)}");
+ bufferRequestInfo = _tcpServer.SendMsgToClient(idStr, buffer).Result;
+
+ if (bufferRequestInfo.DataType == 0x35)
+ {
+ _logger.Info($"开锁指令下发成功,已收到设备回复");
+ apiResInfo = ApiResInfo.Success("开锁指令下发成功,已收到设备回复",bufferRequestInfo);
+ }
+ else
+ {
+ throw new InvalidOperationException($"关锁指令下发成功,设备回复控制码不为 0x35");
+ }
+ }
+ catch (Exception e)
+ {
+ _logger.Info($"开锁异常:{e.Message}");
+ apiResInfo = ApiResInfo.Fail($"开锁异常:{e.Message}",bufferRequestInfo);
+ }
+ return apiResInfo;
+ }
+
+ ///
+ /// 关锁
+ ///
+ ///
+ ///
+ [EnableCors("cors")]
+ [WebApi(HttpMethodType.POST)]
+ public ApiResInfo LockUp(string idStr,string password)
+ {
+ BufferRequestInfo bufferRequestInfo = new BufferRequestInfo();
+ ApiResInfo apiResInfo = new ApiResInfo();
+ try
+ {
+ BufferPack(idStr, password,0x37,out byte[] buffer);
+ _logger.Info($"向客户端:{idStr};发送关锁指令:{_stringChange.bytesToHexStr(buffer,buffer.Length)}");
+ bufferRequestInfo = _tcpServer.SendMsgToClient(idStr, buffer).Result;
+ if (bufferRequestInfo.DataType == 0x37)
+ {
+ _logger.Info($"关锁指令下发成功,已收到设备回复");
+ apiResInfo = ApiResInfo.Success("关锁指令下发成功,已收到设备回复",bufferRequestInfo);
+ }
+ else
+ {
+ throw new InvalidOperationException($"关锁指令下发成功,设备回复控制码不为 0x37");
+ }
+ }
+ catch (Exception e)
+ {
+ _logger.Info($"关锁异常:{e.Message}");
+ apiResInfo = ApiResInfo.Fail($"关锁异常:{e.Message}",bufferRequestInfo);
+ }
+ return apiResInfo;
+ }
+
+ ///
+ /// 指令封装
+ ///
+ ///
+ ///
+ ///
+ ///
+ private void BufferPack(string idStr,string password,byte dataType,out byte[] buffer)
+ {
+ ushort num = 0;
+
+ byte[] idBytes = _stringChange.HexStrTorbytes(idStr);
+ byte[] pwdBytes = _stringChange.HexStrTorbytes(password);
+ buffer = new byte[5 + idBytes.Length + pwdBytes.Length];
+ buffer[num] = 0x68;
+ num = (ushort)(num + 1);
+ Array.Copy(idBytes, 0, buffer, num, idBytes.Length);
+ num = (ushort)(num + idBytes.Length);
+ buffer[num] = 0x68;
+ num = (ushort)(num + 1);
+ buffer[num] = dataType;
+ num = (ushort)(num + 1);
+ Array.Copy(pwdBytes, 0, buffer, num, pwdBytes.Length);
+ num = (ushort)(num + pwdBytes.Length);
+ buffer[num] = _stringChange.CalculateVerifyToArray(buffer, buffer.Length - 1)[0];
+ num = (ushort)(num + 1);
+ buffer[num] = 0x16;
+ }
+ }
+}
\ No newline at end of file
diff --git a/Sln.Iot.Business/HeartBusiness.cs b/Sln.Iot.Business/HeartBusiness.cs
index 507255d..58c80a8 100644
--- a/Sln.Iot.Business/HeartBusiness.cs
+++ b/Sln.Iot.Business/HeartBusiness.cs
@@ -54,24 +54,14 @@ namespace Sln.Iot.Business
///
///
///
- public override void ResponseHandle(ISocketClient client, byte[] buffer)
+ public override void ResponseHandle(ISocketClient client, BufferRequestInfo requestInfo)
{
MessagePack SendMessagePackInfo = new MessagePack()
{
- m_MessageType = 0xA4
+ //m_MessageType = 0xA4
};
- base.GetMessagePack(ref SendMessagePackInfo,buffer);
-
- //ByteBlock byteBlock = new ByteBlock(requestInfo.Body);
- //byteBlock.Read(out byte[] b_MeterID, 2);
- //var MeterID_1 = "00" + Convert.ToInt32(b_MeterID[0]).ToString();
- //MeterID_1 = MeterID_1.Substring(MeterID_1.Length - 2, 2);
- //var MeterID_2 = "00" + Convert.ToInt32(b_MeterID[1]).ToString();
- //MeterID_2 = MeterID_2.Substring(MeterID_2.Length - 2, 2);
- //var equipId = requestInfo.ColletEquipCOde + "_" + MeterID_1 + MeterID_2;
-
- //Console.WriteLine($"心跳:::::{}");
+ base.GetMessagePack(ref SendMessagePackInfo,requestInfo.buffer);
base.SendMessageAsync(client, SendMessagePackInfo);
}
diff --git a/Sln.Iot.Business/IotEnvBusiness.cs b/Sln.Iot.Business/IotEnvBusiness.cs
deleted file mode 100644
index 1200b2c..0000000
--- a/Sln.Iot.Business/IotEnvBusiness.cs
+++ /dev/null
@@ -1,321 +0,0 @@
-#region << 版 本 注 释 >>
-
-/*--------------------------------------------------------------------
-* 版权所有 (c) 2025 WenJY 保留所有权利。
-* CLR版本:4.0.30319.42000
-* 机器名称:Mr.Wen's MacBook Pro
-* 命名空间:Sln.Iot.Business
-* 唯一标识:7C26094C-5352-4997-866A-FA618F2E5D27
-*
-* 创建者:WenJY
-* 电子邮箱:
-* 创建时间:2025-04-11 15:47:06
-* 版本:V1.0.0
-* 描述:
-*
-*--------------------------------------------------------------------
-* 修改人:
-* 时间:
-* 修改说明:
-*
-* 版本:V1.0.0
-*--------------------------------------------------------------------*/
-
-#endregion << 版 本 注 释 >>
-
-using System;
-using System.Collections.Generic;
-using Microsoft.Extensions.Logging;
-using Newtonsoft.Json;
-using Sln.Iot.Business.@base;
-using Sln.Iot.Common;
-using Sln.Iot.Config;
-using Sln.Iot.Model.dao;
-using Sln.Iot.Model.dto;
-using Sln.Iot.Repository.service;
-using Sln.Iot.Serilog;
-using Sln.Iot.Socket.Adapter;
-using TouchSocket.Core;
-using TouchSocket.Sockets;
-
-namespace Sln.Iot.Business
-{
- ///
- /// 物联网环境:温度、湿度、照度、噪音、振动
- ///
- public class IotEnvBusiness:BaseBusiness
- {
- private readonly IRecordIotEnvInstantService? _service;
-
- public IotEnvBusiness(SerilogHelper logger, AppConfig appConfig, StringChange stringChange, IRecordIotEnvInstantService? service) : base(logger, appConfig, stringChange)
- {
- _service = service;
- }
-
- public override FilterResult BufferAnalysis(ISocketClient client, BufferRequestInfo requestInfo, int bodyLength)
- {
- ByteBlock byteBlock = new ByteBlock(requestInfo.Body);
-
- if (byteBlock.CanReadLen < 1)
- {
- return FilterResult.Cache;
- }
- int pos = byteBlock.Pos;
-
- try
- {
- List result = new List();
-
- var amount = requestInfo.BufferLength / bodyLength;
-
- _logger.Info($"收到{amount}个物联网环境数据,开始循环解析......");
-
- for (int i = 0; i < amount; i++)
- {
- RecordIotEnvInstant iotEnvInstant = new RecordIotEnvInstant();
-
- #region 表号解析 Add By Wenjy 2024-04-18
-
- byteBlock.Read(out byte[] b_MeterID, 2);
- var MeterID_1 = "00" + Convert.ToInt32(b_MeterID[0]).ToString();
- MeterID_1 = MeterID_1.Substring(MeterID_1.Length - 2, 2);
- var MeterID_2 = "00" + Convert.ToInt32(b_MeterID[1]).ToString();
- MeterID_2 = MeterID_2.Substring(MeterID_2.Length - 2, 2);
- var equipId = requestInfo.ColletEquipCOde + "_" + MeterID_1 + MeterID_2;
-
- #endregion
-
- iotEnvInstant.monitorId = equipId;
-
- #region 物联网参数解析 Edit By Wenjy 2025-05-07 修改 Nan 值过滤
-
- do
- {
- byteBlock.Read(out byte[] b_UA_flag, 2);
- base._stringChange.ConvertBytesToUInt16(b_UA_flag, out uint flag);
- switch (flag)
- {
- case CommParams.TTempreture: //温度
- byteBlock.Read(out byte[] tempreture, 4);
- base._stringChange.SwapBytes(ref tempreture);
- float f_tempreture = BitConverter.ToSingle(tempreture, 0);
-
- ValueIsNan(ref f_tempreture);
-
- iotEnvInstant.temperature = (decimal) f_tempreture;
- break;
-
- case CommParams.Humidity: //湿度
- byteBlock.Read(out byte[] humidity, 4);
- base._stringChange.SwapBytes(ref humidity);
- float f_humidity = BitConverter.ToSingle(humidity, 0);
-
- ValueIsNan(ref f_humidity);
-
- iotEnvInstant.humidity = (decimal) f_humidity;
- break;
-
- case CommParams.Noise: //噪音
- byteBlock.Read(out byte[] noise, 4);
- base._stringChange.SwapBytes(ref noise);
- float f_noise = BitConverter.ToSingle(noise, 0);
-
- ValueIsNan(ref f_noise);
-
- iotEnvInstant.noise = (decimal) f_noise;
- break;
-
- case CommParams.VibrationSpeed: //振动-速度
- byteBlock.Read(out byte[] vibrationSpeed, 4);
- base._stringChange.SwapBytes(ref vibrationSpeed);
- float f_vibrationSpeed = BitConverter.ToSingle(vibrationSpeed, 0);
-
- ValueIsNan(ref f_vibrationSpeed);
-
- iotEnvInstant.VibrationSpeed = (decimal) f_vibrationSpeed;
- break;
- case CommParams.VibrationDisplacement: //振动-位移
- bodyLength = 58;
- byteBlock.Read(out byte[] vibrationDisplacement, 4);
- base._stringChange.SwapBytes(ref vibrationDisplacement);
- float f_vibrationDisplacement = BitConverter.ToSingle(vibrationDisplacement, 0);
-
- ValueIsNan(ref f_vibrationDisplacement);
-
- iotEnvInstant.VibrationDisplacement = (decimal)f_vibrationDisplacement;
- break;
- case CommParams.VibrationAcceleration: //振动-加速度
- byteBlock.Read(out byte[] vibrationAcceleration, 4);
- base._stringChange.SwapBytes(ref vibrationAcceleration);
- float f_vibrationAcceleration = BitConverter.ToSingle(vibrationAcceleration, 0);
-
- ValueIsNan(ref f_vibrationAcceleration);
-
- iotEnvInstant.VibrationAcceleration = (decimal)f_vibrationAcceleration;
- break;
- case CommParams.VibrationTemp: //振动-温度
- byteBlock.Read(out byte[] vibrationTemp, 4);
- base._stringChange.SwapBytes(ref vibrationTemp);
- float f_vibrationTemp = BitConverter.ToSingle(vibrationTemp, 0);
-
- ValueIsNan(ref f_vibrationTemp);
-
- iotEnvInstant.VibrationTemp = (decimal)f_vibrationTemp;
- break;
- case CommParams.CJSJ:
- byteBlock.Read(out byte[] b_CJSJ, 6);
- string strDateTime = "20" + b_CJSJ[5].ToString("x2")
- + "-" + b_CJSJ[4].ToString("x2")
- + "-" + b_CJSJ[3].ToString("x2")
- + " " + b_CJSJ[2].ToString("x2")
- + ":" + b_CJSJ[1].ToString("x2")
- + ":" + b_CJSJ[0].ToString("x2");
- iotEnvInstant.collectTime = Convert.ToDateTime(strDateTime);
- break;
- }
-
- } while (byteBlock.Pos % bodyLength != 0);
-
- #endregion
-
- iotEnvInstant.recordTime = DateTime.Now;
-
- var serializeObject = JsonConvert.SerializeObject(iotEnvInstant);
-
- _logger.Info($"第{i+1}个物联网表{iotEnvInstant.monitorId}解析完成:{serializeObject}");
-
- result.Add(iotEnvInstant);
-
- }
-
- if (result.Count > 0)
- {
-
- //是否开启 FF 异常值过滤
- if (_appConfig.virtualFlag)
- {
- ParamVerification(ref result);
- }
-
- var inRes = _service.SplitInsert(result,out List insertIds);
-
- _logger.Info($"{amount}个物联网数据解析处理完成,保存{result.Count}个物联网数据,保存{(inRes ? "成功" : "失败")}");
- }
- else
- {
- _logger.Info($"{amount}个物联网数据解析处理完成,没有需要保存的数据");
- }
-
- return FilterResult.Success;
- }
- catch (Exception e)
- {
- base._logger.Error($"物联网数据解析异常:{e.Message}");
- }
-
- return FilterResult.Cache;
- }
-
- ///
- /// 回复指令
- ///
- ///
- ///
- public override void ResponseHandle(ISocketClient client, byte[] buffer)
- {
- MessagePack SendMessagePackInfo = new MessagePack()
- {
- m_MessageType = 0xB5
- };
- base.GetMessagePack(ref SendMessagePackInfo, buffer);
-
- base.SendMessageAsync(client,SendMessagePackInfo);
- }
-
- ///
- /// Nan 值处理
- ///
- ///
- private void ValueIsNan(ref float value)
- {
- if (double.IsNaN(value))
- {
- if (_appConfig.virtualFlag)
- {
- value = _appConfig.virtualValue;
- }
- else
- {
- value = 0;
- }
- }
- }
-
- ///
- /// FF FF参数过滤
- ///
- ///
- ///
- private void ParamVerification(ref List iotEnvInstants)
- {
- if (iotEnvInstants == null)
- {
- throw new ArgumentNullException($"过滤参数方法异常,传入参数为空");
- }
-
- for (int i = iotEnvInstants.Count - 1; i >= 0; i--)
- {
- var item = iotEnvInstants[i];
-
- if (item.temperature == _appConfig.virtualValue)
- {
- _logger.Info($"MonitorId:{item.monitorId},温度值为 FF FF FF FF,已启用过滤不保存该表数据");
- iotEnvInstants.RemoveAt(i);
- continue;
- }
-
- if (item.humidity == _appConfig.virtualValue)
- {
- _logger.Info($"MonitorId:{item.monitorId},湿度值为 FF FF FF FF,已启用过滤不保存该表数据");
- iotEnvInstants.RemoveAt(i);
- continue;
- }
-
- if (item.noise == _appConfig.virtualValue)
- {
- _logger.Info($"MonitorId:{item.monitorId},噪音值为 FF FF FF FF,已启用过滤不保存该表数据");
- iotEnvInstants.RemoveAt(i);
- continue;
- }
-
- if (item.VibrationSpeed == _appConfig.virtualValue)
- {
- _logger.Info($"MonitorId:{item.monitorId},振动速度值为 FF FF FF FF,已启用过滤不保存该表数据");
- iotEnvInstants.RemoveAt(i);
- continue;
- }
-
- if (item.VibrationDisplacement == _appConfig.virtualValue)
- {
- _logger.Info($"MonitorId:{item.monitorId},振动位移值为 FF FF FF FF,已启用过滤不保存该表数据");
- iotEnvInstants.RemoveAt(i);
- continue;
- }
-
- if (item.VibrationAcceleration == _appConfig.virtualValue)
- {
- _logger.Info($"MonitorId:{item.monitorId},振动加速度值为 FF FF FF FF,已启用过滤不保存该表数据");
- iotEnvInstants.RemoveAt(i);
- continue;
- }
-
- if (item.VibrationTemp == _appConfig.virtualValue)
- {
- _logger.Info($"MonitorId:{item.monitorId},振动温度值为 FF FF FF FF,已启用过滤不保存该表数据");
- iotEnvInstants.RemoveAt(i);
- continue;
- }
- }
- }
- }
-}
\ No newline at end of file
diff --git a/Sln.Iot.Business/LocalBusiness.cs b/Sln.Iot.Business/LocalBusiness.cs
new file mode 100644
index 0000000..0821d1d
--- /dev/null
+++ b/Sln.Iot.Business/LocalBusiness.cs
@@ -0,0 +1,131 @@
+#region << 版 本 注 释 >>
+
+/*--------------------------------------------------------------------
+* 版权所有 (c) 2025 WenJY 保留所有权利。
+* CLR版本:4.0.30319.42000
+* 机器名称:Mr.Wen's MacBook Pro
+* 命名空间:Sln.Iot.Business
+* 唯一标识:9444FDB4-4E04-4E00-9CF5-168CDE43F77B
+*
+* 创建者:WenJY
+* 电子邮箱:
+* 创建时间:2025-05-08 17:19:21
+* 版本:V1.0.0
+* 描述:
+*
+*--------------------------------------------------------------------
+* 修改人:
+* 时间:
+* 修改说明:
+*
+* 版本:V1.0.0
+*--------------------------------------------------------------------*/
+
+#endregion << 版 本 注 释 >>
+
+using System;
+using System.Collections.Generic;
+using Newtonsoft.Json;
+using Sln.Iot.Business.@base;
+using Sln.Iot.Common;
+using Sln.Iot.Config;
+using Sln.Iot.Model.dao;
+using Sln.Iot.Model.dto;
+using Sln.Iot.Serilog;
+using Sln.Iot.Socket.Adapter;
+using TouchSocket.Core;
+using TouchSocket.Sockets;
+
+namespace Sln.Iot.Business
+{
+ public class LocalBusiness:BaseBusiness
+ {
+ public LocalBusiness(SerilogHelper logger, AppConfig appConfig, StringChange stringChange) : base(logger, appConfig, stringChange)
+ {
+
+ }
+
+ public override FilterResult BufferAnalysis(ISocketClient client, BufferRequestInfo requestInfo, int bodyLength)
+ {
+ ByteBlock byteBlock = new ByteBlock(requestInfo.Body);
+
+ if (byteBlock.CanReadLen < 1)
+ {
+ return FilterResult.Cache;
+ }
+ int pos = byteBlock.Pos;
+
+ try
+ {
+ var amount = requestInfo.BufferLength / bodyLength;
+
+ _logger.Info($"收到{amount}个物联网环境数据,开始循环解析......");
+
+ for (int i = 0; i < amount; i++)
+ {
+ byte[] ids = new byte[3];
+ Array.Copy(requestInfo.buffer, 1, ids, 0, ids.Length);
+ string idsStr = _stringChange.bytesToHexStr(ids,ids.Length);
+ _logger.Info($"设备编号:{idsStr}");
+ do
+ {
+ byteBlock.Read(out byte[] b_UA_flag, 2);
+ base._stringChange.ConvertBytesToUInt16(b_UA_flag, out uint flag);
+ switch (flag)
+ {
+ case 0xB401: //纬度
+ byteBlock.Read(out byte[] latitudeBuffer, 5);
+ var latitudeStr = _stringChange.bytesToHexStr(latitudeBuffer,latitudeBuffer.Length);
+ decimal latitude = decimal.Parse(latitudeStr.Substring(0, 2) + "." + latitudeStr.Substring(2, 6));
+ int latitudeType = int.Parse(latitudeStr.Substring(latitudeStr.Length - 2));
+ _logger.Info($"{(latitudeType == 10 ? "北纬":"南纬")}:{latitude}°");
+ break;
+ case 0xB402: //经度
+ byteBlock.Read(out byte[] longitudeBuffer, 6);
+ var longitudeStr = _stringChange.bytesToHexStr(longitudeBuffer,longitudeBuffer.Length);
+ decimal longitude = decimal.Parse(longitudeStr.Substring(0, 3) + "." + longitudeStr.Substring(3, 7));
+ int longitudeType = int.Parse(longitudeStr.Substring(longitudeStr.Length - 2));
+ _logger.Info($"{(longitudeType == 20 ? "东经":"西经")}:{longitude}°");
+ break;
+ case 0xB403: //卫星数量
+ byteBlock.Read(out byte[] satelliteBuffer, 1);
+ var satelliteStr = _stringChange.bytesToHexStr(satelliteBuffer,satelliteBuffer.Length);
+ _logger.Info($"卫星数量:{satelliteStr}");
+ break;
+ case 0xB404: //时间
+ byteBlock.Read(out byte[] timeBuffer, 6);
+ var timeStr = _stringChange.bytesToHexStr(timeBuffer,timeBuffer.Length);
+ _logger.Info($"时间:{timeStr}");
+ break;
+
+ default:
+ break;
+ }
+
+ } while (byteBlock.Pos % bodyLength != 0);
+ }
+
+
+
+ return FilterResult.Success;
+ }
+ catch (Exception e)
+ {
+ base._logger.Error($"物联网数据解析异常:{e.Message}");
+ }
+
+ return FilterResult.Cache;
+ }
+
+ public override void ResponseHandle(ISocketClient client, BufferRequestInfo requestInfo)
+ {
+ MessagePack SendMessagePackInfo = new MessagePack()
+ {
+ //m_MessageType = 0xB5
+ };
+ base.GetMessagePack(ref SendMessagePackInfo, requestInfo.buffer);
+
+ base.SendMessageAsync(client,SendMessagePackInfo);
+ }
+ }
+}
\ No newline at end of file
diff --git a/Sln.Iot.Business/LoginBusiness.cs b/Sln.Iot.Business/LoginBusiness.cs
index 2abb83f..d911c7d 100644
--- a/Sln.Iot.Business/LoginBusiness.cs
+++ b/Sln.Iot.Business/LoginBusiness.cs
@@ -55,17 +55,12 @@ namespace Sln.Iot.Business
public override FilterResult BufferAnalysis(ISocketClient client, BufferRequestInfo requestInfo, int bodyLength)
{
var flag = "";
- byte[] bDeviceType = new byte[1];
- byte[] bDeviceID = new byte[2];
- Array.Copy(requestInfo.buffer, 1, bDeviceType, 0, 1);
- Array.Copy(requestInfo.buffer, 2, bDeviceID, 0, 2);
- flag = base._stringChange.ConverToString(bDeviceType);
- flag += base._stringChange.ConverToString(bDeviceID);
+ byte[] ids = new byte[3];
+ Array.Copy(requestInfo.buffer, 1, ids, 0, ids.Length);
+ string clientIdStr = _stringChange.bytesToHexStr(ids,ids.Length);
- string clientIdStr = flag.ToString();
-
- if (clientIdStr.Contains("45"))
+ if (clientIdStr.Contains("37"))
{
if (client.Id != clientIdStr)
{
@@ -84,15 +79,16 @@ namespace Sln.Iot.Business
///
///
///
- public override void ResponseHandle(ISocketClient client, byte[] buffer)
+ public override void ResponseHandle(ISocketClient client,BufferRequestInfo requestInfo)
{
MessagePack SendMessagePackInfo = new MessagePack()
{
- m_MessageType = 0xA1
+ //m_MessageType = 0xA1,
+ //body = buffer,
};
- base.GetMessagePack(ref SendMessagePackInfo,buffer);
+ base.GetMessagePack(ref SendMessagePackInfo,requestInfo.buffer);
- base.SendMessageAsync(client, SendMessagePackInfo);
+ base.SendMessageAsync(client, SendMessagePackInfo,requestInfo.Body);
}
}
}
\ No newline at end of file
diff --git a/Sln.Iot.Business/base/BaseBusiness.cs b/Sln.Iot.Business/base/BaseBusiness.cs
index 8d84170..5637d56 100644
--- a/Sln.Iot.Business/base/BaseBusiness.cs
+++ b/Sln.Iot.Business/base/BaseBusiness.cs
@@ -62,7 +62,7 @@ namespace Sln.Iot.Business.@base
///
///
///
- public abstract void ResponseHandle(ISocketClient client, byte[] buffer);
+ public abstract void ResponseHandle(ISocketClient client, BufferRequestInfo requestInfo);
///
/// 封装回复指令
@@ -74,7 +74,7 @@ namespace Sln.Iot.Business.@base
SendMessagePackInfo.m_EnergyType = buffer[1];
Array.Copy(buffer, 2, SendMessagePackInfo.m_Meteraddr, 0, 2);
Array.Copy(buffer, 4, SendMessagePackInfo.m_Msta, 0, 2);
- SendMessagePackInfo.m_StartFlag = buffer[6];
+ //SendMessagePackInfo.m_StartFlag = buffer[6];
}
///
@@ -88,11 +88,11 @@ namespace Sln.Iot.Business.@base
ushort num = 0;
try
{
- byte[] SendBuffer = new byte[12];
+ byte[] SendBuffer = new byte[8];
if (buffer != null)
{
- SendBuffer = new byte[12 + buffer.Length];
+ SendBuffer = new byte[8 + buffer.Length];
}
SendBuffer[num] = pMessagePack.m_BeginChar;
num = (ushort)(num + 1);
@@ -102,12 +102,12 @@ namespace Sln.Iot.Business.@base
num = (ushort)(num + 2);
Array.Copy(pMessagePack.m_Msta, 0, SendBuffer, num, pMessagePack.m_Msta.Length);
num = (ushort)(num + 2);
- SendBuffer[num] = pMessagePack.m_StartFlag;
- num = (ushort)(num + 1);
- SendBuffer[num] = pMessagePack.m_MessageType;
- num = (ushort)(num + 1);
- Array.Copy(pMessagePack.m_PackLen, 0, SendBuffer, num, pMessagePack.m_PackLen.Length);
- num = (ushort)(num + 2);
+ // SendBuffer[num] = pMessagePack.m_StartFlag;
+ // num = (ushort)(num + 1);
+ // SendBuffer[num] = pMessagePack.m_MessageType;
+ // num = (ushort)(num + 1);
+ // Array.Copy(pMessagePack.m_PackLen, 0, SendBuffer, num, pMessagePack.m_PackLen.Length);
+ // num = (ushort)(num + 2);
if (buffer != null)
{
diff --git a/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Business.deps.json b/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Business.deps.json
index c6ef667..772860e 100644
--- a/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Business.deps.json
+++ b/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Business.deps.json
@@ -1195,6 +1195,51 @@
}
}
},
+ "TouchSocket.Http/2.0.0": {
+ "dependencies": {
+ "TouchSocket": "2.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/TouchSocket.Http.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.0.0.0"
+ }
+ }
+ },
+ "TouchSocket.Rpc/2.0.0": {
+ "dependencies": {
+ "TouchSocket.Core": "2.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/TouchSocket.Rpc.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.0.0.0"
+ }
+ }
+ },
+ "TouchSocket.WebApi/2.0.0": {
+ "dependencies": {
+ "TouchSocket.Http": "2.0.0",
+ "TouchSocket.Rpc": "2.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/TouchSocket.WebApi.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.0.0.0"
+ }
+ }
+ },
+ "TouchSocket.WebApi.Swagger/2.0.0": {
+ "dependencies": {
+ "TouchSocket.WebApi": "2.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/TouchSocket.WebApi.Swagger.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.0.0.0"
+ }
+ }
+ },
"Sln.Iot.Common/1.0.0": {
"dependencies": {
"System.Drawing.Common": "6.0.0"
@@ -1240,8 +1285,11 @@
},
"Sln.Iot.Socket/1.0.0": {
"dependencies": {
+ "Sln.Iot.Model": "1.0.0",
"Sln.Iot.Serilog": "1.0.0",
- "TouchSocket": "2.0.0"
+ "TouchSocket": "2.0.0",
+ "TouchSocket.WebApi": "2.0.0",
+ "TouchSocket.WebApi.Swagger": "2.0.0"
},
"runtime": {
"Sln.Iot.Socket.dll": {}
@@ -1969,6 +2017,34 @@
"path": "touchsocket.core/2.0.0",
"hashPath": "touchsocket.core.2.0.0.nupkg.sha512"
},
+ "TouchSocket.Http/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-pS7HpoSI7DnBtdX6WVph7XKxdaC5IiWJh13ubujvBjD8+FjXVZidecnPOiS3RvKTV9iWzcIOuun1s2CkSZd21A==",
+ "path": "touchsocket.http/2.0.0",
+ "hashPath": "touchsocket.http.2.0.0.nupkg.sha512"
+ },
+ "TouchSocket.Rpc/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-8IhGjKv4NsSvbwKvxpYY36VG0EHj/EJfooVAxuDxM6uKW9ZDEBwd8/7xLidv7traWtLp0XOT6/0Ws6uEfGPttw==",
+ "path": "touchsocket.rpc/2.0.0",
+ "hashPath": "touchsocket.rpc.2.0.0.nupkg.sha512"
+ },
+ "TouchSocket.WebApi/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Xwz8WFVblpdZqXLQ/eKgOlSPffPjiaAv6xOiE9+lyU74d34uLhI6MqRoX0ywkoERNCJkzEsQw5txocDRmXTWxw==",
+ "path": "touchsocket.webapi/2.0.0",
+ "hashPath": "touchsocket.webapi.2.0.0.nupkg.sha512"
+ },
+ "TouchSocket.WebApi.Swagger/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-pw1UvrVUZL2euVS/DTRLSWQqzIOJ9f+HylcIFEh3zokqC+2FIqj7+d/c6z4drjO1OhWi/25+qEMc4ksAup/48w==",
+ "path": "touchsocket.webapi.swagger/2.0.0",
+ "hashPath": "touchsocket.webapi.swagger.2.0.0.nupkg.sha512"
+ },
"Sln.Iot.Common/1.0.0": {
"type": "project",
"serviceable": false,
diff --git a/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Business.dll b/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Business.dll
index 182f537..5c14188 100644
Binary files a/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Business.dll and b/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Business.dll differ
diff --git a/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Business.pdb b/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Business.pdb
index 7c7acdc..3d07534 100644
Binary files a/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Business.pdb and b/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Business.pdb differ
diff --git a/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Common.dll b/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Common.dll
index 52ca13d..0ca10d5 100644
Binary files a/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Common.dll and b/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Common.dll differ
diff --git a/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Common.pdb b/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Common.pdb
index fa9c277..cf6f3fa 100644
Binary files a/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Common.pdb and b/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Common.pdb differ
diff --git a/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Config.dll b/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Config.dll
index e0a83b7..b1b475d 100644
Binary files a/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Config.dll and b/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Config.dll differ
diff --git a/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Config.pdb b/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Config.pdb
index d729b57..070b834 100644
Binary files a/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Config.pdb and b/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Config.pdb differ
diff --git a/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Model.dll b/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Model.dll
index 6c0d761..3d2e909 100644
Binary files a/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Model.dll and b/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Model.dll differ
diff --git a/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Model.pdb b/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Model.pdb
index b442f76..bac0fdb 100644
Binary files a/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Model.pdb and b/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Model.pdb differ
diff --git a/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Repository.dll b/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Repository.dll
index df53cd1..be60876 100644
Binary files a/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Repository.dll and b/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Repository.dll differ
diff --git a/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Repository.pdb b/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Repository.pdb
index e004f32..857b619 100644
Binary files a/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Repository.pdb and b/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Repository.pdb differ
diff --git a/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Serilog.dll b/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Serilog.dll
index 8bdd1a9..3d2708b 100644
Binary files a/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Serilog.dll and b/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Serilog.dll differ
diff --git a/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Serilog.pdb b/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Serilog.pdb
index f5746df..c698874 100644
Binary files a/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Serilog.pdb and b/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Serilog.pdb differ
diff --git a/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Socket.dll b/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Socket.dll
index 94f880d..a6f4312 100644
Binary files a/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Socket.dll and b/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Socket.dll differ
diff --git a/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Socket.pdb b/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Socket.pdb
index 70937a5..6ea3648 100644
Binary files a/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Socket.pdb and b/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Socket.pdb differ
diff --git a/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.GeneratedMSBuildEditorConfig.editorconfig b/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.GeneratedMSBuildEditorConfig.editorconfig
index dea69db..3dabc51 100644
--- a/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.GeneratedMSBuildEditorConfig.editorconfig
+++ b/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.GeneratedMSBuildEditorConfig.editorconfig
@@ -1,3 +1,3 @@
is_global = true
build_property.RootNamespace = Sln.Iot.Business
-build_property.ProjectDir = /Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Business/
+build_property.ProjectDir = /Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/
diff --git a/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.assets.cache b/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.assets.cache
index 1d4b2cd..9c99ac1 100644
Binary files a/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.assets.cache and b/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.assets.cache differ
diff --git a/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.csproj.AssemblyReference.cache b/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.csproj.AssemblyReference.cache
index 82d5a97..fd9c7d2 100644
Binary files a/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.csproj.AssemblyReference.cache and b/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.csproj.AssemblyReference.cache differ
diff --git a/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.csproj.CoreCompileInputs.cache b/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.csproj.CoreCompileInputs.cache
index f9877d8..57c153f 100644
--- a/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.csproj.CoreCompileInputs.cache
+++ b/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.csproj.CoreCompileInputs.cache
@@ -1 +1 @@
-2ce0c4f9ee62a08488a9a35d5ddbc19f5bbae93b
+aeff8618efbc09ca6762690d721ce79cb58971fc
diff --git a/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.csproj.FileListAbsolute.txt b/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.csproj.FileListAbsolute.txt
index 9a40fe8..7f3061b 100644
--- a/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.csproj.FileListAbsolute.txt
+++ b/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.csproj.FileListAbsolute.txt
@@ -21,3 +21,26 @@
/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.pdb
/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Repository.dll
/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Repository.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Business.deps.json
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Business.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Business.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Common.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Config.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Model.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Repository.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Serilog.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Socket.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Common.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Model.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Repository.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Serilog.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Socket.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/bin/Debug/netstandard2.1/Sln.Iot.Config.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.csproj.AssemblyReference.cache
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.GeneratedMSBuildEditorConfig.editorconfig
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.AssemblyInfoInputs.cache
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.AssemblyInfo.cs
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.csproj.CoreCompileInputs.cache
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.csproj.CopyComplete
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.pdb
diff --git a/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.dll b/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.dll
index 182f537..5c14188 100644
Binary files a/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.dll and b/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.dll differ
diff --git a/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.pdb b/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.pdb
index 7c7acdc..3d07534 100644
Binary files a/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.pdb and b/Sln.Iot.Business/obj/Debug/netstandard2.1/Sln.Iot.Business.pdb differ
diff --git a/Sln.Iot.Business/obj/Sln.Iot.Business.csproj.nuget.dgspec.json b/Sln.Iot.Business/obj/Sln.Iot.Business.csproj.nuget.dgspec.json
index ccf397c..18b8207 100644
--- a/Sln.Iot.Business/obj/Sln.Iot.Business.csproj.nuget.dgspec.json
+++ b/Sln.Iot.Business/obj/Sln.Iot.Business.csproj.nuget.dgspec.json
@@ -1,17 +1,17 @@
{
"format": 1,
"restore": {
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Business/Sln.Iot.Business.csproj": {}
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/Sln.Iot.Business.csproj": {}
},
"projects": {
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Business/Sln.Iot.Business.csproj": {
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/Sln.Iot.Business.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Business/Sln.Iot.Business.csproj",
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/Sln.Iot.Business.csproj",
"projectName": "Sln.Iot.Business",
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Business/Sln.Iot.Business.csproj",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/Sln.Iot.Business.csproj",
"packagesPath": "/Users/wenxiansheng/.nuget/packages/",
- "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Business/obj/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
@@ -26,20 +26,20 @@
"netstandard2.1": {
"targetAlias": "netstandard2.1",
"projectReferences": {
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj"
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj"
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj"
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj"
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj"
}
}
}
@@ -73,14 +73,14 @@
}
}
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj": {
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj",
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj",
"projectName": "Sln.Iot.Common",
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj",
"packagesPath": "/Users/wenxiansheng/.nuget/packages/",
- "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Common/obj/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
@@ -132,14 +132,14 @@
}
}
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj": {
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj",
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj",
"projectName": "Sln.Iot.Config",
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj",
"packagesPath": "/Users/wenxiansheng/.nuget/packages/",
- "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/obj/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
@@ -191,14 +191,14 @@
}
}
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj": {
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj",
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj",
"projectName": "Sln.Iot.Model",
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj",
"packagesPath": "/Users/wenxiansheng/.nuget/packages/",
- "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/obj/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
@@ -250,14 +250,14 @@
}
}
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj": {
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj",
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj",
"projectName": "Sln.Iot.Repository",
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj",
"packagesPath": "/Users/wenxiansheng/.nuget/packages/",
- "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/obj/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
@@ -272,11 +272,11 @@
"netstandard2.1": {
"targetAlias": "netstandard2.1",
"projectReferences": {
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj"
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj"
}
}
}
@@ -310,14 +310,14 @@
}
}
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj": {
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj",
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj",
"projectName": "Sln.Iot.Serilog",
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj",
"packagesPath": "/Users/wenxiansheng/.nuget/packages/",
- "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/obj/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
@@ -332,8 +332,8 @@
"netstandard2.1": {
"targetAlias": "netstandard2.1",
"projectReferences": {
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj"
}
}
}
@@ -377,14 +377,14 @@
}
}
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj": {
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj",
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj",
"projectName": "Sln.Iot.Socket",
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj",
"packagesPath": "/Users/wenxiansheng/.nuget/packages/",
- "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/obj/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
@@ -399,8 +399,11 @@
"netstandard2.1": {
"targetAlias": "netstandard2.1",
"projectReferences": {
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj"
+ },
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj"
}
}
}
@@ -418,6 +421,14 @@
"TouchSocket": {
"target": "Package",
"version": "[2.0.0, )"
+ },
+ "TouchSocket.WebApi": {
+ "target": "Package",
+ "version": "[2.0.0, )"
+ },
+ "TouchSocket.WebApi.Swagger": {
+ "target": "Package",
+ "version": "[2.0.0, )"
}
},
"imports": [
diff --git a/Sln.Iot.Business/obj/Sln.Iot.Business.csproj.nuget.g.props b/Sln.Iot.Business/obj/Sln.Iot.Business.csproj.nuget.g.props
index 0c90383..371110f 100644
--- a/Sln.Iot.Business/obj/Sln.Iot.Business.csproj.nuget.g.props
+++ b/Sln.Iot.Business/obj/Sln.Iot.Business.csproj.nuget.g.props
@@ -14,5 +14,6 @@
/Users/wenxiansheng/.nuget/packages/touchsocket.core/2.0.0
+ /Users/wenxiansheng/.nuget/packages/touchsocket.rpc/2.0.0
\ No newline at end of file
diff --git a/Sln.Iot.Business/obj/project.assets.json b/Sln.Iot.Business/obj/project.assets.json
index 48b2fc5..2350fb2 100644
--- a/Sln.Iot.Business/obj/project.assets.json
+++ b/Sln.Iot.Business/obj/project.assets.json
@@ -1837,6 +1837,71 @@
}
}
},
+ "TouchSocket.Http/2.0.0": {
+ "type": "package",
+ "dependencies": {
+ "TouchSocket": "2.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.1/TouchSocket.Http.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.1/TouchSocket.Http.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "TouchSocket.Rpc/2.0.0": {
+ "type": "package",
+ "dependencies": {
+ "TouchSocket.Core": "2.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.1/TouchSocket.Rpc.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.1/TouchSocket.Rpc.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "TouchSocket.WebApi/2.0.0": {
+ "type": "package",
+ "dependencies": {
+ "TouchSocket.Http": "2.0.0",
+ "TouchSocket.Rpc": "2.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.1/TouchSocket.WebApi.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.1/TouchSocket.WebApi.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "TouchSocket.WebApi.Swagger/2.0.0": {
+ "type": "package",
+ "dependencies": {
+ "TouchSocket.WebApi": "2.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.1/TouchSocket.WebApi.Swagger.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.1/TouchSocket.WebApi.Swagger.dll": {
+ "related": ".xml"
+ }
+ }
+ },
"Sln.Iot.Common/1.0.0": {
"type": "project",
"framework": ".NETStandard,Version=v2.1",
@@ -1909,8 +1974,11 @@
"type": "project",
"framework": ".NETStandard,Version=v2.1",
"dependencies": {
+ "Sln.Iot.Model": "1.0.0",
"Sln.Iot.Serilog": "1.0.0",
- "TouchSocket": "2.0.0"
+ "TouchSocket": "2.0.0",
+ "TouchSocket.WebApi": "2.0.0",
+ "TouchSocket.WebApi.Swagger": "2.0.0"
},
"compile": {
"bin/placeholder/Sln.Iot.Socket.dll": {}
@@ -5497,6 +5565,134 @@
"touchsocket.core.nuspec"
]
},
+ "TouchSocket.Http/2.0.0": {
+ "sha512": "pS7HpoSI7DnBtdX6WVph7XKxdaC5IiWJh13ubujvBjD8+FjXVZidecnPOiS3RvKTV9iWzcIOuun1s2CkSZd21A==",
+ "type": "package",
+ "path": "touchsocket.http/2.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.txt",
+ "lib/net45/TouchSocket.Http.dll",
+ "lib/net45/TouchSocket.Http.xml",
+ "lib/net462/TouchSocket.Http.dll",
+ "lib/net462/TouchSocket.Http.xml",
+ "lib/net472/TouchSocket.Http.dll",
+ "lib/net472/TouchSocket.Http.xml",
+ "lib/net481/TouchSocket.Http.dll",
+ "lib/net481/TouchSocket.Http.xml",
+ "lib/net6.0/TouchSocket.Http.dll",
+ "lib/net6.0/TouchSocket.Http.xml",
+ "lib/net7.0/TouchSocket.Http.dll",
+ "lib/net7.0/TouchSocket.Http.xml",
+ "lib/net8.0/TouchSocket.Http.dll",
+ "lib/net8.0/TouchSocket.Http.xml",
+ "lib/netstandard2.0/TouchSocket.Http.dll",
+ "lib/netstandard2.0/TouchSocket.Http.xml",
+ "lib/netstandard2.1/TouchSocket.Http.dll",
+ "lib/netstandard2.1/TouchSocket.Http.xml",
+ "logo.png",
+ "touchsocket.http.2.0.0.nupkg.sha512",
+ "touchsocket.http.nuspec"
+ ]
+ },
+ "TouchSocket.Rpc/2.0.0": {
+ "sha512": "8IhGjKv4NsSvbwKvxpYY36VG0EHj/EJfooVAxuDxM6uKW9ZDEBwd8/7xLidv7traWtLp0XOT6/0Ws6uEfGPttw==",
+ "type": "package",
+ "path": "touchsocket.rpc/2.0.0",
+ "hasTools": true,
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.txt",
+ "analyzers/dotnet/cs/TouchSocket.Rpc.SourceGenerator.dll",
+ "lib/net45/TouchSocket.Rpc.dll",
+ "lib/net45/TouchSocket.Rpc.xml",
+ "lib/net462/TouchSocket.Rpc.dll",
+ "lib/net462/TouchSocket.Rpc.xml",
+ "lib/net472/TouchSocket.Rpc.dll",
+ "lib/net472/TouchSocket.Rpc.xml",
+ "lib/net481/TouchSocket.Rpc.dll",
+ "lib/net481/TouchSocket.Rpc.xml",
+ "lib/net6.0/TouchSocket.Rpc.dll",
+ "lib/net6.0/TouchSocket.Rpc.xml",
+ "lib/net7.0/TouchSocket.Rpc.dll",
+ "lib/net7.0/TouchSocket.Rpc.xml",
+ "lib/net8.0/TouchSocket.Rpc.dll",
+ "lib/net8.0/TouchSocket.Rpc.xml",
+ "lib/netstandard2.0/TouchSocket.Rpc.dll",
+ "lib/netstandard2.0/TouchSocket.Rpc.xml",
+ "lib/netstandard2.1/TouchSocket.Rpc.dll",
+ "lib/netstandard2.1/TouchSocket.Rpc.xml",
+ "logo.png",
+ "tools/install.ps1",
+ "tools/uninstall.ps1",
+ "touchsocket.rpc.2.0.0.nupkg.sha512",
+ "touchsocket.rpc.nuspec"
+ ]
+ },
+ "TouchSocket.WebApi/2.0.0": {
+ "sha512": "Xwz8WFVblpdZqXLQ/eKgOlSPffPjiaAv6xOiE9+lyU74d34uLhI6MqRoX0ywkoERNCJkzEsQw5txocDRmXTWxw==",
+ "type": "package",
+ "path": "touchsocket.webapi/2.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.txt",
+ "lib/net45/TouchSocket.WebApi.dll",
+ "lib/net45/TouchSocket.WebApi.xml",
+ "lib/net462/TouchSocket.WebApi.dll",
+ "lib/net462/TouchSocket.WebApi.xml",
+ "lib/net472/TouchSocket.WebApi.dll",
+ "lib/net472/TouchSocket.WebApi.xml",
+ "lib/net481/TouchSocket.WebApi.dll",
+ "lib/net481/TouchSocket.WebApi.xml",
+ "lib/net6.0/TouchSocket.WebApi.dll",
+ "lib/net6.0/TouchSocket.WebApi.xml",
+ "lib/net7.0/TouchSocket.WebApi.dll",
+ "lib/net7.0/TouchSocket.WebApi.xml",
+ "lib/net8.0/TouchSocket.WebApi.dll",
+ "lib/net8.0/TouchSocket.WebApi.xml",
+ "lib/netstandard2.0/TouchSocket.WebApi.dll",
+ "lib/netstandard2.0/TouchSocket.WebApi.xml",
+ "lib/netstandard2.1/TouchSocket.WebApi.dll",
+ "lib/netstandard2.1/TouchSocket.WebApi.xml",
+ "logo.png",
+ "touchsocket.webapi.2.0.0.nupkg.sha512",
+ "touchsocket.webapi.nuspec"
+ ]
+ },
+ "TouchSocket.WebApi.Swagger/2.0.0": {
+ "sha512": "pw1UvrVUZL2euVS/DTRLSWQqzIOJ9f+HylcIFEh3zokqC+2FIqj7+d/c6z4drjO1OhWi/25+qEMc4ksAup/48w==",
+ "type": "package",
+ "path": "touchsocket.webapi.swagger/2.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.txt",
+ "lib/net45/TouchSocket.WebApi.Swagger.dll",
+ "lib/net45/TouchSocket.WebApi.Swagger.xml",
+ "lib/net462/TouchSocket.WebApi.Swagger.dll",
+ "lib/net462/TouchSocket.WebApi.Swagger.xml",
+ "lib/net472/TouchSocket.WebApi.Swagger.dll",
+ "lib/net472/TouchSocket.WebApi.Swagger.xml",
+ "lib/net481/TouchSocket.WebApi.Swagger.dll",
+ "lib/net481/TouchSocket.WebApi.Swagger.xml",
+ "lib/net6.0/TouchSocket.WebApi.Swagger.dll",
+ "lib/net6.0/TouchSocket.WebApi.Swagger.xml",
+ "lib/net7.0/TouchSocket.WebApi.Swagger.dll",
+ "lib/net7.0/TouchSocket.WebApi.Swagger.xml",
+ "lib/net8.0/TouchSocket.WebApi.Swagger.dll",
+ "lib/net8.0/TouchSocket.WebApi.Swagger.xml",
+ "lib/netstandard2.0/TouchSocket.WebApi.Swagger.dll",
+ "lib/netstandard2.0/TouchSocket.WebApi.Swagger.xml",
+ "lib/netstandard2.1/TouchSocket.WebApi.Swagger.dll",
+ "lib/netstandard2.1/TouchSocket.WebApi.Swagger.xml",
+ "logo.png",
+ "touchsocket.webapi.swagger.2.0.0.nupkg.sha512",
+ "touchsocket.webapi.swagger.nuspec"
+ ]
+ },
"Sln.Iot.Common/1.0.0": {
"type": "project",
"path": "../Sln.Iot.Common/Sln.Iot.Common.csproj",
@@ -5543,11 +5739,11 @@
"project": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Business/Sln.Iot.Business.csproj",
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/Sln.Iot.Business.csproj",
"projectName": "Sln.Iot.Business",
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Business/Sln.Iot.Business.csproj",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/Sln.Iot.Business.csproj",
"packagesPath": "/Users/wenxiansheng/.nuget/packages/",
- "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Business/obj/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
@@ -5562,20 +5758,20 @@
"netstandard2.1": {
"targetAlias": "netstandard2.1",
"projectReferences": {
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj"
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj"
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj"
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj"
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj"
}
}
}
diff --git a/Sln.Iot.Business/obj/project.nuget.cache b/Sln.Iot.Business/obj/project.nuget.cache
index e02ad59..ae92961 100644
--- a/Sln.Iot.Business/obj/project.nuget.cache
+++ b/Sln.Iot.Business/obj/project.nuget.cache
@@ -1,8 +1,8 @@
{
"version": 2,
- "dgSpecHash": "MSQMXEapKhk=",
+ "dgSpecHash": "gB7T5pBAji0=",
"success": true,
- "projectFilePath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Business/Sln.Iot.Business.csproj",
+ "projectFilePath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/Sln.Iot.Business.csproj",
"expectedPackageFiles": [
"/Users/wenxiansheng/.nuget/packages/azure.core/1.38.0/azure.core.1.38.0.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/azure.identity/1.11.4/azure.identity.1.11.4.nupkg.sha512",
@@ -105,7 +105,11 @@
"/Users/wenxiansheng/.nuget/packages/system.threading.tasks/4.3.0/system.threading.tasks.4.3.0.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/system.threading.tasks.extensions/4.5.4/system.threading.tasks.extensions.4.5.4.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/touchsocket/2.0.0/touchsocket.2.0.0.nupkg.sha512",
- "/Users/wenxiansheng/.nuget/packages/touchsocket.core/2.0.0/touchsocket.core.2.0.0.nupkg.sha512"
+ "/Users/wenxiansheng/.nuget/packages/touchsocket.core/2.0.0/touchsocket.core.2.0.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/touchsocket.http/2.0.0/touchsocket.http.2.0.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/touchsocket.rpc/2.0.0/touchsocket.rpc.2.0.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/touchsocket.webapi/2.0.0/touchsocket.webapi.2.0.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/touchsocket.webapi.swagger/2.0.0/touchsocket.webapi.swagger.2.0.0.nupkg.sha512"
],
"logs": []
}
\ No newline at end of file
diff --git a/Sln.Iot.Business/obj/project.packagespec.json b/Sln.Iot.Business/obj/project.packagespec.json
index 8aa75c4..01474f4 100644
--- a/Sln.Iot.Business/obj/project.packagespec.json
+++ b/Sln.Iot.Business/obj/project.packagespec.json
@@ -1 +1 @@
-"restore":{"projectUniqueName":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Business/Sln.Iot.Business.csproj","projectName":"Sln.Iot.Business","projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Business/Sln.Iot.Business.csproj","outputPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Business/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["netstandard2.1"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","projectReferences":{"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj":{"projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj"},"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj":{"projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj"},"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj":{"projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj"},"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj":{"projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj"},"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj":{"projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"NETStandard.Library":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/6.0.417/RuntimeIdentifierGraph.json"}}
\ No newline at end of file
+"restore":{"projectUniqueName":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/Sln.Iot.Business.csproj","projectName":"Sln.Iot.Business","projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/Sln.Iot.Business.csproj","outputPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["netstandard2.1"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","projectReferences":{"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj":{"projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj"},"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj":{"projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj"},"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj":{"projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj"},"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj":{"projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj"},"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj":{"projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"NETStandard.Library":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/6.0.417/RuntimeIdentifierGraph.json"}}
\ No newline at end of file
diff --git a/Sln.Iot.Business/obj/rider.project.model.nuget.info b/Sln.Iot.Business/obj/rider.project.model.nuget.info
index 4a5f357..30fb9c1 100644
--- a/Sln.Iot.Business/obj/rider.project.model.nuget.info
+++ b/Sln.Iot.Business/obj/rider.project.model.nuget.info
@@ -1 +1 @@
-17443613498697419
\ No newline at end of file
+17467833632525836
\ No newline at end of file
diff --git a/Sln.Iot.Business/obj/rider.project.restore.info b/Sln.Iot.Business/obj/rider.project.restore.info
index 4a5f357..30fb9c1 100644
--- a/Sln.Iot.Business/obj/rider.project.restore.info
+++ b/Sln.Iot.Business/obj/rider.project.restore.info
@@ -1 +1 @@
-17443613498697419
\ No newline at end of file
+17467833632525836
\ No newline at end of file
diff --git a/Sln.Iot.Common/bin/Debug/netstandard2.1/Sln.Iot.Common.dll b/Sln.Iot.Common/bin/Debug/netstandard2.1/Sln.Iot.Common.dll
index 52ca13d..0ca10d5 100644
Binary files a/Sln.Iot.Common/bin/Debug/netstandard2.1/Sln.Iot.Common.dll and b/Sln.Iot.Common/bin/Debug/netstandard2.1/Sln.Iot.Common.dll differ
diff --git a/Sln.Iot.Common/bin/Debug/netstandard2.1/Sln.Iot.Common.pdb b/Sln.Iot.Common/bin/Debug/netstandard2.1/Sln.Iot.Common.pdb
index fa9c277..cf6f3fa 100644
Binary files a/Sln.Iot.Common/bin/Debug/netstandard2.1/Sln.Iot.Common.pdb and b/Sln.Iot.Common/bin/Debug/netstandard2.1/Sln.Iot.Common.pdb differ
diff --git a/Sln.Iot.Common/obj/Debug/netstandard2.1/Sln.Iot.Common.GeneratedMSBuildEditorConfig.editorconfig b/Sln.Iot.Common/obj/Debug/netstandard2.1/Sln.Iot.Common.GeneratedMSBuildEditorConfig.editorconfig
index 67ba37d..df78ca3 100644
--- a/Sln.Iot.Common/obj/Debug/netstandard2.1/Sln.Iot.Common.GeneratedMSBuildEditorConfig.editorconfig
+++ b/Sln.Iot.Common/obj/Debug/netstandard2.1/Sln.Iot.Common.GeneratedMSBuildEditorConfig.editorconfig
@@ -1,3 +1,3 @@
is_global = true
build_property.RootNamespace = Sln.Iot.Common
-build_property.ProjectDir = /Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Common/
+build_property.ProjectDir = /Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/
diff --git a/Sln.Iot.Common/obj/Debug/netstandard2.1/Sln.Iot.Common.assets.cache b/Sln.Iot.Common/obj/Debug/netstandard2.1/Sln.Iot.Common.assets.cache
index 02776b6..e9199d7 100644
Binary files a/Sln.Iot.Common/obj/Debug/netstandard2.1/Sln.Iot.Common.assets.cache and b/Sln.Iot.Common/obj/Debug/netstandard2.1/Sln.Iot.Common.assets.cache differ
diff --git a/Sln.Iot.Common/obj/Debug/netstandard2.1/Sln.Iot.Common.csproj.FileListAbsolute.txt b/Sln.Iot.Common/obj/Debug/netstandard2.1/Sln.Iot.Common.csproj.FileListAbsolute.txt
index 451fa8c..2270355 100644
--- a/Sln.Iot.Common/obj/Debug/netstandard2.1/Sln.Iot.Common.csproj.FileListAbsolute.txt
+++ b/Sln.Iot.Common/obj/Debug/netstandard2.1/Sln.Iot.Common.csproj.FileListAbsolute.txt
@@ -8,3 +8,13 @@
/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Common/obj/Debug/netstandard2.1/Sln.Iot.Common.csproj.CoreCompileInputs.cache
/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Common/obj/Debug/netstandard2.1/Sln.Iot.Common.dll
/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Common/obj/Debug/netstandard2.1/Sln.Iot.Common.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/bin/Debug/netstandard2.1/Sln.Iot.Common.deps.json
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/bin/Debug/netstandard2.1/Sln.Iot.Common.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/bin/Debug/netstandard2.1/Sln.Iot.Common.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/obj/Debug/netstandard2.1/Sln.Iot.Common.csproj.AssemblyReference.cache
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/obj/Debug/netstandard2.1/Sln.Iot.Common.GeneratedMSBuildEditorConfig.editorconfig
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/obj/Debug/netstandard2.1/Sln.Iot.Common.AssemblyInfoInputs.cache
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/obj/Debug/netstandard2.1/Sln.Iot.Common.AssemblyInfo.cs
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/obj/Debug/netstandard2.1/Sln.Iot.Common.csproj.CoreCompileInputs.cache
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/obj/Debug/netstandard2.1/Sln.Iot.Common.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/obj/Debug/netstandard2.1/Sln.Iot.Common.pdb
diff --git a/Sln.Iot.Common/obj/Debug/netstandard2.1/Sln.Iot.Common.dll b/Sln.Iot.Common/obj/Debug/netstandard2.1/Sln.Iot.Common.dll
index 52ca13d..0ca10d5 100644
Binary files a/Sln.Iot.Common/obj/Debug/netstandard2.1/Sln.Iot.Common.dll and b/Sln.Iot.Common/obj/Debug/netstandard2.1/Sln.Iot.Common.dll differ
diff --git a/Sln.Iot.Common/obj/Debug/netstandard2.1/Sln.Iot.Common.pdb b/Sln.Iot.Common/obj/Debug/netstandard2.1/Sln.Iot.Common.pdb
index fa9c277..cf6f3fa 100644
Binary files a/Sln.Iot.Common/obj/Debug/netstandard2.1/Sln.Iot.Common.pdb and b/Sln.Iot.Common/obj/Debug/netstandard2.1/Sln.Iot.Common.pdb differ
diff --git a/Sln.Iot.Common/obj/Sln.Iot.Common.csproj.nuget.dgspec.json b/Sln.Iot.Common/obj/Sln.Iot.Common.csproj.nuget.dgspec.json
index c08e3f2..84ccadc 100644
--- a/Sln.Iot.Common/obj/Sln.Iot.Common.csproj.nuget.dgspec.json
+++ b/Sln.Iot.Common/obj/Sln.Iot.Common.csproj.nuget.dgspec.json
@@ -1,17 +1,17 @@
{
"format": 1,
"restore": {
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj": {}
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj": {}
},
"projects": {
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj": {
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj",
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj",
"projectName": "Sln.Iot.Common",
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj",
"packagesPath": "/Users/wenxiansheng/.nuget/packages/",
- "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Common/obj/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
diff --git a/Sln.Iot.Common/obj/project.assets.json b/Sln.Iot.Common/obj/project.assets.json
index 2c0d912..521cbd8 100644
--- a/Sln.Iot.Common/obj/project.assets.json
+++ b/Sln.Iot.Common/obj/project.assets.json
@@ -69,11 +69,11 @@
"project": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj",
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj",
"projectName": "Sln.Iot.Common",
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj",
"packagesPath": "/Users/wenxiansheng/.nuget/packages/",
- "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Common/obj/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
diff --git a/Sln.Iot.Common/obj/project.nuget.cache b/Sln.Iot.Common/obj/project.nuget.cache
index 01a2d24..bc58926 100644
--- a/Sln.Iot.Common/obj/project.nuget.cache
+++ b/Sln.Iot.Common/obj/project.nuget.cache
@@ -1,8 +1,8 @@
{
"version": 2,
- "dgSpecHash": "YVLj3gBAa5E=",
+ "dgSpecHash": "sb6VfHAQjBs=",
"success": true,
- "projectFilePath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj",
+ "projectFilePath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj",
"expectedPackageFiles": [
"/Users/wenxiansheng/.nuget/packages/system.drawing.common/6.0.0/system.drawing.common.6.0.0.nupkg.sha512"
],
diff --git a/Sln.Iot.Common/obj/project.packagespec.json b/Sln.Iot.Common/obj/project.packagespec.json
index 332fedc..5c416e1 100644
--- a/Sln.Iot.Common/obj/project.packagespec.json
+++ b/Sln.Iot.Common/obj/project.packagespec.json
@@ -1 +1 @@
-"restore":{"projectUniqueName":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj","projectName":"Sln.Iot.Common","projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj","outputPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Common/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["netstandard2.1"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","dependencies":{"System.Drawing.Common":{"target":"Package","version":"[6.0.0, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"NETStandard.Library":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/6.0.417/RuntimeIdentifierGraph.json"}}
\ No newline at end of file
+"restore":{"projectUniqueName":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj","projectName":"Sln.Iot.Common","projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj","outputPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["netstandard2.1"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","dependencies":{"System.Drawing.Common":{"target":"Package","version":"[6.0.0, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"NETStandard.Library":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/6.0.417/RuntimeIdentifierGraph.json"}}
\ No newline at end of file
diff --git a/Sln.Iot.Common/obj/rider.project.model.nuget.info b/Sln.Iot.Common/obj/rider.project.model.nuget.info
index 0c33f4f..04c255f 100644
--- a/Sln.Iot.Common/obj/rider.project.model.nuget.info
+++ b/Sln.Iot.Common/obj/rider.project.model.nuget.info
@@ -1 +1 @@
-17443568731629247
\ No newline at end of file
+17467833632431676
\ No newline at end of file
diff --git a/Sln.Iot.Common/obj/rider.project.restore.info b/Sln.Iot.Common/obj/rider.project.restore.info
index 0c33f4f..04c255f 100644
--- a/Sln.Iot.Common/obj/rider.project.restore.info
+++ b/Sln.Iot.Common/obj/rider.project.restore.info
@@ -1 +1 @@
-17443568731629247
\ No newline at end of file
+17467833632431676
\ No newline at end of file
diff --git a/Sln.Iot.Config/bin/Debug/netstandard2.1/Sln.Iot.Config.dll b/Sln.Iot.Config/bin/Debug/netstandard2.1/Sln.Iot.Config.dll
index e0a83b7..b1b475d 100644
Binary files a/Sln.Iot.Config/bin/Debug/netstandard2.1/Sln.Iot.Config.dll and b/Sln.Iot.Config/bin/Debug/netstandard2.1/Sln.Iot.Config.dll differ
diff --git a/Sln.Iot.Config/bin/Debug/netstandard2.1/Sln.Iot.Config.pdb b/Sln.Iot.Config/bin/Debug/netstandard2.1/Sln.Iot.Config.pdb
index d729b57..070b834 100644
Binary files a/Sln.Iot.Config/bin/Debug/netstandard2.1/Sln.Iot.Config.pdb and b/Sln.Iot.Config/bin/Debug/netstandard2.1/Sln.Iot.Config.pdb differ
diff --git a/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.GeneratedMSBuildEditorConfig.editorconfig b/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.GeneratedMSBuildEditorConfig.editorconfig
index a821543..06783f6 100644
--- a/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.GeneratedMSBuildEditorConfig.editorconfig
+++ b/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.GeneratedMSBuildEditorConfig.editorconfig
@@ -1,3 +1,3 @@
is_global = true
build_property.RootNamespace = Sln.Iot.Config
-build_property.ProjectDir = /Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/
+build_property.ProjectDir = /Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/
diff --git a/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.assets.cache b/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.assets.cache
index ffc08bc..5e53c1b 100644
Binary files a/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.assets.cache and b/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.assets.cache differ
diff --git a/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.csproj.FileListAbsolute.txt b/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.csproj.FileListAbsolute.txt
index f67292b..281b4f1 100644
--- a/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.csproj.FileListAbsolute.txt
+++ b/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.csproj.FileListAbsolute.txt
@@ -1,20 +1,30 @@
-/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/bin/Debug/netstandard2.1/Sln.Iot.Config.deps.json
-/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/bin/Debug/netstandard2.1/Sln.Iot.Config.dll
-/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/bin/Debug/netstandard2.1/Sln.Iot.Config.pdb
-/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.csproj.AssemblyReference.cache
-/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.GeneratedMSBuildEditorConfig.editorconfig
-/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.AssemblyInfoInputs.cache
-/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.AssemblyInfo.cs
-/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.csproj.CoreCompileInputs.cache
-/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.dll
-/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.pdb
-\\Mac\Home\Public\WorkSpace\Mesnac\项目资料\IOT物联网数据采集\Sln.Iot\Sln.Iot.Config\bin\Debug\netstandard2.1\Sln.Iot.Config.deps.json
-\\Mac\Home\Public\WorkSpace\Mesnac\项目资料\IOT物联网数据采集\Sln.Iot\Sln.Iot.Config\bin\Debug\netstandard2.1\Sln.Iot.Config.dll
-\\Mac\Home\Public\WorkSpace\Mesnac\项目资料\IOT物联网数据采集\Sln.Iot\Sln.Iot.Config\bin\Debug\netstandard2.1\Sln.Iot.Config.pdb
-\\Mac\Home\Public\WorkSpace\Mesnac\项目资料\IOT物联网数据采集\Sln.Iot\Sln.Iot.Config\obj\Debug\netstandard2.1\Sln.Iot.Config.csproj.AssemblyReference.cache
-\\Mac\Home\Public\WorkSpace\Mesnac\项目资料\IOT物联网数据采集\Sln.Iot\Sln.Iot.Config\obj\Debug\netstandard2.1\Sln.Iot.Config.GeneratedMSBuildEditorConfig.editorconfig
-\\Mac\Home\Public\WorkSpace\Mesnac\项目资料\IOT物联网数据采集\Sln.Iot\Sln.Iot.Config\obj\Debug\netstandard2.1\Sln.Iot.Config.AssemblyInfoInputs.cache
-\\Mac\Home\Public\WorkSpace\Mesnac\项目资料\IOT物联网数据采集\Sln.Iot\Sln.Iot.Config\obj\Debug\netstandard2.1\Sln.Iot.Config.AssemblyInfo.cs
-\\Mac\Home\Public\WorkSpace\Mesnac\项目资料\IOT物联网数据采集\Sln.Iot\Sln.Iot.Config\obj\Debug\netstandard2.1\Sln.Iot.Config.csproj.CoreCompileInputs.cache
-\\Mac\Home\Public\WorkSpace\Mesnac\项目资料\IOT物联网数据采集\Sln.Iot\Sln.Iot.Config\obj\Debug\netstandard2.1\Sln.Iot.Config.dll
-\\Mac\Home\Public\WorkSpace\Mesnac\项目资料\IOT物联网数据采集\Sln.Iot\Sln.Iot.Config\obj\Debug\netstandard2.1\Sln.Iot.Config.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/bin/Debug/netstandard2.1/Sln.Iot.Config.deps.json
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/bin/Debug/netstandard2.1/Sln.Iot.Config.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/bin/Debug/netstandard2.1/Sln.Iot.Config.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.csproj.AssemblyReference.cache
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.GeneratedMSBuildEditorConfig.editorconfig
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.AssemblyInfoInputs.cache
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.AssemblyInfo.cs
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.csproj.CoreCompileInputs.cache
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.pdb
+//Mac/Home/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/bin/Debug/netstandard2.1/Sln.Iot.Config.deps.json
+//Mac/Home/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/bin/Debug/netstandard2.1/Sln.Iot.Config.dll
+//Mac/Home/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/bin/Debug/netstandard2.1/Sln.Iot.Config.pdb
+//Mac/Home/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.csproj.AssemblyReference.cache
+//Mac/Home/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.GeneratedMSBuildEditorConfig.editorconfig
+//Mac/Home/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.AssemblyInfoInputs.cache
+//Mac/Home/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.AssemblyInfo.cs
+//Mac/Home/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.csproj.CoreCompileInputs.cache
+//Mac/Home/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.dll
+//Mac/Home/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/bin/Debug/netstandard2.1/Sln.Iot.Config.deps.json
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/bin/Debug/netstandard2.1/Sln.Iot.Config.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/bin/Debug/netstandard2.1/Sln.Iot.Config.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.csproj.AssemblyReference.cache
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.GeneratedMSBuildEditorConfig.editorconfig
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.AssemblyInfoInputs.cache
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.AssemblyInfo.cs
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.csproj.CoreCompileInputs.cache
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.pdb
diff --git a/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.dll b/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.dll
index e0a83b7..b1b475d 100644
Binary files a/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.dll and b/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.dll differ
diff --git a/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.pdb b/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.pdb
index d729b57..070b834 100644
Binary files a/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.pdb and b/Sln.Iot.Config/obj/Debug/netstandard2.1/Sln.Iot.Config.pdb differ
diff --git a/Sln.Iot.Config/obj/Sln.Iot.Config.csproj.nuget.dgspec.json b/Sln.Iot.Config/obj/Sln.Iot.Config.csproj.nuget.dgspec.json
index aeb2271..19b19a0 100644
--- a/Sln.Iot.Config/obj/Sln.Iot.Config.csproj.nuget.dgspec.json
+++ b/Sln.Iot.Config/obj/Sln.Iot.Config.csproj.nuget.dgspec.json
@@ -1,17 +1,17 @@
{
"format": 1,
"restore": {
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj": {}
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj": {}
},
"projects": {
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj": {
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj",
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj",
"projectName": "Sln.Iot.Config",
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj",
"packagesPath": "/Users/wenxiansheng/.nuget/packages/",
- "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/obj/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
diff --git a/Sln.Iot.Config/obj/project.assets.json b/Sln.Iot.Config/obj/project.assets.json
index 4f0be38..b8aa033 100644
--- a/Sln.Iot.Config/obj/project.assets.json
+++ b/Sln.Iot.Config/obj/project.assets.json
@@ -453,11 +453,11 @@
"project": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj",
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj",
"projectName": "Sln.Iot.Config",
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj",
"packagesPath": "/Users/wenxiansheng/.nuget/packages/",
- "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/obj/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
diff --git a/Sln.Iot.Config/obj/project.nuget.cache b/Sln.Iot.Config/obj/project.nuget.cache
index c75e856..4a3daf8 100644
--- a/Sln.Iot.Config/obj/project.nuget.cache
+++ b/Sln.Iot.Config/obj/project.nuget.cache
@@ -1,8 +1,8 @@
{
"version": 2,
- "dgSpecHash": "nkJAnpZKV1g=",
+ "dgSpecHash": "MgndAytf8Hk=",
"success": true,
- "projectFilePath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj",
+ "projectFilePath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj",
"expectedPackageFiles": [
"/Users/wenxiansheng/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/9.0.4/microsoft.extensions.dependencyinjection.abstractions.9.0.4.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/microsoft.extensions.options/9.0.4/microsoft.extensions.options.9.0.4.nupkg.sha512",
diff --git a/Sln.Iot.Config/obj/project.packagespec.json b/Sln.Iot.Config/obj/project.packagespec.json
index 4ba8707..d2b1e99 100644
--- a/Sln.Iot.Config/obj/project.packagespec.json
+++ b/Sln.Iot.Config/obj/project.packagespec.json
@@ -1 +1 @@
-"restore":{"projectUniqueName":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj","projectName":"Sln.Iot.Config","projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj","outputPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["netstandard2.1"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","dependencies":{"Microsoft.Extensions.Options":{"target":"Package","version":"[9.0.4, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"NETStandard.Library":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/6.0.417/RuntimeIdentifierGraph.json"}}
\ No newline at end of file
+"restore":{"projectUniqueName":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj","projectName":"Sln.Iot.Config","projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj","outputPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["netstandard2.1"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","dependencies":{"Microsoft.Extensions.Options":{"target":"Package","version":"[9.0.4, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"NETStandard.Library":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/6.0.417/RuntimeIdentifierGraph.json"}}
\ No newline at end of file
diff --git a/Sln.Iot.Config/obj/rider.project.model.nuget.info b/Sln.Iot.Config/obj/rider.project.model.nuget.info
index e7194a6..e636692 100644
--- a/Sln.Iot.Config/obj/rider.project.model.nuget.info
+++ b/Sln.Iot.Config/obj/rider.project.model.nuget.info
@@ -1 +1 @@
-17443568731644395
\ No newline at end of file
+17467833632428935
\ No newline at end of file
diff --git a/Sln.Iot.Config/obj/rider.project.restore.info b/Sln.Iot.Config/obj/rider.project.restore.info
index e7194a6..e636692 100644
--- a/Sln.Iot.Config/obj/rider.project.restore.info
+++ b/Sln.Iot.Config/obj/rider.project.restore.info
@@ -1 +1 @@
-17443568731644395
\ No newline at end of file
+17467833632428935
\ No newline at end of file
diff --git a/Sln.Iot.Extensions/bin/Debug/netstandard2.1/Sln.Iot.Extensions.dll b/Sln.Iot.Extensions/bin/Debug/netstandard2.1/Sln.Iot.Extensions.dll
index b53d7b5..03621b2 100644
Binary files a/Sln.Iot.Extensions/bin/Debug/netstandard2.1/Sln.Iot.Extensions.dll and b/Sln.Iot.Extensions/bin/Debug/netstandard2.1/Sln.Iot.Extensions.dll differ
diff --git a/Sln.Iot.Extensions/bin/Debug/netstandard2.1/Sln.Iot.Extensions.pdb b/Sln.Iot.Extensions/bin/Debug/netstandard2.1/Sln.Iot.Extensions.pdb
index 5b66f01..22dd696 100644
Binary files a/Sln.Iot.Extensions/bin/Debug/netstandard2.1/Sln.Iot.Extensions.pdb and b/Sln.Iot.Extensions/bin/Debug/netstandard2.1/Sln.Iot.Extensions.pdb differ
diff --git a/Sln.Iot.Extensions/obj/Debug/netstandard2.1/Sln.Iot.Extensions.GeneratedMSBuildEditorConfig.editorconfig b/Sln.Iot.Extensions/obj/Debug/netstandard2.1/Sln.Iot.Extensions.GeneratedMSBuildEditorConfig.editorconfig
index 6442e0d..b45411b 100644
--- a/Sln.Iot.Extensions/obj/Debug/netstandard2.1/Sln.Iot.Extensions.GeneratedMSBuildEditorConfig.editorconfig
+++ b/Sln.Iot.Extensions/obj/Debug/netstandard2.1/Sln.Iot.Extensions.GeneratedMSBuildEditorConfig.editorconfig
@@ -1,3 +1,3 @@
is_global = true
build_property.RootNamespace = Sln.Iot.Extensions
-build_property.ProjectDir = /Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Extensions/
+build_property.ProjectDir = /Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Extensions/
diff --git a/Sln.Iot.Extensions/obj/Debug/netstandard2.1/Sln.Iot.Extensions.assets.cache b/Sln.Iot.Extensions/obj/Debug/netstandard2.1/Sln.Iot.Extensions.assets.cache
index b735bbb..6718758 100644
Binary files a/Sln.Iot.Extensions/obj/Debug/netstandard2.1/Sln.Iot.Extensions.assets.cache and b/Sln.Iot.Extensions/obj/Debug/netstandard2.1/Sln.Iot.Extensions.assets.cache differ
diff --git a/Sln.Iot.Extensions/obj/Debug/netstandard2.1/Sln.Iot.Extensions.csproj.FileListAbsolute.txt b/Sln.Iot.Extensions/obj/Debug/netstandard2.1/Sln.Iot.Extensions.csproj.FileListAbsolute.txt
index fa307dc..51221da 100644
--- a/Sln.Iot.Extensions/obj/Debug/netstandard2.1/Sln.Iot.Extensions.csproj.FileListAbsolute.txt
+++ b/Sln.Iot.Extensions/obj/Debug/netstandard2.1/Sln.Iot.Extensions.csproj.FileListAbsolute.txt
@@ -17,3 +17,13 @@
//Mac/Home/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Extensions/obj/Debug/netstandard2.1/Sln.Iot.Extensions.dll
//Mac/Home/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Extensions/obj/Debug/netstandard2.1/Sln.Iot.Extensions.pdb
/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Extensions/obj/Debug/netstandard2.1/Sln.Iot.Extensions.csproj.AssemblyReference.cache
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Extensions/bin/Debug/netstandard2.1/Sln.Iot.Extensions.deps.json
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Extensions/bin/Debug/netstandard2.1/Sln.Iot.Extensions.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Extensions/bin/Debug/netstandard2.1/Sln.Iot.Extensions.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Extensions/obj/Debug/netstandard2.1/Sln.Iot.Extensions.csproj.AssemblyReference.cache
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Extensions/obj/Debug/netstandard2.1/Sln.Iot.Extensions.GeneratedMSBuildEditorConfig.editorconfig
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Extensions/obj/Debug/netstandard2.1/Sln.Iot.Extensions.AssemblyInfoInputs.cache
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Extensions/obj/Debug/netstandard2.1/Sln.Iot.Extensions.AssemblyInfo.cs
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Extensions/obj/Debug/netstandard2.1/Sln.Iot.Extensions.csproj.CoreCompileInputs.cache
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Extensions/obj/Debug/netstandard2.1/Sln.Iot.Extensions.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Extensions/obj/Debug/netstandard2.1/Sln.Iot.Extensions.pdb
diff --git a/Sln.Iot.Extensions/obj/Debug/netstandard2.1/Sln.Iot.Extensions.dll b/Sln.Iot.Extensions/obj/Debug/netstandard2.1/Sln.Iot.Extensions.dll
index b53d7b5..03621b2 100644
Binary files a/Sln.Iot.Extensions/obj/Debug/netstandard2.1/Sln.Iot.Extensions.dll and b/Sln.Iot.Extensions/obj/Debug/netstandard2.1/Sln.Iot.Extensions.dll differ
diff --git a/Sln.Iot.Extensions/obj/Debug/netstandard2.1/Sln.Iot.Extensions.pdb b/Sln.Iot.Extensions/obj/Debug/netstandard2.1/Sln.Iot.Extensions.pdb
index 5b66f01..22dd696 100644
Binary files a/Sln.Iot.Extensions/obj/Debug/netstandard2.1/Sln.Iot.Extensions.pdb and b/Sln.Iot.Extensions/obj/Debug/netstandard2.1/Sln.Iot.Extensions.pdb differ
diff --git a/Sln.Iot.Extensions/obj/Sln.Iot.Extensions.csproj.nuget.dgspec.json b/Sln.Iot.Extensions/obj/Sln.Iot.Extensions.csproj.nuget.dgspec.json
index 6ba8744..8944839 100644
--- a/Sln.Iot.Extensions/obj/Sln.Iot.Extensions.csproj.nuget.dgspec.json
+++ b/Sln.Iot.Extensions/obj/Sln.Iot.Extensions.csproj.nuget.dgspec.json
@@ -1,17 +1,17 @@
{
"format": 1,
"restore": {
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Extensions/Sln.Iot.Extensions.csproj": {}
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Extensions/Sln.Iot.Extensions.csproj": {}
},
"projects": {
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Extensions/Sln.Iot.Extensions.csproj": {
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Extensions/Sln.Iot.Extensions.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Extensions/Sln.Iot.Extensions.csproj",
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Extensions/Sln.Iot.Extensions.csproj",
"projectName": "Sln.Iot.Extensions",
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Extensions/Sln.Iot.Extensions.csproj",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Extensions/Sln.Iot.Extensions.csproj",
"packagesPath": "/Users/wenxiansheng/.nuget/packages/",
- "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Extensions/obj/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Extensions/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
diff --git a/Sln.Iot.Extensions/obj/project.assets.json b/Sln.Iot.Extensions/obj/project.assets.json
index 5190640..c211f4b 100644
--- a/Sln.Iot.Extensions/obj/project.assets.json
+++ b/Sln.Iot.Extensions/obj/project.assets.json
@@ -13,11 +13,11 @@
"project": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Extensions/Sln.Iot.Extensions.csproj",
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Extensions/Sln.Iot.Extensions.csproj",
"projectName": "Sln.Iot.Extensions",
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Extensions/Sln.Iot.Extensions.csproj",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Extensions/Sln.Iot.Extensions.csproj",
"packagesPath": "/Users/wenxiansheng/.nuget/packages/",
- "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Extensions/obj/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Extensions/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
diff --git a/Sln.Iot.Extensions/obj/project.nuget.cache b/Sln.Iot.Extensions/obj/project.nuget.cache
index ae8028b..950d6c1 100644
--- a/Sln.Iot.Extensions/obj/project.nuget.cache
+++ b/Sln.Iot.Extensions/obj/project.nuget.cache
@@ -1,8 +1,8 @@
{
"version": 2,
- "dgSpecHash": "Ma49yYzODas=",
+ "dgSpecHash": "ZSrW3Z6+4/0=",
"success": true,
- "projectFilePath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Extensions/Sln.Iot.Extensions.csproj",
+ "projectFilePath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Extensions/Sln.Iot.Extensions.csproj",
"expectedPackageFiles": [],
"logs": []
}
\ No newline at end of file
diff --git a/Sln.Iot.Extensions/obj/project.packagespec.json b/Sln.Iot.Extensions/obj/project.packagespec.json
index 3748d34..93b4789 100644
--- a/Sln.Iot.Extensions/obj/project.packagespec.json
+++ b/Sln.Iot.Extensions/obj/project.packagespec.json
@@ -1 +1 @@
-"restore":{"projectUniqueName":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Extensions/Sln.Iot.Extensions.csproj","projectName":"Sln.Iot.Extensions","projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Extensions/Sln.Iot.Extensions.csproj","outputPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Extensions/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["netstandard2.1"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"NETStandard.Library":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/6.0.417/RuntimeIdentifierGraph.json"}}
\ No newline at end of file
+"restore":{"projectUniqueName":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Extensions/Sln.Iot.Extensions.csproj","projectName":"Sln.Iot.Extensions","projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Extensions/Sln.Iot.Extensions.csproj","outputPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Extensions/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["netstandard2.1"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"NETStandard.Library":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/6.0.417/RuntimeIdentifierGraph.json"}}
\ No newline at end of file
diff --git a/Sln.Iot.Extensions/obj/rider.project.model.nuget.info b/Sln.Iot.Extensions/obj/rider.project.model.nuget.info
index 63f2f8a..6c25fdd 100644
--- a/Sln.Iot.Extensions/obj/rider.project.model.nuget.info
+++ b/Sln.Iot.Extensions/obj/rider.project.model.nuget.info
@@ -1 +1 @@
-17443568721769156
\ No newline at end of file
+17467833632385615
\ No newline at end of file
diff --git a/Sln.Iot.Extensions/obj/rider.project.restore.info b/Sln.Iot.Extensions/obj/rider.project.restore.info
index 63f2f8a..6c25fdd 100644
--- a/Sln.Iot.Extensions/obj/rider.project.restore.info
+++ b/Sln.Iot.Extensions/obj/rider.project.restore.info
@@ -1 +1 @@
-17443568721769156
\ No newline at end of file
+17467833632385615
\ No newline at end of file
diff --git a/Sln.Iot.Model/bin/Debug/netstandard2.1/Sln.Iot.Model.dll b/Sln.Iot.Model/bin/Debug/netstandard2.1/Sln.Iot.Model.dll
index 6c0d761..3d2e909 100644
Binary files a/Sln.Iot.Model/bin/Debug/netstandard2.1/Sln.Iot.Model.dll and b/Sln.Iot.Model/bin/Debug/netstandard2.1/Sln.Iot.Model.dll differ
diff --git a/Sln.Iot.Model/bin/Debug/netstandard2.1/Sln.Iot.Model.pdb b/Sln.Iot.Model/bin/Debug/netstandard2.1/Sln.Iot.Model.pdb
index b442f76..bac0fdb 100644
Binary files a/Sln.Iot.Model/bin/Debug/netstandard2.1/Sln.Iot.Model.pdb and b/Sln.Iot.Model/bin/Debug/netstandard2.1/Sln.Iot.Model.pdb differ
diff --git a/Sln.Iot.Model/dto/ApiResInfo.cs b/Sln.Iot.Model/dto/ApiResInfo.cs
new file mode 100644
index 0000000..818b8bb
--- /dev/null
+++ b/Sln.Iot.Model/dto/ApiResInfo.cs
@@ -0,0 +1,92 @@
+#region << 版 本 注 释 >>
+
+/*--------------------------------------------------------------------
+* 版权所有 (c) 2025 WenJY 保留所有权利。
+* CLR版本:4.0.30319.42000
+* 机器名称:Mr.Wen's MacBook Pro
+* 命名空间:Sln.Iot.Model.dto
+* 唯一标识:A23DD86E-3AEA-42E2-98A4-97FD9BCD19ED
+*
+* 创建者:WenJY
+* 电子邮箱:
+* 创建时间:2025-05-09 15:39:12
+* 版本:V1.0.0
+* 描述:
+*
+*--------------------------------------------------------------------
+* 修改人:
+* 时间:
+* 修改说明:
+*
+* 版本:V1.0.0
+*--------------------------------------------------------------------*/
+
+#endregion << 版 本 注 释 >>
+
+namespace Sln.Iot.Model.dto
+{
+ ///
+ /// API结果
+ ///
+ public class ApiResInfo
+ {
+ ///
+ /// 状态码:200-OK;500-失败/异常
+ ///
+ public int code { get; set; }
+
+ ///
+ /// 是否成功:T-成功;F-失败
+ ///
+ public bool isSuc { get; set; }
+
+ ///
+ /// 返回信息
+ ///
+ public string msg { get; set; }
+
+ ///
+ /// 设备指令
+ ///
+ public byte[] buffer { get; set; }
+
+ ///
+ /// 设备数据封装
+ ///
+ public object data { get; set; }
+
+ ///
+ /// 成功
+ ///
+ ///
+ ///
+ ///
+ public static ApiResInfo Success(string msg,object data = null)
+ {
+ return new ApiResInfo()
+ {
+ code = 200,
+ isSuc = true,
+ msg = msg,
+ data = data
+ };
+ }
+
+ ///
+ /// 失败
+ ///
+ ///
+ ///
+ ///
+ public static ApiResInfo Fail(string msg,object data = null)
+ {
+ return new ApiResInfo()
+ {
+ code = 500,
+ isSuc = false,
+ msg = msg,
+ data = data
+ };
+ }
+ }
+}
\ No newline at end of file
diff --git a/Sln.Iot.Model/dto/MessagePack.cs b/Sln.Iot.Model/dto/MessagePack.cs
index c01239c..c52d711 100644
--- a/Sln.Iot.Model/dto/MessagePack.cs
+++ b/Sln.Iot.Model/dto/MessagePack.cs
@@ -33,6 +33,7 @@ namespace Sln.Iot.Model.dto
public byte[] m_Msta = new byte[2]; //命令序列号
public byte m_StartFlag; //起始符
public byte m_MessageType; //控制码
+ //public byte[] body = new byte[0]; //内容
public byte[] m_PackLen = new byte[2]; //数据长度
public byte m_Verify;
public byte m_EndChar = 0x16; //尾盘
diff --git a/Sln.Iot.Model/obj/Debug/netstandard2.1/Sln.Iot.Model.GeneratedMSBuildEditorConfig.editorconfig b/Sln.Iot.Model/obj/Debug/netstandard2.1/Sln.Iot.Model.GeneratedMSBuildEditorConfig.editorconfig
index bab1abc..94588a8 100644
--- a/Sln.Iot.Model/obj/Debug/netstandard2.1/Sln.Iot.Model.GeneratedMSBuildEditorConfig.editorconfig
+++ b/Sln.Iot.Model/obj/Debug/netstandard2.1/Sln.Iot.Model.GeneratedMSBuildEditorConfig.editorconfig
@@ -1,3 +1,3 @@
is_global = true
build_property.RootNamespace = Sln.Iot.Model
-build_property.ProjectDir = /Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/
+build_property.ProjectDir = /Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/
diff --git a/Sln.Iot.Model/obj/Debug/netstandard2.1/Sln.Iot.Model.assets.cache b/Sln.Iot.Model/obj/Debug/netstandard2.1/Sln.Iot.Model.assets.cache
index 4b765a4..8041bca 100644
Binary files a/Sln.Iot.Model/obj/Debug/netstandard2.1/Sln.Iot.Model.assets.cache and b/Sln.Iot.Model/obj/Debug/netstandard2.1/Sln.Iot.Model.assets.cache differ
diff --git a/Sln.Iot.Model/obj/Debug/netstandard2.1/Sln.Iot.Model.csproj.CoreCompileInputs.cache b/Sln.Iot.Model/obj/Debug/netstandard2.1/Sln.Iot.Model.csproj.CoreCompileInputs.cache
index 908ed39..f0db173 100644
--- a/Sln.Iot.Model/obj/Debug/netstandard2.1/Sln.Iot.Model.csproj.CoreCompileInputs.cache
+++ b/Sln.Iot.Model/obj/Debug/netstandard2.1/Sln.Iot.Model.csproj.CoreCompileInputs.cache
@@ -1 +1 @@
-e41f0b4da7d9aefdefac183960b50b4125c2fd81
+e0d4ce9551bcb776d90e1f41c3b7f0bb972e7184
diff --git a/Sln.Iot.Model/obj/Debug/netstandard2.1/Sln.Iot.Model.csproj.FileListAbsolute.txt b/Sln.Iot.Model/obj/Debug/netstandard2.1/Sln.Iot.Model.csproj.FileListAbsolute.txt
index 0e0036e..890d2df 100644
--- a/Sln.Iot.Model/obj/Debug/netstandard2.1/Sln.Iot.Model.csproj.FileListAbsolute.txt
+++ b/Sln.Iot.Model/obj/Debug/netstandard2.1/Sln.Iot.Model.csproj.FileListAbsolute.txt
@@ -8,3 +8,13 @@
/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/obj/Debug/netstandard2.1/Sln.Iot.Model.csproj.CoreCompileInputs.cache
/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/obj/Debug/netstandard2.1/Sln.Iot.Model.dll
/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/obj/Debug/netstandard2.1/Sln.Iot.Model.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/bin/Debug/netstandard2.1/Sln.Iot.Model.deps.json
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/bin/Debug/netstandard2.1/Sln.Iot.Model.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/bin/Debug/netstandard2.1/Sln.Iot.Model.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/obj/Debug/netstandard2.1/Sln.Iot.Model.csproj.AssemblyReference.cache
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/obj/Debug/netstandard2.1/Sln.Iot.Model.GeneratedMSBuildEditorConfig.editorconfig
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/obj/Debug/netstandard2.1/Sln.Iot.Model.AssemblyInfoInputs.cache
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/obj/Debug/netstandard2.1/Sln.Iot.Model.AssemblyInfo.cs
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/obj/Debug/netstandard2.1/Sln.Iot.Model.csproj.CoreCompileInputs.cache
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/obj/Debug/netstandard2.1/Sln.Iot.Model.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/obj/Debug/netstandard2.1/Sln.Iot.Model.pdb
diff --git a/Sln.Iot.Model/obj/Debug/netstandard2.1/Sln.Iot.Model.dll b/Sln.Iot.Model/obj/Debug/netstandard2.1/Sln.Iot.Model.dll
index 6c0d761..3d2e909 100644
Binary files a/Sln.Iot.Model/obj/Debug/netstandard2.1/Sln.Iot.Model.dll and b/Sln.Iot.Model/obj/Debug/netstandard2.1/Sln.Iot.Model.dll differ
diff --git a/Sln.Iot.Model/obj/Debug/netstandard2.1/Sln.Iot.Model.pdb b/Sln.Iot.Model/obj/Debug/netstandard2.1/Sln.Iot.Model.pdb
index b442f76..bac0fdb 100644
Binary files a/Sln.Iot.Model/obj/Debug/netstandard2.1/Sln.Iot.Model.pdb and b/Sln.Iot.Model/obj/Debug/netstandard2.1/Sln.Iot.Model.pdb differ
diff --git a/Sln.Iot.Model/obj/Sln.Iot.Model.csproj.nuget.dgspec.json b/Sln.Iot.Model/obj/Sln.Iot.Model.csproj.nuget.dgspec.json
index cbec7c8..58e780c 100644
--- a/Sln.Iot.Model/obj/Sln.Iot.Model.csproj.nuget.dgspec.json
+++ b/Sln.Iot.Model/obj/Sln.Iot.Model.csproj.nuget.dgspec.json
@@ -1,17 +1,17 @@
{
"format": 1,
"restore": {
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj": {}
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj": {}
},
"projects": {
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj": {
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj",
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj",
"projectName": "Sln.Iot.Model",
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj",
"packagesPath": "/Users/wenxiansheng/.nuget/packages/",
- "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/obj/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
diff --git a/Sln.Iot.Model/obj/project.assets.json b/Sln.Iot.Model/obj/project.assets.json
index a1fa68f..8c64986 100644
--- a/Sln.Iot.Model/obj/project.assets.json
+++ b/Sln.Iot.Model/obj/project.assets.json
@@ -3958,11 +3958,11 @@
"project": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj",
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj",
"projectName": "Sln.Iot.Model",
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj",
"packagesPath": "/Users/wenxiansheng/.nuget/packages/",
- "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/obj/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
diff --git a/Sln.Iot.Model/obj/project.nuget.cache b/Sln.Iot.Model/obj/project.nuget.cache
index d3db22c..8b53575 100644
--- a/Sln.Iot.Model/obj/project.nuget.cache
+++ b/Sln.Iot.Model/obj/project.nuget.cache
@@ -1,8 +1,8 @@
{
"version": 2,
- "dgSpecHash": "zdSWjiocnoY=",
+ "dgSpecHash": "FeS/4G8Ydx0=",
"success": true,
- "projectFilePath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj",
+ "projectFilePath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj",
"expectedPackageFiles": [
"/Users/wenxiansheng/.nuget/packages/azure.core/1.38.0/azure.core.1.38.0.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/azure.identity/1.11.4/azure.identity.1.11.4.nupkg.sha512",
diff --git a/Sln.Iot.Model/obj/project.packagespec.json b/Sln.Iot.Model/obj/project.packagespec.json
index d1dfa99..6750bd9 100644
--- a/Sln.Iot.Model/obj/project.packagespec.json
+++ b/Sln.Iot.Model/obj/project.packagespec.json
@@ -1 +1 @@
-"restore":{"projectUniqueName":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj","projectName":"Sln.Iot.Model","projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj","outputPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["netstandard2.1"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","dependencies":{"SqlSugarCore":{"target":"Package","version":"[5.1.4.188, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"NETStandard.Library":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/6.0.417/RuntimeIdentifierGraph.json"}}
\ No newline at end of file
+"restore":{"projectUniqueName":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj","projectName":"Sln.Iot.Model","projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj","outputPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["netstandard2.1"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","dependencies":{"SqlSugarCore":{"target":"Package","version":"[5.1.4.188, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"NETStandard.Library":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/6.0.417/RuntimeIdentifierGraph.json"}}
\ No newline at end of file
diff --git a/Sln.Iot.Model/obj/rider.project.model.nuget.info b/Sln.Iot.Model/obj/rider.project.model.nuget.info
index df02efb..c8adad7 100644
--- a/Sln.Iot.Model/obj/rider.project.model.nuget.info
+++ b/Sln.Iot.Model/obj/rider.project.model.nuget.info
@@ -1 +1 @@
-17443568731819382
\ No newline at end of file
+17467833632520599
\ No newline at end of file
diff --git a/Sln.Iot.Model/obj/rider.project.restore.info b/Sln.Iot.Model/obj/rider.project.restore.info
index df02efb..c8adad7 100644
--- a/Sln.Iot.Model/obj/rider.project.restore.info
+++ b/Sln.Iot.Model/obj/rider.project.restore.info
@@ -1 +1 @@
-17443568731819382
\ No newline at end of file
+17467833632520599
\ No newline at end of file
diff --git a/Sln.Iot.Repository/bin/Debug/netstandard2.1/Sln.Iot.Config.dll b/Sln.Iot.Repository/bin/Debug/netstandard2.1/Sln.Iot.Config.dll
index e0a83b7..b1b475d 100644
Binary files a/Sln.Iot.Repository/bin/Debug/netstandard2.1/Sln.Iot.Config.dll and b/Sln.Iot.Repository/bin/Debug/netstandard2.1/Sln.Iot.Config.dll differ
diff --git a/Sln.Iot.Repository/bin/Debug/netstandard2.1/Sln.Iot.Config.pdb b/Sln.Iot.Repository/bin/Debug/netstandard2.1/Sln.Iot.Config.pdb
index d729b57..070b834 100644
Binary files a/Sln.Iot.Repository/bin/Debug/netstandard2.1/Sln.Iot.Config.pdb and b/Sln.Iot.Repository/bin/Debug/netstandard2.1/Sln.Iot.Config.pdb differ
diff --git a/Sln.Iot.Repository/bin/Debug/netstandard2.1/Sln.Iot.Model.dll b/Sln.Iot.Repository/bin/Debug/netstandard2.1/Sln.Iot.Model.dll
index 6c0d761..3d2e909 100644
Binary files a/Sln.Iot.Repository/bin/Debug/netstandard2.1/Sln.Iot.Model.dll and b/Sln.Iot.Repository/bin/Debug/netstandard2.1/Sln.Iot.Model.dll differ
diff --git a/Sln.Iot.Repository/bin/Debug/netstandard2.1/Sln.Iot.Model.pdb b/Sln.Iot.Repository/bin/Debug/netstandard2.1/Sln.Iot.Model.pdb
index b442f76..bac0fdb 100644
Binary files a/Sln.Iot.Repository/bin/Debug/netstandard2.1/Sln.Iot.Model.pdb and b/Sln.Iot.Repository/bin/Debug/netstandard2.1/Sln.Iot.Model.pdb differ
diff --git a/Sln.Iot.Repository/bin/Debug/netstandard2.1/Sln.Iot.Repository.dll b/Sln.Iot.Repository/bin/Debug/netstandard2.1/Sln.Iot.Repository.dll
index df53cd1..be60876 100644
Binary files a/Sln.Iot.Repository/bin/Debug/netstandard2.1/Sln.Iot.Repository.dll and b/Sln.Iot.Repository/bin/Debug/netstandard2.1/Sln.Iot.Repository.dll differ
diff --git a/Sln.Iot.Repository/bin/Debug/netstandard2.1/Sln.Iot.Repository.pdb b/Sln.Iot.Repository/bin/Debug/netstandard2.1/Sln.Iot.Repository.pdb
index e004f32..857b619 100644
Binary files a/Sln.Iot.Repository/bin/Debug/netstandard2.1/Sln.Iot.Repository.pdb and b/Sln.Iot.Repository/bin/Debug/netstandard2.1/Sln.Iot.Repository.pdb differ
diff --git a/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.GeneratedMSBuildEditorConfig.editorconfig b/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.GeneratedMSBuildEditorConfig.editorconfig
index d6fd8e7..bf82733 100644
--- a/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.GeneratedMSBuildEditorConfig.editorconfig
+++ b/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.GeneratedMSBuildEditorConfig.editorconfig
@@ -1,3 +1,3 @@
is_global = true
build_property.RootNamespace = Sln.Iot.Repository
-build_property.ProjectDir = /Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/
+build_property.ProjectDir = /Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/
diff --git a/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.assets.cache b/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.assets.cache
index fff7f1f..682f355 100644
Binary files a/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.assets.cache and b/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.assets.cache differ
diff --git a/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.csproj.AssemblyReference.cache b/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.csproj.AssemblyReference.cache
index 0188c2c..a98cad8 100644
Binary files a/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.csproj.AssemblyReference.cache and b/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.csproj.AssemblyReference.cache differ
diff --git a/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.csproj.CoreCompileInputs.cache b/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.csproj.CoreCompileInputs.cache
index d3ec618..826418d 100644
--- a/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.csproj.CoreCompileInputs.cache
+++ b/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.csproj.CoreCompileInputs.cache
@@ -1 +1 @@
-93cff6037311b0410aec40b449d81c076811b5b7
+ea2626c3e079c404cdc49d7821099424990bbe2c
diff --git a/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.csproj.FileListAbsolute.txt b/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.csproj.FileListAbsolute.txt
index 453fd75..7dbfb12 100644
--- a/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.csproj.FileListAbsolute.txt
+++ b/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.csproj.FileListAbsolute.txt
@@ -13,3 +13,18 @@
/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.pdb
/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/bin/Debug/netstandard2.1/Sln.Iot.Config.dll
/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/bin/Debug/netstandard2.1/Sln.Iot.Config.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/bin/Debug/netstandard2.1/Sln.Iot.Repository.deps.json
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/bin/Debug/netstandard2.1/Sln.Iot.Repository.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/bin/Debug/netstandard2.1/Sln.Iot.Repository.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/bin/Debug/netstandard2.1/Sln.Iot.Config.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/bin/Debug/netstandard2.1/Sln.Iot.Model.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/bin/Debug/netstandard2.1/Sln.Iot.Config.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/bin/Debug/netstandard2.1/Sln.Iot.Model.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.csproj.AssemblyReference.cache
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.GeneratedMSBuildEditorConfig.editorconfig
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.AssemblyInfoInputs.cache
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.AssemblyInfo.cs
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.csproj.CoreCompileInputs.cache
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.csproj.CopyComplete
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.pdb
diff --git a/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.dll b/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.dll
index df53cd1..be60876 100644
Binary files a/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.dll and b/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.dll differ
diff --git a/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.pdb b/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.pdb
index e004f32..857b619 100644
Binary files a/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.pdb and b/Sln.Iot.Repository/obj/Debug/netstandard2.1/Sln.Iot.Repository.pdb differ
diff --git a/Sln.Iot.Repository/obj/Sln.Iot.Repository.csproj.nuget.dgspec.json b/Sln.Iot.Repository/obj/Sln.Iot.Repository.csproj.nuget.dgspec.json
index 62da751..836f9f1 100644
--- a/Sln.Iot.Repository/obj/Sln.Iot.Repository.csproj.nuget.dgspec.json
+++ b/Sln.Iot.Repository/obj/Sln.Iot.Repository.csproj.nuget.dgspec.json
@@ -1,17 +1,17 @@
{
"format": 1,
"restore": {
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj": {}
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj": {}
},
"projects": {
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj": {
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj",
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj",
"projectName": "Sln.Iot.Config",
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj",
"packagesPath": "/Users/wenxiansheng/.nuget/packages/",
- "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/obj/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
@@ -63,14 +63,14 @@
}
}
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj": {
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj",
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj",
"projectName": "Sln.Iot.Model",
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj",
"packagesPath": "/Users/wenxiansheng/.nuget/packages/",
- "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/obj/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
@@ -122,14 +122,14 @@
}
}
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj": {
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj",
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj",
"projectName": "Sln.Iot.Repository",
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj",
"packagesPath": "/Users/wenxiansheng/.nuget/packages/",
- "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/obj/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
@@ -144,11 +144,11 @@
"netstandard2.1": {
"targetAlias": "netstandard2.1",
"projectReferences": {
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj"
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj"
}
}
}
diff --git a/Sln.Iot.Repository/obj/project.assets.json b/Sln.Iot.Repository/obj/project.assets.json
index 1295e2c..70fe739 100644
--- a/Sln.Iot.Repository/obj/project.assets.json
+++ b/Sln.Iot.Repository/obj/project.assets.json
@@ -4252,11 +4252,11 @@
"project": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj",
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj",
"projectName": "Sln.Iot.Repository",
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj",
"packagesPath": "/Users/wenxiansheng/.nuget/packages/",
- "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/obj/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
@@ -4271,11 +4271,11 @@
"netstandard2.1": {
"targetAlias": "netstandard2.1",
"projectReferences": {
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj"
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj"
}
}
}
diff --git a/Sln.Iot.Repository/obj/project.nuget.cache b/Sln.Iot.Repository/obj/project.nuget.cache
index c3ae02f..ff99fa1 100644
--- a/Sln.Iot.Repository/obj/project.nuget.cache
+++ b/Sln.Iot.Repository/obj/project.nuget.cache
@@ -1,8 +1,8 @@
{
"version": 2,
- "dgSpecHash": "tVlq7OvzJ6E=",
+ "dgSpecHash": "wikR0VemDcc=",
"success": true,
- "projectFilePath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj",
+ "projectFilePath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj",
"expectedPackageFiles": [
"/Users/wenxiansheng/.nuget/packages/azure.core/1.38.0/azure.core.1.38.0.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/azure.identity/1.11.4/azure.identity.1.11.4.nupkg.sha512",
diff --git a/Sln.Iot.Repository/obj/project.packagespec.json b/Sln.Iot.Repository/obj/project.packagespec.json
index ad023ca..894ffd3 100644
--- a/Sln.Iot.Repository/obj/project.packagespec.json
+++ b/Sln.Iot.Repository/obj/project.packagespec.json
@@ -1 +1 @@
-"restore":{"projectUniqueName":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj","projectName":"Sln.Iot.Repository","projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj","outputPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["netstandard2.1"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","projectReferences":{"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj":{"projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj"},"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj":{"projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"NETStandard.Library":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/6.0.417/RuntimeIdentifierGraph.json"}}
\ No newline at end of file
+"restore":{"projectUniqueName":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj","projectName":"Sln.Iot.Repository","projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj","outputPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["netstandard2.1"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","projectReferences":{"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj":{"projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj"},"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj":{"projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"NETStandard.Library":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/6.0.417/RuntimeIdentifierGraph.json"}}
\ No newline at end of file
diff --git a/Sln.Iot.Repository/obj/rider.project.model.nuget.info b/Sln.Iot.Repository/obj/rider.project.model.nuget.info
index 43812d7..c628327 100644
--- a/Sln.Iot.Repository/obj/rider.project.model.nuget.info
+++ b/Sln.Iot.Repository/obj/rider.project.model.nuget.info
@@ -1 +1 @@
-17443568731818051
\ No newline at end of file
+17467833632522914
\ No newline at end of file
diff --git a/Sln.Iot.Repository/obj/rider.project.restore.info b/Sln.Iot.Repository/obj/rider.project.restore.info
index 43812d7..c628327 100644
--- a/Sln.Iot.Repository/obj/rider.project.restore.info
+++ b/Sln.Iot.Repository/obj/rider.project.restore.info
@@ -1 +1 @@
-17443568731818051
\ No newline at end of file
+17467833632522914
\ No newline at end of file
diff --git a/Sln.Iot.Serilog/bin/Debug/netstandard2.1/Sln.Iot.Config.dll b/Sln.Iot.Serilog/bin/Debug/netstandard2.1/Sln.Iot.Config.dll
index e0a83b7..b1b475d 100644
Binary files a/Sln.Iot.Serilog/bin/Debug/netstandard2.1/Sln.Iot.Config.dll and b/Sln.Iot.Serilog/bin/Debug/netstandard2.1/Sln.Iot.Config.dll differ
diff --git a/Sln.Iot.Serilog/bin/Debug/netstandard2.1/Sln.Iot.Config.pdb b/Sln.Iot.Serilog/bin/Debug/netstandard2.1/Sln.Iot.Config.pdb
index d729b57..070b834 100644
Binary files a/Sln.Iot.Serilog/bin/Debug/netstandard2.1/Sln.Iot.Config.pdb and b/Sln.Iot.Serilog/bin/Debug/netstandard2.1/Sln.Iot.Config.pdb differ
diff --git a/Sln.Iot.Serilog/bin/Debug/netstandard2.1/Sln.Iot.Serilog.dll b/Sln.Iot.Serilog/bin/Debug/netstandard2.1/Sln.Iot.Serilog.dll
index 8bdd1a9..3d2708b 100644
Binary files a/Sln.Iot.Serilog/bin/Debug/netstandard2.1/Sln.Iot.Serilog.dll and b/Sln.Iot.Serilog/bin/Debug/netstandard2.1/Sln.Iot.Serilog.dll differ
diff --git a/Sln.Iot.Serilog/bin/Debug/netstandard2.1/Sln.Iot.Serilog.pdb b/Sln.Iot.Serilog/bin/Debug/netstandard2.1/Sln.Iot.Serilog.pdb
index f5746df..c698874 100644
Binary files a/Sln.Iot.Serilog/bin/Debug/netstandard2.1/Sln.Iot.Serilog.pdb and b/Sln.Iot.Serilog/bin/Debug/netstandard2.1/Sln.Iot.Serilog.pdb differ
diff --git a/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.GeneratedMSBuildEditorConfig.editorconfig b/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.GeneratedMSBuildEditorConfig.editorconfig
index 6847997..d1c341f 100644
--- a/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.GeneratedMSBuildEditorConfig.editorconfig
+++ b/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.GeneratedMSBuildEditorConfig.editorconfig
@@ -1,3 +1,3 @@
is_global = true
build_property.RootNamespace = Sln.Iot.Serilog
-build_property.ProjectDir = /Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/
+build_property.ProjectDir = /Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/
diff --git a/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.assets.cache b/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.assets.cache
index 41908bb..d275be3 100644
Binary files a/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.assets.cache and b/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.assets.cache differ
diff --git a/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.csproj.AssemblyReference.cache b/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.csproj.AssemblyReference.cache
index 8c380d9..c0f72c5 100644
Binary files a/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.csproj.AssemblyReference.cache and b/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.csproj.AssemblyReference.cache differ
diff --git a/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.csproj.CoreCompileInputs.cache b/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.csproj.CoreCompileInputs.cache
index 931c28e..3106ed1 100644
--- a/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.csproj.CoreCompileInputs.cache
+++ b/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.csproj.CoreCompileInputs.cache
@@ -1 +1 @@
-b9fc08b3093c69a442b1964c44b8128a9038f77d
+6eaf7586cc5b8f861ddfe9cd94239657c0f021e5
diff --git a/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.csproj.FileListAbsolute.txt b/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.csproj.FileListAbsolute.txt
index eaa1455..602e2e4 100644
--- a/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.csproj.FileListAbsolute.txt
+++ b/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.csproj.FileListAbsolute.txt
@@ -24,3 +24,16 @@
//Mac/Home/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.dll
//Mac/Home/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.pdb
/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.csproj.CopyComplete
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/bin/Debug/netstandard2.1/Sln.Iot.Serilog.deps.json
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/bin/Debug/netstandard2.1/Sln.Iot.Serilog.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/bin/Debug/netstandard2.1/Sln.Iot.Serilog.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/bin/Debug/netstandard2.1/Sln.Iot.Config.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/bin/Debug/netstandard2.1/Sln.Iot.Config.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.csproj.AssemblyReference.cache
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.GeneratedMSBuildEditorConfig.editorconfig
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.AssemblyInfoInputs.cache
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.AssemblyInfo.cs
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.csproj.CoreCompileInputs.cache
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.csproj.CopyComplete
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.pdb
diff --git a/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.dll b/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.dll
index 8bdd1a9..3d2708b 100644
Binary files a/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.dll and b/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.dll differ
diff --git a/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.pdb b/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.pdb
index f5746df..c698874 100644
Binary files a/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.pdb and b/Sln.Iot.Serilog/obj/Debug/netstandard2.1/Sln.Iot.Serilog.pdb differ
diff --git a/Sln.Iot.Serilog/obj/Sln.Iot.Serilog.csproj.nuget.dgspec.json b/Sln.Iot.Serilog/obj/Sln.Iot.Serilog.csproj.nuget.dgspec.json
index c9d290c..5bc58c3 100644
--- a/Sln.Iot.Serilog/obj/Sln.Iot.Serilog.csproj.nuget.dgspec.json
+++ b/Sln.Iot.Serilog/obj/Sln.Iot.Serilog.csproj.nuget.dgspec.json
@@ -1,17 +1,17 @@
{
"format": 1,
"restore": {
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj": {}
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj": {}
},
"projects": {
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj": {
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj",
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj",
"projectName": "Sln.Iot.Config",
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj",
"packagesPath": "/Users/wenxiansheng/.nuget/packages/",
- "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/obj/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
@@ -63,14 +63,14 @@
}
}
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj": {
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj",
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj",
"projectName": "Sln.Iot.Serilog",
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj",
"packagesPath": "/Users/wenxiansheng/.nuget/packages/",
- "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/obj/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
@@ -85,8 +85,8 @@
"netstandard2.1": {
"targetAlias": "netstandard2.1",
"projectReferences": {
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj"
}
}
}
diff --git a/Sln.Iot.Serilog/obj/project.assets.json b/Sln.Iot.Serilog/obj/project.assets.json
index 8ac4857..be7c3e3 100644
--- a/Sln.Iot.Serilog/obj/project.assets.json
+++ b/Sln.Iot.Serilog/obj/project.assets.json
@@ -1823,11 +1823,11 @@
"project": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj",
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj",
"projectName": "Sln.Iot.Serilog",
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj",
"packagesPath": "/Users/wenxiansheng/.nuget/packages/",
- "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/obj/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
@@ -1842,8 +1842,8 @@
"netstandard2.1": {
"targetAlias": "netstandard2.1",
"projectReferences": {
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj"
}
}
}
diff --git a/Sln.Iot.Serilog/obj/project.nuget.cache b/Sln.Iot.Serilog/obj/project.nuget.cache
index 6e4cada..3abb637 100644
--- a/Sln.Iot.Serilog/obj/project.nuget.cache
+++ b/Sln.Iot.Serilog/obj/project.nuget.cache
@@ -1,8 +1,8 @@
{
"version": 2,
- "dgSpecHash": "U69VLyMp14w=",
+ "dgSpecHash": "z7n1eRBAWEs=",
"success": true,
- "projectFilePath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj",
+ "projectFilePath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj",
"expectedPackageFiles": [
"/Users/wenxiansheng/.nuget/packages/microsoft.aspnetcore.hosting.abstractions/2.2.0/microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/microsoft.aspnetcore.hosting.server.abstractions/2.2.0/microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512",
diff --git a/Sln.Iot.Serilog/obj/project.packagespec.json b/Sln.Iot.Serilog/obj/project.packagespec.json
index 25b51eb..597b600 100644
--- a/Sln.Iot.Serilog/obj/project.packagespec.json
+++ b/Sln.Iot.Serilog/obj/project.packagespec.json
@@ -1 +1 @@
-"restore":{"projectUniqueName":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj","projectName":"Sln.Iot.Serilog","projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj","outputPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["netstandard2.1"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","projectReferences":{"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj":{"projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","dependencies":{"Serilog":{"target":"Package","version":"[4.2.0, )"},"Serilog.AspNetCore":{"target":"Package","version":"[9.0.0, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"NETStandard.Library":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/6.0.417/RuntimeIdentifierGraph.json"}}
\ No newline at end of file
+"restore":{"projectUniqueName":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj","projectName":"Sln.Iot.Serilog","projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj","outputPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["netstandard2.1"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","projectReferences":{"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj":{"projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","dependencies":{"Serilog":{"target":"Package","version":"[4.2.0, )"},"Serilog.AspNetCore":{"target":"Package","version":"[9.0.0, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"NETStandard.Library":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/6.0.417/RuntimeIdentifierGraph.json"}}
\ No newline at end of file
diff --git a/Sln.Iot.Serilog/obj/rider.project.model.nuget.info b/Sln.Iot.Serilog/obj/rider.project.model.nuget.info
index 3792ff7..1132018 100644
--- a/Sln.Iot.Serilog/obj/rider.project.model.nuget.info
+++ b/Sln.Iot.Serilog/obj/rider.project.model.nuget.info
@@ -1 +1 @@
-17443568731881430
\ No newline at end of file
+17467833632448236
\ No newline at end of file
diff --git a/Sln.Iot.Serilog/obj/rider.project.restore.info b/Sln.Iot.Serilog/obj/rider.project.restore.info
index 3792ff7..1132018 100644
--- a/Sln.Iot.Serilog/obj/rider.project.restore.info
+++ b/Sln.Iot.Serilog/obj/rider.project.restore.info
@@ -1 +1 @@
-17443568731881430
\ No newline at end of file
+17467833632448236
\ No newline at end of file
diff --git a/Sln.Iot.Socket/Adapter/BufferRequestInfo.cs b/Sln.Iot.Socket/Adapter/BufferRequestInfo.cs
index b5310cf..2993e0b 100644
--- a/Sln.Iot.Socket/Adapter/BufferRequestInfo.cs
+++ b/Sln.Iot.Socket/Adapter/BufferRequestInfo.cs
@@ -37,7 +37,7 @@ namespace Sln.Iot.Socket.Adapter
///
/// 采集设备编号,由采集器类型(1个字)、采集器地址(2个字)组成
///
- public string ColletEquipCOde { get; internal set; }
+ public string ColletEquipCode { get; internal set; }
///
/// 自定义属性,DataType
diff --git a/Sln.Iot.Socket/Adapter/CustomDataHandlingAdapter.cs b/Sln.Iot.Socket/Adapter/CustomDataHandlingAdapter.cs
index 5d0586c..ffbbfbf 100644
--- a/Sln.Iot.Socket/Adapter/CustomDataHandlingAdapter.cs
+++ b/Sln.Iot.Socket/Adapter/CustomDataHandlingAdapter.cs
@@ -52,15 +52,17 @@ namespace Sln.Iot.Socket.Adapter
string DeviceType = Encoding.ASCII.GetString(deviceType);
string collectEquipCode = DeviceType + this.ConverToString(deviceId);
- byteBlock.Pos += 3;
+ byteBlock.Pos += 1;
byteBlock.Read(out byte[] dataType, 1);
- byteBlock.Read(out byte[] lengthByte, 2);
-
- string hexString = BitConverter.ToString(lengthByte).Replace("-", "");
- int bodyLength = Convert.ToInt32(hexString, 16);
+ // byteBlock.Read(out byte[] lengthByte, 2);
+ //
+ // string hexString = BitConverter.ToString(lengthByte).Replace("-", "");
+ // int bodyLength = Convert.ToInt32(hexString, 16);
+ GetBodyLength(dataType[0], out int bodyLength);
+
if (bodyLength > byteBlock.CanReadLen)
{
byteBlock.Pos = pos; //body数据不足。回退游标
@@ -75,13 +77,13 @@ namespace Sln.Iot.Socket.Adapter
request = new BufferRequestInfo()
{
header = header,
- ColletEquipCOde = collectEquipCode,
+ ColletEquipCode = collectEquipCode,
DataType = dataType[0],
BufferLength = bodyLength,
Body = body,
CheckBit = check[0],
Tail = tail,
- buffer = byteBlock
+ buffer = byteBlock,
};
return FilterResult.Success;
@@ -113,5 +115,48 @@ namespace Sln.Iot.Socket.Adapter
str = stb.ToString();
return str;
}
+
+ public string bytesToHexStr(byte[] bytes, int iLen)
+ {
+ StringBuilder sb = new StringBuilder();
+ if (bytes != null)
+ {
+ for (int i = 0; i < iLen; i++)
+ {
+ sb.Append(bytes[i].ToString("X2"));
+ }
+ }
+ return sb.ToString();
+ }
+
+ ///
+ /// 数据长度,只计算数据区域长度,控制码向后到校验位,不包含校验
+ ///
+ ///
+ ///
+ private void GetBodyLength(byte dataType, out int length)
+ {
+ switch (dataType)
+ {
+ case 0x33:
+ length = 4;
+ break;
+ case 0x36:
+ length = 1;
+ break;
+ case 0x34:
+ length = 26;
+ break;
+ case 0x35:
+ length = 4;
+ break;
+ case 0x37:
+ length = 5;
+ break;
+ default:
+ length = 1;
+ break;
+ }
+ }
}
}
\ No newline at end of file
diff --git a/Sln.Iot.Socket/Sln.Iot.Socket.csproj b/Sln.Iot.Socket/Sln.Iot.Socket.csproj
index f3b859c..ffe3c78 100644
--- a/Sln.Iot.Socket/Sln.Iot.Socket.csproj
+++ b/Sln.Iot.Socket/Sln.Iot.Socket.csproj
@@ -7,9 +7,12 @@
+
+
+
diff --git a/Sln.Iot.Socket/TcpServer.cs b/Sln.Iot.Socket/TcpServer.cs
index 87e3e2a..4fad1eb 100644
--- a/Sln.Iot.Socket/TcpServer.cs
+++ b/Sln.Iot.Socket/TcpServer.cs
@@ -24,6 +24,10 @@
#endregion << 版 本 注 释 >>
using System;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using Sln.Iot.Model.dto;
using Sln.Iot.Serilog;
using Sln.Iot.Socket.Adapter;
using TouchSocket.Core;
@@ -34,7 +38,7 @@ namespace Sln.Iot.Socket
public class TcpServer
{
private readonly SerilogHelper _logger;
- private readonly TcpService _service;
+ public readonly TcpService _service;
public TcpServer(SerilogHelper logger, TcpService service)
{
@@ -78,11 +82,11 @@ namespace Sln.Iot.Socket
if (e.RequestInfo is BufferRequestInfo request)
{
string msg = $"收到客户端:{client.Id};指令====>>>>Header:{BitConverter.ToString(request.header).Replace("-", "")};DataType:{request.DataType.ToString("X2")};BufferLength:{request.BufferLength};Body:{BitConverter.ToString(request.Body).Replace("-", "")};CheckBit:{request.CheckBit.ToString("X2")};Tail:{BitConverter.ToString(request.Tail).Replace("-", "")};";
-
+
_logger.Info($"{msg}");
-
+
ReceivedBufferRequestInfoEvent?.Invoke(client,request);
-
+
}
@@ -113,14 +117,31 @@ namespace Sln.Iot.Socket
}
///
- /// 向所有客户端发送心跳
+ /// 向指定客户端发送指令
///
- public void SendHeartBeat()
+ ///
+ ///
+ public async Task SendMsgToClient(string clientId, byte[] buffer)
{
- var clients = _service.SocketClients.GetClients();
- foreach (var item in clients)
+ if (_service.TryGetSocketClient(clientId, out SocketClient tcpSessionClient))
{
- _service.Send(item.Id,"heartbeat");
+ var waitClinet = tcpSessionClient.CreateWaitingClient(new WaitingOptions()
+ {
+ FilterFunc = response => //设置用于筛选的fun委托,当返回为true时,才会响应返回
+ {
+ return true;
+ }
+ });
+ ResponsedData responsedData = waitClinet.SendThenResponse(buffer, 5000);
+ IRequestInfo requestInfo = responsedData.RequestInfo;
+
+ BufferRequestInfo bufferRequestInfo = (BufferRequestInfo)requestInfo ;
+
+ return bufferRequestInfo;
+ }
+ else
+ {
+ return new BufferRequestInfo();
}
}
}
diff --git a/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Config.dll b/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Config.dll
index e0a83b7..b1b475d 100644
Binary files a/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Config.dll and b/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Config.dll differ
diff --git a/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Config.pdb b/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Config.pdb
index d729b57..070b834 100644
Binary files a/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Config.pdb and b/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Config.pdb differ
diff --git a/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Serilog.dll b/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Serilog.dll
index 8bdd1a9..3d2708b 100644
Binary files a/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Serilog.dll and b/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Serilog.dll differ
diff --git a/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Serilog.pdb b/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Serilog.pdb
index f5746df..c698874 100644
Binary files a/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Serilog.pdb and b/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Serilog.pdb differ
diff --git a/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Socket.deps.json b/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Socket.deps.json
index 74fcc6b..94627de 100644
--- a/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Socket.deps.json
+++ b/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Socket.deps.json
@@ -9,13 +9,51 @@
".NETStandard,Version=v2.1/": {
"Sln.Iot.Socket/1.0.0": {
"dependencies": {
+ "Sln.Iot.Model": "1.0.0",
"Sln.Iot.Serilog": "1.0.0",
- "TouchSocket": "2.0.0"
+ "TouchSocket": "2.0.0",
+ "TouchSocket.WebApi": "2.0.0",
+ "TouchSocket.WebApi.Swagger": "2.0.0"
},
"runtime": {
"Sln.Iot.Socket.dll": {}
}
},
+ "Azure.Core/1.38.0": {
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "9.0.0",
+ "System.ClientModel": "1.0.0",
+ "System.Diagnostics.DiagnosticSource": "9.0.0",
+ "System.Memory.Data": "1.0.2",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Text.Encodings.Web": "9.0.0",
+ "System.Text.Json": "9.0.0",
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Azure.Core.dll": {
+ "assemblyVersion": "1.38.0.0",
+ "fileVersion": "1.3800.24.12602"
+ }
+ }
+ },
+ "Azure.Identity/1.11.4": {
+ "dependencies": {
+ "Azure.Core": "1.38.0",
+ "Microsoft.Identity.Client": "4.61.3",
+ "Microsoft.Identity.Client.Extensions.Msal": "4.61.3",
+ "System.Memory": "4.5.5",
+ "System.Security.Cryptography.ProtectedData": "6.0.0",
+ "System.Text.Json": "9.0.0",
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Azure.Identity.dll": {
+ "assemblyVersion": "1.11.4.0",
+ "fileVersion": "1.1100.424.31005"
+ }
+ }
+ },
"Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
"dependencies": {
"Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0",
@@ -72,6 +110,90 @@
}
}
},
+ "Microsoft.CSharp/4.5.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.CSharp.dll": {
+ "assemblyVersion": "4.0.4.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "Microsoft.Data.SqlClient/5.2.2": {
+ "dependencies": {
+ "Azure.Identity": "1.11.4",
+ "Microsoft.Data.SqlClient.SNI.runtime": "5.2.0",
+ "Microsoft.Identity.Client": "4.61.3",
+ "Microsoft.IdentityModel.JsonWebTokens": "6.35.0",
+ "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.35.0",
+ "Microsoft.SqlServer.Server": "1.0.0",
+ "Microsoft.Win32.Registry": "5.0.0",
+ "System.Configuration.ConfigurationManager": "6.0.1",
+ "System.Diagnostics.DiagnosticSource": "9.0.0",
+ "System.Runtime.Caching": "6.0.0",
+ "System.Runtime.Loader": "4.3.0",
+ "System.Security.Cryptography.Cng": "5.0.0",
+ "System.Security.Principal.Windows": "5.0.0",
+ "System.Text.Encoding.CodePages": "6.0.0",
+ "System.Text.Encodings.Web": "9.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Data.SqlClient.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.22.24240.6"
+ }
+ },
+ "resources": {
+ "lib/netstandard2.1/de/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "de"
+ },
+ "lib/netstandard2.1/es/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "es"
+ },
+ "lib/netstandard2.1/fr/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/netstandard2.1/it/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "it"
+ },
+ "lib/netstandard2.1/ja/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/netstandard2.1/ko/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/netstandard2.1/pt-BR/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/netstandard2.1/ru/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/netstandard2.1/zh-Hans/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/netstandard2.1/zh-Hant/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.Data.SqlClient.SNI.runtime/5.2.0": {},
+ "Microsoft.Data.Sqlite/9.0.0": {
+ "dependencies": {
+ "Microsoft.Data.Sqlite.Core": "9.0.0",
+ "SQLitePCLRaw.bundle_e_sqlite3": "2.1.10",
+ "SQLitePCLRaw.core": "2.1.10"
+ }
+ },
+ "Microsoft.Data.Sqlite.Core/9.0.0": {
+ "dependencies": {
+ "SQLitePCLRaw.core": "2.1.10"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {
+ "assemblyVersion": "9.0.0.0",
+ "fileVersion": "9.0.24.52902"
+ }
+ }
+ },
"Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
"dependencies": {
"Microsoft.Extensions.Primitives": "9.0.4"
@@ -221,6 +343,142 @@
}
}
},
+ "Microsoft.Identity.Client/4.61.3": {
+ "dependencies": {
+ "Microsoft.IdentityModel.Abstractions": "6.35.0",
+ "System.Diagnostics.DiagnosticSource": "9.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Identity.Client.dll": {
+ "assemblyVersion": "4.61.3.0",
+ "fileVersion": "4.61.3.0"
+ }
+ }
+ },
+ "Microsoft.Identity.Client.Extensions.Msal/4.61.3": {
+ "dependencies": {
+ "Microsoft.Identity.Client": "4.61.3",
+ "System.IO.FileSystem.AccessControl": "5.0.0",
+ "System.Security.Cryptography.ProtectedData": "6.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
+ "assemblyVersion": "4.61.3.0",
+ "fileVersion": "4.61.3.0"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.Abstractions/6.35.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": {
+ "assemblyVersion": "6.35.0.0",
+ "fileVersion": "6.35.0.41201"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.JsonWebTokens/6.35.0": {
+ "dependencies": {
+ "Microsoft.IdentityModel.Tokens": "6.35.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encodings.Web": "9.0.0",
+ "System.Text.Json": "9.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
+ "assemblyVersion": "6.35.0.0",
+ "fileVersion": "6.35.0.41201"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.Logging/6.35.0": {
+ "dependencies": {
+ "Microsoft.IdentityModel.Abstractions": "6.35.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
+ "assemblyVersion": "6.35.0.0",
+ "fileVersion": "6.35.0.41201"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.Protocols/6.35.0": {
+ "dependencies": {
+ "Microsoft.IdentityModel.Logging": "6.35.0",
+ "Microsoft.IdentityModel.Tokens": "6.35.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
+ "assemblyVersion": "6.35.0.0",
+ "fileVersion": "6.35.0.41201"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": {
+ "dependencies": {
+ "Microsoft.IdentityModel.Protocols": "6.35.0",
+ "System.IdentityModel.Tokens.Jwt": "6.35.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encodings.Web": "9.0.0",
+ "System.Text.Json": "9.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
+ "assemblyVersion": "6.35.0.0",
+ "fileVersion": "6.35.0.41201"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.Tokens/6.35.0": {
+ "dependencies": {
+ "Microsoft.CSharp": "4.5.0",
+ "Microsoft.IdentityModel.Logging": "6.35.0",
+ "System.Security.Cryptography.Cng": "5.0.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encodings.Web": "9.0.0",
+ "System.Text.Json": "9.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
+ "assemblyVersion": "6.35.0.0",
+ "fileVersion": "6.35.0.41201"
+ }
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.1.1": {},
+ "Microsoft.NETCore.Targets/1.1.3": {},
+ "Microsoft.SqlServer.Server/1.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "1.0.0.0"
+ }
+ }
+ },
+ "Microsoft.Win32.Registry/5.0.0": {
+ "dependencies": {
+ "System.Buffers": "4.5.1",
+ "System.Memory": "4.5.5",
+ "System.Security.AccessControl": "6.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "MySqlConnector/2.2.5": {
+ "dependencies": {
+ "System.Diagnostics.DiagnosticSource": "9.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/MySqlConnector.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.2.5.0"
+ }
+ }
+ },
"Newtonsoft.Json/13.0.3": {
"runtime": {
"lib/netstandard2.0/Newtonsoft.Json.dll": {
@@ -229,6 +487,44 @@
}
}
},
+ "Npgsql/5.0.18": {
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.Text.Json": "9.0.0",
+ "System.Threading.Channels": "8.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Npgsql.dll": {
+ "assemblyVersion": "5.0.18.0",
+ "fileVersion": "5.0.18.0"
+ }
+ }
+ },
+ "Oracle.ManagedDataAccess.Core/3.21.100": {
+ "dependencies": {
+ "System.Diagnostics.PerformanceCounter": "6.0.1",
+ "System.DirectoryServices": "6.0.1",
+ "System.DirectoryServices.Protocols": "6.0.1",
+ "System.Text.Json": "9.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {
+ "assemblyVersion": "3.1.21.1",
+ "fileVersion": "0.0.0.0"
+ }
+ }
+ },
+ "Oscar.Data.SqlClient/4.0.4": {
+ "dependencies": {
+ "System.Text.Encoding.CodePages": "6.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Oscar.Data.SqlClient.dll": {
+ "assemblyVersion": "4.0.4.0",
+ "fileVersion": "4.0.4.0"
+ }
+ }
+ },
"Serilog/4.2.0": {
"dependencies": {
"System.Diagnostics.DiagnosticSource": "9.0.0",
@@ -344,6 +640,82 @@
}
}
},
+ "SQLitePCLRaw.bundle_e_sqlite3/2.1.10": {
+ "dependencies": {
+ "SQLitePCLRaw.lib.e_sqlite3": "2.1.10",
+ "SQLitePCLRaw.provider.e_sqlite3": "2.1.10"
+ },
+ "runtime": {
+ "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {
+ "assemblyVersion": "2.1.10.2445",
+ "fileVersion": "2.1.10.2445"
+ }
+ }
+ },
+ "SQLitePCLRaw.core/2.1.10": {
+ "dependencies": {
+ "System.Memory": "4.5.5"
+ },
+ "runtime": {
+ "lib/netstandard2.0/SQLitePCLRaw.core.dll": {
+ "assemblyVersion": "2.1.10.2445",
+ "fileVersion": "2.1.10.2445"
+ }
+ }
+ },
+ "SQLitePCLRaw.lib.e_sqlite3/2.1.10": {},
+ "SQLitePCLRaw.provider.e_sqlite3/2.1.10": {
+ "dependencies": {
+ "SQLitePCLRaw.core": "2.1.10"
+ },
+ "runtime": {
+ "lib/netstandard2.0/SQLitePCLRaw.provider.e_sqlite3.dll": {
+ "assemblyVersion": "2.1.10.2445",
+ "fileVersion": "2.1.10.2445"
+ }
+ }
+ },
+ "SqlSugarCore/5.1.4.188": {
+ "dependencies": {
+ "Microsoft.Data.SqlClient": "5.2.2",
+ "Microsoft.Data.Sqlite": "9.0.0",
+ "MySqlConnector": "2.2.5",
+ "Newtonsoft.Json": "13.0.3",
+ "Npgsql": "5.0.18",
+ "Oracle.ManagedDataAccess.Core": "3.21.100",
+ "Oscar.Data.SqlClient": "4.0.4",
+ "SqlSugarCore.Dm": "8.6.0",
+ "SqlSugarCore.Kdbndp": "9.3.7.311",
+ "System.Data.Common": "4.3.0",
+ "System.Reflection.Emit.Lightweight": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.1"
+ },
+ "runtime": {
+ "lib/netstandard2.1/SqlSugar.dll": {
+ "assemblyVersion": "5.1.4.188",
+ "fileVersion": "5.1.4.188"
+ }
+ }
+ },
+ "SqlSugarCore.Dm/8.6.0": {
+ "dependencies": {
+ "System.Text.Encoding.CodePages": "6.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/DM.DmProvider.dll": {
+ "assemblyVersion": "8.3.1.27409",
+ "fileVersion": "8.3.1.27409"
+ }
+ }
+ },
+ "SqlSugarCore.Kdbndp/9.3.7.311": {
+ "runtime": {
+ "lib/netstandard2.1/Kdbndp.dll": {
+ "assemblyVersion": "9.3.7.311",
+ "fileVersion": "9.3.7.311"
+ }
+ }
+ },
"System.Buffers/4.5.1": {
"runtime": {
"lib/netstandard2.0/System.Buffers.dll": {
@@ -352,6 +724,25 @@
}
}
},
+ "System.ClientModel/1.0.0": {
+ "dependencies": {
+ "System.Memory.Data": "1.0.2",
+ "System.Text.Json": "9.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.ClientModel.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "1.0.24.5302"
+ }
+ }
+ },
+ "System.Collections/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.1",
+ "Microsoft.NETCore.Targets": "1.1.3",
+ "System.Runtime": "4.3.1"
+ }
+ },
"System.ComponentModel.Annotations/5.0.0": {
"runtime": {
"lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
@@ -360,6 +751,36 @@
}
}
},
+ "System.Configuration.ConfigurationManager/6.0.1": {
+ "dependencies": {
+ "System.Security.Cryptography.ProtectedData": "6.0.0",
+ "System.Security.Permissions": "6.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.922.41905"
+ }
+ }
+ },
+ "System.Data.Common/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.1",
+ "System.Runtime.Extensions": "4.3.1",
+ "System.Text.RegularExpressions": "4.3.1",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.2/System.Data.Common.dll": {
+ "assemblyVersion": "4.1.1.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
"System.Diagnostics.DiagnosticSource/9.0.0": {
"dependencies": {
"System.Memory": "4.5.5",
@@ -372,6 +793,81 @@
}
}
},
+ "System.Diagnostics.PerformanceCounter/6.0.1": {
+ "runtime": {
+ "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ }
+ }
+ },
+ "System.DirectoryServices/6.0.1": {
+ "dependencies": {
+ "System.IO.FileSystem.AccessControl": "5.0.0",
+ "System.Security.AccessControl": "6.0.0",
+ "System.Security.Permissions": "6.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.DirectoryServices.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.1423.7309"
+ }
+ }
+ },
+ "System.DirectoryServices.Protocols/6.0.1": {
+ "dependencies": {
+ "System.Security.Principal.Windows": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": {
+ "assemblyVersion": "6.0.0.1",
+ "fileVersion": "6.0.222.6406"
+ }
+ }
+ },
+ "System.Globalization/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.1",
+ "Microsoft.NETCore.Targets": "1.1.3",
+ "System.Runtime": "4.3.1"
+ }
+ },
+ "System.IdentityModel.Tokens.Jwt/6.35.0": {
+ "dependencies": {
+ "Microsoft.IdentityModel.JsonWebTokens": "6.35.0",
+ "Microsoft.IdentityModel.Tokens": "6.35.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
+ "assemblyVersion": "6.35.0.0",
+ "fileVersion": "6.35.0.41201"
+ }
+ }
+ },
+ "System.IO/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.1",
+ "Microsoft.NETCore.Targets": "1.1.3",
+ "System.Runtime": "4.3.1",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.IO.FileSystem.AccessControl/5.0.0": {
+ "dependencies": {
+ "System.Buffers": "4.5.1",
+ "System.Memory": "4.5.5",
+ "System.Security.AccessControl": "6.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
"System.IO.Pipelines/9.0.0": {
"dependencies": {
"System.Buffers": "4.5.1",
@@ -388,7 +884,7 @@
"System.Memory/4.5.5": {
"dependencies": {
"System.Buffers": "4.5.1",
- "System.Numerics.Vectors": "4.4.0",
+ "System.Numerics.Vectors": "4.5.0",
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
},
"runtime": {
@@ -398,11 +894,92 @@
}
}
},
- "System.Numerics.Vectors/4.4.0": {
+ "System.Memory.Data/1.0.2": {
+ "dependencies": {
+ "System.Text.Encodings.Web": "9.0.0",
+ "System.Text.Json": "9.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Memory.Data.dll": {
+ "assemblyVersion": "1.0.2.0",
+ "fileVersion": "1.0.221.20802"
+ }
+ }
+ },
+ "System.Numerics.Vectors/4.5.0": {
"runtime": {
"lib/netstandard2.0/System.Numerics.Vectors.dll": {
- "assemblyVersion": "4.1.3.0",
- "fileVersion": "4.6.25519.3"
+ "assemblyVersion": "4.1.4.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Reflection/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.1",
+ "Microsoft.NETCore.Targets": "1.1.3",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.1"
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.1"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.1"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.1",
+ "Microsoft.NETCore.Targets": "1.1.3",
+ "System.Runtime": "4.3.1"
+ }
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.1",
+ "Microsoft.NETCore.Targets": "1.1.3",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.1"
+ }
+ },
+ "System.Runtime/4.3.1": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.1",
+ "Microsoft.NETCore.Targets": "1.1.3"
+ }
+ },
+ "System.Runtime.Caching/6.0.0": {
+ "dependencies": {
+ "System.Configuration.ConfigurationManager": "6.0.1"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Runtime.Caching.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.21.52210"
}
}
},
@@ -414,6 +991,94 @@
}
}
},
+ "System.Runtime.Extensions/4.3.1": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.1",
+ "Microsoft.NETCore.Targets": "1.1.3",
+ "System.Runtime": "4.3.1"
+ }
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.1"
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Runtime.Loader.dll": {
+ "assemblyVersion": "4.0.1.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Security.AccessControl/6.0.0": {
+ "dependencies": {
+ "System.Security.Principal.Windows": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Security.AccessControl.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ }
+ },
+ "System.Security.Cryptography.Cng/5.0.0": {
+ "runtime": {
+ "lib/netstandard2.1/System.Security.Cryptography.Cng.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Security.Cryptography.ProtectedData/6.0.0": {
+ "dependencies": {
+ "System.Memory": "4.5.5"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ }
+ },
+ "System.Security.Permissions/6.0.0": {
+ "dependencies": {
+ "System.Security.AccessControl": "6.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Security.Permissions.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ }
+ },
+ "System.Security.Principal.Windows/5.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Text.Encoding/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.1",
+ "Microsoft.NETCore.Targets": "1.1.3",
+ "System.Runtime": "4.3.1"
+ }
+ },
+ "System.Text.Encoding.CodePages/6.0.0": {
+ "dependencies": {
+ "System.Memory": "4.5.5",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ }
+ },
"System.Text.Encodings.Web/9.0.0": {
"dependencies": {
"System.Buffers": "4.5.1",
@@ -444,6 +1109,34 @@
}
}
},
+ "System.Text.RegularExpressions/4.3.1": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.1",
+ "System.Runtime.Extensions": "4.3.1",
+ "System.Threading": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Text.RegularExpressions.dll": {
+ "assemblyVersion": "4.1.1.1",
+ "fileVersion": "4.6.27618.1"
+ }
+ }
+ },
+ "System.Threading/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.1",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Threading.dll": {
+ "assemblyVersion": "4.0.12.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
"System.Threading.Channels/8.0.0": {
"runtime": {
"lib/netstandard2.1/System.Threading.Channels.dll": {
@@ -452,6 +1145,13 @@
}
}
},
+ "System.Threading.Tasks/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.1",
+ "Microsoft.NETCore.Targets": "1.1.3",
+ "System.Runtime": "4.3.1"
+ }
+ },
"System.Threading.Tasks.Extensions/4.5.4": {
"dependencies": {
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
@@ -487,6 +1187,51 @@
}
}
},
+ "TouchSocket.Http/2.0.0": {
+ "dependencies": {
+ "TouchSocket": "2.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/TouchSocket.Http.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.0.0.0"
+ }
+ }
+ },
+ "TouchSocket.Rpc/2.0.0": {
+ "dependencies": {
+ "TouchSocket.Core": "2.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/TouchSocket.Rpc.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.0.0.0"
+ }
+ }
+ },
+ "TouchSocket.WebApi/2.0.0": {
+ "dependencies": {
+ "TouchSocket.Http": "2.0.0",
+ "TouchSocket.Rpc": "2.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/TouchSocket.WebApi.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.0.0.0"
+ }
+ }
+ },
+ "TouchSocket.WebApi.Swagger/2.0.0": {
+ "dependencies": {
+ "TouchSocket.WebApi": "2.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/TouchSocket.WebApi.Swagger.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.0.0.0"
+ }
+ }
+ },
"Sln.Iot.Config/1.0.0": {
"dependencies": {
"Microsoft.Extensions.Options": "9.0.4"
@@ -495,6 +1240,14 @@
"Sln.Iot.Config.dll": {}
}
},
+ "Sln.Iot.Model/1.0.0": {
+ "dependencies": {
+ "SqlSugarCore": "5.1.4.188"
+ },
+ "runtime": {
+ "Sln.Iot.Model.dll": {}
+ }
+ },
"Sln.Iot.Serilog/1.0.0": {
"dependencies": {
"Serilog": "4.2.0",
@@ -513,6 +1266,20 @@
"serviceable": false,
"sha512": ""
},
+ "Azure.Core/1.38.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IuEgCoVA0ef7E4pQtpC3+TkPbzaoQfa77HlfJDmfuaJUCVJmn7fT0izamZiryW5sYUFKizsftIxMkXKbgIcPMQ==",
+ "path": "azure.core/1.38.0",
+ "hashPath": "azure.core.1.38.0.nupkg.sha512"
+ },
+ "Azure.Identity/1.11.4": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Sf4BoE6Q3jTgFkgBkx7qztYOFELBCo+wQgpYDwal/qJ1unBH73ywPztIJKXBXORRzAeNijsuxhk94h0TIMvfYg==",
+ "path": "azure.identity/1.11.4",
+ "hashPath": "azure.identity.1.11.4.nupkg.sha512"
+ },
"Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
"type": "package",
"serviceable": true,
@@ -548,6 +1315,41 @@
"path": "microsoft.bcl.asyncinterfaces/9.0.0",
"hashPath": "microsoft.bcl.asyncinterfaces.9.0.0.nupkg.sha512"
},
+ "Microsoft.CSharp/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
+ "path": "microsoft.csharp/4.5.0",
+ "hashPath": "microsoft.csharp.4.5.0.nupkg.sha512"
+ },
+ "Microsoft.Data.SqlClient/5.2.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-mtoeRMh7F/OA536c/Cnh8L4H0uLSKB5kSmoi54oN7Fp0hNJDy22IqyMhaMH4PkDCqI7xL//Fvg9ldtuPHG0h5g==",
+ "path": "microsoft.data.sqlclient/5.2.2",
+ "hashPath": "microsoft.data.sqlclient.5.2.2.nupkg.sha512"
+ },
+ "Microsoft.Data.SqlClient.SNI.runtime/5.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-po1jhvFd+8pbfvJR/puh+fkHi0GRanAdvayh/0e47yaM6CXWZ6opUjCMFuYlAnD2LcbyvQE7fPJKvogmaUcN+w==",
+ "path": "microsoft.data.sqlclient.sni.runtime/5.2.0",
+ "hashPath": "microsoft.data.sqlclient.sni.runtime.5.2.0.nupkg.sha512"
+ },
+ "Microsoft.Data.Sqlite/9.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-lw6wthgXGx3r/U775k1UkUAWIn0kAT0wj4ZRq0WlhPx4WAOiBsIjgDKgWkXcNTGT0KfHiClkM+tyPVFDvxeObw==",
+ "path": "microsoft.data.sqlite/9.0.0",
+ "hashPath": "microsoft.data.sqlite.9.0.0.nupkg.sha512"
+ },
+ "Microsoft.Data.Sqlite.Core/9.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cFfZjFL+tqzGYw9lB31EkV1IWF5xRQNk2k+MQd+Cf86Gl6zTeAoiZIFw5sRB1Z8OxpEC7nu+nTDsLSjieBAPTw==",
+ "path": "microsoft.data.sqlite.core/9.0.0",
+ "hashPath": "microsoft.data.sqlite.core.9.0.0.nupkg.sha512"
+ },
"Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
"type": "package",
"serviceable": true,
@@ -632,6 +1434,97 @@
"path": "microsoft.extensions.primitives/9.0.4",
"hashPath": "microsoft.extensions.primitives.9.0.4.nupkg.sha512"
},
+ "Microsoft.Identity.Client/4.61.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-naJo/Qm35Caaoxp5utcw+R8eU8ZtLz2ALh8S+gkekOYQ1oazfCQMWVT4NJ/FnHzdIJlm8dMz0oMpMGCabx5odA==",
+ "path": "microsoft.identity.client/4.61.3",
+ "hashPath": "microsoft.identity.client.4.61.3.nupkg.sha512"
+ },
+ "Microsoft.Identity.Client.Extensions.Msal/4.61.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PWnJcznrSGr25MN8ajlc2XIDW4zCFu0U6FkpaNLEWLgd1NgFCp5uDY3mqLDgM8zCN8hqj8yo5wHYfLB2HjcdGw==",
+ "path": "microsoft.identity.client.extensions.msal/4.61.3",
+ "hashPath": "microsoft.identity.client.extensions.msal.4.61.3.nupkg.sha512"
+ },
+ "Microsoft.IdentityModel.Abstractions/6.35.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-xuR8E4Rd96M41CnUSCiOJ2DBh+z+zQSmyrYHdYhD6K4fXBcQGVnRCFQ0efROUYpP+p0zC1BLKr0JRpVuujTZSg==",
+ "path": "microsoft.identitymodel.abstractions/6.35.0",
+ "hashPath": "microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512"
+ },
+ "Microsoft.IdentityModel.JsonWebTokens/6.35.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-9wxai3hKgZUb4/NjdRKfQd0QJvtXKDlvmGMYACbEC8DFaicMFCFhQFZq9ZET1kJLwZahf2lfY5Gtcpsx8zYzbg==",
+ "path": "microsoft.identitymodel.jsonwebtokens/6.35.0",
+ "hashPath": "microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512"
+ },
+ "Microsoft.IdentityModel.Logging/6.35.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-jePrSfGAmqT81JDCNSY+fxVWoGuJKt9e6eJ+vT7+quVS55nWl//jGjUQn4eFtVKt4rt5dXaleZdHRB9J9AJZ7Q==",
+ "path": "microsoft.identitymodel.logging/6.35.0",
+ "hashPath": "microsoft.identitymodel.logging.6.35.0.nupkg.sha512"
+ },
+ "Microsoft.IdentityModel.Protocols/6.35.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-BPQhlDzdFvv1PzaUxNSk+VEPwezlDEVADIKmyxubw7IiELK18uJ06RQ9QKKkds30XI+gDu9n8j24XQ8w7fjWcg==",
+ "path": "microsoft.identitymodel.protocols/6.35.0",
+ "hashPath": "microsoft.identitymodel.protocols.6.35.0.nupkg.sha512"
+ },
+ "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LMtVqnECCCdSmyFoCOxIE5tXQqkOLrvGrL7OxHg41DIm1bpWtaCdGyVcTAfOQpJXvzND9zUKIN/lhngPkYR8vg==",
+ "path": "microsoft.identitymodel.protocols.openidconnect/6.35.0",
+ "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512"
+ },
+ "Microsoft.IdentityModel.Tokens/6.35.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-RN7lvp7s3Boucg1NaNAbqDbxtlLj5Qeb+4uSS1TeK5FSBVM40P4DKaTKChT43sHyKfh7V0zkrMph6DdHvyA4bg==",
+ "path": "microsoft.identitymodel.tokens/6.35.0",
+ "hashPath": "microsoft.identitymodel.tokens.6.35.0.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Platforms/1.1.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-TMBuzAHpTenGbGgk0SMTwyEkyijY/Eae4ZGsFNYJvAr/LDn1ku3Etp3FPxChmDp5HHF3kzJuoaa08N0xjqAJfQ==",
+ "path": "microsoft.netcore.platforms/1.1.1",
+ "hashPath": "microsoft.netcore.platforms.1.1.1.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Targets/1.1.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3Wrmi0kJDzClwAC+iBdUBpEKmEle8FQNsCs77fkiOIw/9oYA07bL1EZNX0kQ2OMN3xpwvl0vAtOCYY3ndDNlhQ==",
+ "path": "microsoft.netcore.targets/1.1.3",
+ "hashPath": "microsoft.netcore.targets.1.1.3.nupkg.sha512"
+ },
+ "Microsoft.SqlServer.Server/1.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==",
+ "path": "microsoft.sqlserver.server/1.0.0",
+ "hashPath": "microsoft.sqlserver.server.1.0.0.nupkg.sha512"
+ },
+ "Microsoft.Win32.Registry/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
+ "path": "microsoft.win32.registry/5.0.0",
+ "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512"
+ },
+ "MySqlConnector/2.2.5": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6sinY78RvryhHwpup3awdjYO7d5hhWahb5p/1VDODJhSxJggV/sBbYuKK5IQF9TuzXABiddqUbmRfM884tqA3Q==",
+ "path": "mysqlconnector/2.2.5",
+ "hashPath": "mysqlconnector.2.2.5.nupkg.sha512"
+ },
"Newtonsoft.Json/13.0.3": {
"type": "package",
"serviceable": true,
@@ -639,6 +1532,27 @@
"path": "newtonsoft.json/13.0.3",
"hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
},
+ "Npgsql/5.0.18": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1u4iCPKL9wtPeSUzChIbgq/BlOhvf44o7xASacdpMY7z0PbqACKpNOF0fjEn9jDV/AJl/HtPY6zk5qasQ1URhw==",
+ "path": "npgsql/5.0.18",
+ "hashPath": "npgsql.5.0.18.nupkg.sha512"
+ },
+ "Oracle.ManagedDataAccess.Core/3.21.100": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-nsqyUE+v246WB0SOnR1u9lfZxYoNcdj1fRjTt7TOhCN0JurEc6+qu+mMe+dl1sySB2UpyWdfqHG1iSQJYaXEfA==",
+ "path": "oracle.manageddataaccess.core/3.21.100",
+ "hashPath": "oracle.manageddataaccess.core.3.21.100.nupkg.sha512"
+ },
+ "Oscar.Data.SqlClient/4.0.4": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VJ3xVvRjxrPi/mMPT5EqYiMZor0MjFu83mw1qvUveBFWJSudGh9BOKZq7RkhqeNCcL1ud0uK0/TVkw+xTa4q4g==",
+ "path": "oscar.data.sqlclient/4.0.4",
+ "hashPath": "oscar.data.sqlclient.4.0.4.nupkg.sha512"
+ },
"Serilog/4.2.0": {
"type": "package",
"serviceable": true,
@@ -702,6 +1616,55 @@
"path": "serilog.sinks.file/6.0.0",
"hashPath": "serilog.sinks.file.6.0.0.nupkg.sha512"
},
+ "SQLitePCLRaw.bundle_e_sqlite3/2.1.10": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UxWuisvZ3uVcVOLJQv7urM/JiQH+v3TmaJc1BLKl5Dxfm/nTzTUrqswCqg/INiYLi61AXnHo1M1JPmPqqLnAdg==",
+ "path": "sqlitepclraw.bundle_e_sqlite3/2.1.10",
+ "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.1.10.nupkg.sha512"
+ },
+ "SQLitePCLRaw.core/2.1.10": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Ii8JCbC7oiVclaE/mbDEK000EFIJ+ShRPwAvvV89GOZhQ+ZLtlnSWl6ksCNMKu/VGXA4Nfi2B7LhN/QFN9oBcw==",
+ "path": "sqlitepclraw.core/2.1.10",
+ "hashPath": "sqlitepclraw.core.2.1.10.nupkg.sha512"
+ },
+ "SQLitePCLRaw.lib.e_sqlite3/2.1.10": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-mAr69tDbnf3QJpRy2nJz8Qdpebdil00fvycyByR58Cn9eARvR+UiG2Vzsp+4q1tV3ikwiYIjlXCQFc12GfebbA==",
+ "path": "sqlitepclraw.lib.e_sqlite3/2.1.10",
+ "hashPath": "sqlitepclraw.lib.e_sqlite3.2.1.10.nupkg.sha512"
+ },
+ "SQLitePCLRaw.provider.e_sqlite3/2.1.10": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-uZVTi02C1SxqzgT0HqTWatIbWGb40iIkfc3FpFCpE/r7g6K0PqzDUeefL6P6HPhDtc6BacN3yQysfzP7ks+wSQ==",
+ "path": "sqlitepclraw.provider.e_sqlite3/2.1.10",
+ "hashPath": "sqlitepclraw.provider.e_sqlite3.2.1.10.nupkg.sha512"
+ },
+ "SqlSugarCore/5.1.4.188": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-thK4mJAxA7t/pKHOiVvRGbqh3mgtkwo4cNzt7cwzDfuTCdVs2edQMPrakPynkdhUo2NUulRHsyjSH7Dqys6gLQ==",
+ "path": "sqlsugarcore/5.1.4.188",
+ "hashPath": "sqlsugarcore.5.1.4.188.nupkg.sha512"
+ },
+ "SqlSugarCore.Dm/8.6.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Q0NAjF9hvkxLbNedIrCqKd3uru0enzZ49GaQtenvsLDQ29aHwlSqg1mRkVYxZ/85UYJFgXh+XHqABSrMgun4aw==",
+ "path": "sqlsugarcore.dm/8.6.0",
+ "hashPath": "sqlsugarcore.dm.8.6.0.nupkg.sha512"
+ },
+ "SqlSugarCore.Kdbndp/9.3.7.311": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dKq09fO7MDGff08Af2sUboD6P1ZMcGiBAAad9VnVSVvMQDq2GMFQVwFl2IM1w1NMZu4exknxCSL8L7iy7CPogA==",
+ "path": "sqlsugarcore.kdbndp/9.3.7.311",
+ "hashPath": "sqlsugarcore.kdbndp.9.3.7.311.nupkg.sha512"
+ },
"System.Buffers/4.5.1": {
"type": "package",
"serviceable": true,
@@ -709,6 +1672,20 @@
"path": "system.buffers/4.5.1",
"hashPath": "system.buffers.4.5.1.nupkg.sha512"
},
+ "System.ClientModel/1.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-I3CVkvxeqFYjIVEP59DnjbeoGNfo/+SZrCLpRz2v/g0gpCHaEMPtWSY0s9k/7jR1rAsLNg2z2u1JRB76tPjnIw==",
+ "path": "system.clientmodel/1.0.0",
+ "hashPath": "system.clientmodel.1.0.0.nupkg.sha512"
+ },
+ "System.Collections/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
+ "path": "system.collections/4.3.0",
+ "hashPath": "system.collections.4.3.0.nupkg.sha512"
+ },
"System.ComponentModel.Annotations/5.0.0": {
"type": "package",
"serviceable": true,
@@ -716,6 +1693,20 @@
"path": "system.componentmodel.annotations/5.0.0",
"hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512"
},
+ "System.Configuration.ConfigurationManager/6.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==",
+ "path": "system.configuration.configurationmanager/6.0.1",
+ "hashPath": "system.configuration.configurationmanager.6.0.1.nupkg.sha512"
+ },
+ "System.Data.Common/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
+ "path": "system.data.common/4.3.0",
+ "hashPath": "system.data.common.4.3.0.nupkg.sha512"
+ },
"System.Diagnostics.DiagnosticSource/9.0.0": {
"type": "package",
"serviceable": true,
@@ -723,6 +1714,55 @@
"path": "system.diagnostics.diagnosticsource/9.0.0",
"hashPath": "system.diagnostics.diagnosticsource.9.0.0.nupkg.sha512"
},
+ "System.Diagnostics.PerformanceCounter/6.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dDl7Gx3bmSrM2k2ZIm+ucEJnLloZRyvfQF1DvfvATcGF3jtaUBiPvChma+6ZcZzxWMirN3kCywkW7PILphXyMQ==",
+ "path": "system.diagnostics.performancecounter/6.0.1",
+ "hashPath": "system.diagnostics.performancecounter.6.0.1.nupkg.sha512"
+ },
+ "System.DirectoryServices/6.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-935IbO7h5FDGYxeO3cbx/CuvBBuk/VI8sENlfmXlh1pupNOB3LAGzdYdPY8CawGJFP7KNrHK5eUlsFoz3F6cuA==",
+ "path": "system.directoryservices/6.0.1",
+ "hashPath": "system.directoryservices.6.0.1.nupkg.sha512"
+ },
+ "System.DirectoryServices.Protocols/6.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ndUZlEkAMc1XzM0xGN++SsJrNhRkIHaKI8+te325vrUgoLT1ufWNI6KB8FFrL7NpRMHPrdxP99aF3fHbAPxW0A==",
+ "path": "system.directoryservices.protocols/6.0.1",
+ "hashPath": "system.directoryservices.protocols.6.0.1.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.IdentityModel.Tokens.Jwt/6.35.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-yxGIQd3BFK7F6S62/7RdZk3C/mfwyVxvh6ngd1VYMBmbJ1YZZA9+Ku6suylVtso0FjI0wbElpJ0d27CdsyLpBQ==",
+ "path": "system.identitymodel.tokens.jwt/6.35.0",
+ "hashPath": "system.identitymodel.tokens.jwt.6.35.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.AccessControl/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-SxHB3nuNrpptVk+vZ/F+7OHEpoHUIKKMl02bUmYHQr1r+glbZQxs7pRtsf4ENO29TVm2TH3AEeep2fJcy92oYw==",
+ "path": "system.io.filesystem.accesscontrol/5.0.0",
+ "hashPath": "system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512"
+ },
"System.IO.Pipelines/9.0.0": {
"type": "package",
"serviceable": true,
@@ -737,12 +1777,68 @@
"path": "system.memory/4.5.5",
"hashPath": "system.memory.4.5.5.nupkg.sha512"
},
- "System.Numerics.Vectors/4.4.0": {
+ "System.Memory.Data/1.0.2": {
"type": "package",
"serviceable": true,
- "sha512": "sha512-UiLzLW+Lw6HLed1Hcg+8jSRttrbuXv7DANVj0DkL9g6EnnzbL75EB7EWsw5uRbhxd/4YdG8li5XizGWepmG3PQ==",
- "path": "system.numerics.vectors/4.4.0",
- "hashPath": "system.numerics.vectors.4.4.0.nupkg.sha512"
+ "sha512": "sha512-JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==",
+ "path": "system.memory.data/1.0.2",
+ "hashPath": "system.memory.data.1.0.2.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.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.Emit.ILGeneration/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
+ "path": "system.reflection.emit.ilgeneration/4.3.0",
+ "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
+ "path": "system.reflection.emit.lightweight/4.3.0",
+ "hashPath": "system.reflection.emit.lightweight.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.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-abhfv1dTK6NXOmu4bgHIONxHyEqFjW8HwXPmpY9gmll+ix9UNo4XDcmzJn6oLooftxNssVHdJC1pGT9jkSynQg==",
+ "path": "system.runtime/4.3.1",
+ "hashPath": "system.runtime.4.3.1.nupkg.sha512"
+ },
+ "System.Runtime.Caching/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==",
+ "path": "system.runtime.caching/6.0.0",
+ "hashPath": "system.runtime.caching.6.0.0.nupkg.sha512"
},
"System.Runtime.CompilerServices.Unsafe/6.0.0": {
"type": "package",
@@ -751,6 +1847,69 @@
"path": "system.runtime.compilerservices.unsafe/6.0.0",
"hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
},
+ "System.Runtime.Extensions/4.3.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-qAtKMcHOAq9/zKkl0dwvF0T0pmgCQxX1rC49rJXoU8jq+lw6MC3uXy7nLFmjEI20T3Aq069eWz4LcYR64vEmJw==",
+ "path": "system.runtime.extensions/4.3.1",
+ "hashPath": "system.runtime.extensions.4.3.1.nupkg.sha512"
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
+ "path": "system.runtime.loader/4.3.0",
+ "hashPath": "system.runtime.loader.4.3.0.nupkg.sha512"
+ },
+ "System.Security.AccessControl/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==",
+ "path": "system.security.accesscontrol/6.0.0",
+ "hashPath": "system.security.accesscontrol.6.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.ProtectedData/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==",
+ "path": "system.security.cryptography.protecteddata/6.0.0",
+ "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512"
+ },
+ "System.Security.Permissions/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==",
+ "path": "system.security.permissions/6.0.0",
+ "hashPath": "system.security.permissions.6.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.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.CodePages/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
+ "path": "system.text.encoding.codepages/6.0.0",
+ "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512"
+ },
"System.Text.Encodings.Web/9.0.0": {
"type": "package",
"serviceable": true,
@@ -765,6 +1924,20 @@
"path": "system.text.json/9.0.0",
"hashPath": "system.text.json.9.0.0.nupkg.sha512"
},
+ "System.Text.RegularExpressions/4.3.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-N0kNRrWe4+nXOWlpLT4LAY5brb8caNFlUuIRpraCVMDLYutKkol1aV079rQjLuSxKMJT2SpBQsYX9xbcTMmzwg==",
+ "path": "system.text.regularexpressions/4.3.1",
+ "hashPath": "system.text.regularexpressions.4.3.1.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.Channels/8.0.0": {
"type": "package",
"serviceable": true,
@@ -772,6 +1945,13 @@
"path": "system.threading.channels/8.0.0",
"hashPath": "system.threading.channels.8.0.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.Tasks.Extensions/4.5.4": {
"type": "package",
"serviceable": true,
@@ -793,11 +1973,44 @@
"path": "touchsocket.core/2.0.0",
"hashPath": "touchsocket.core.2.0.0.nupkg.sha512"
},
+ "TouchSocket.Http/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-pS7HpoSI7DnBtdX6WVph7XKxdaC5IiWJh13ubujvBjD8+FjXVZidecnPOiS3RvKTV9iWzcIOuun1s2CkSZd21A==",
+ "path": "touchsocket.http/2.0.0",
+ "hashPath": "touchsocket.http.2.0.0.nupkg.sha512"
+ },
+ "TouchSocket.Rpc/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-8IhGjKv4NsSvbwKvxpYY36VG0EHj/EJfooVAxuDxM6uKW9ZDEBwd8/7xLidv7traWtLp0XOT6/0Ws6uEfGPttw==",
+ "path": "touchsocket.rpc/2.0.0",
+ "hashPath": "touchsocket.rpc.2.0.0.nupkg.sha512"
+ },
+ "TouchSocket.WebApi/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Xwz8WFVblpdZqXLQ/eKgOlSPffPjiaAv6xOiE9+lyU74d34uLhI6MqRoX0ywkoERNCJkzEsQw5txocDRmXTWxw==",
+ "path": "touchsocket.webapi/2.0.0",
+ "hashPath": "touchsocket.webapi.2.0.0.nupkg.sha512"
+ },
+ "TouchSocket.WebApi.Swagger/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-pw1UvrVUZL2euVS/DTRLSWQqzIOJ9f+HylcIFEh3zokqC+2FIqj7+d/c6z4drjO1OhWi/25+qEMc4ksAup/48w==",
+ "path": "touchsocket.webapi.swagger/2.0.0",
+ "hashPath": "touchsocket.webapi.swagger.2.0.0.nupkg.sha512"
+ },
"Sln.Iot.Config/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
+ "Sln.Iot.Model/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
"Sln.Iot.Serilog/1.0.0": {
"type": "project",
"serviceable": false,
diff --git a/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Socket.dll b/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Socket.dll
index 94f880d..a6f4312 100644
Binary files a/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Socket.dll and b/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Socket.dll differ
diff --git a/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Socket.pdb b/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Socket.pdb
index 70937a5..6ea3648 100644
Binary files a/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Socket.pdb and b/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Socket.pdb differ
diff --git a/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.GeneratedMSBuildEditorConfig.editorconfig b/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.GeneratedMSBuildEditorConfig.editorconfig
index b49d881..b14e065 100644
--- a/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.GeneratedMSBuildEditorConfig.editorconfig
+++ b/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.GeneratedMSBuildEditorConfig.editorconfig
@@ -1,3 +1,3 @@
is_global = true
build_property.RootNamespace = Sln.Iot.Socket
-build_property.ProjectDir = /Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/
+build_property.ProjectDir = /Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/
diff --git a/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.assets.cache b/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.assets.cache
index 497b078..8bb9414 100644
Binary files a/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.assets.cache and b/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.assets.cache differ
diff --git a/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.csproj.AssemblyReference.cache b/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.csproj.AssemblyReference.cache
index 6d0f80e..e62a001 100644
Binary files a/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.csproj.AssemblyReference.cache and b/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.csproj.AssemblyReference.cache differ
diff --git a/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.csproj.CoreCompileInputs.cache b/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.csproj.CoreCompileInputs.cache
index 4f04814..f4c0037 100644
--- a/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.csproj.CoreCompileInputs.cache
+++ b/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.csproj.CoreCompileInputs.cache
@@ -1 +1 @@
-de6894f2a52f069822b5d081b43ddf40787ead9c
+d506f3d99375d6d2210c02c0f3120bc13f5684e7
diff --git a/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.csproj.FileListAbsolute.txt b/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.csproj.FileListAbsolute.txt
index c5f1232..cd60ff3 100644
--- a/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.csproj.FileListAbsolute.txt
+++ b/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.csproj.FileListAbsolute.txt
@@ -13,3 +13,20 @@
/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.csproj.CopyComplete
/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.dll
/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Socket.deps.json
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Socket.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Socket.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Config.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Serilog.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Serilog.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Config.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.csproj.AssemblyReference.cache
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.GeneratedMSBuildEditorConfig.editorconfig
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.AssemblyInfoInputs.cache
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.AssemblyInfo.cs
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.csproj.CoreCompileInputs.cache
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.csproj.CopyComplete
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Model.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/bin/Debug/netstandard2.1/Sln.Iot.Model.pdb
diff --git a/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.dll b/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.dll
index 94f880d..a6f4312 100644
Binary files a/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.dll and b/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.dll differ
diff --git a/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.pdb b/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.pdb
index 70937a5..6ea3648 100644
Binary files a/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.pdb and b/Sln.Iot.Socket/obj/Debug/netstandard2.1/Sln.Iot.Socket.pdb differ
diff --git a/Sln.Iot.Socket/obj/Sln.Iot.Socket.csproj.nuget.dgspec.json b/Sln.Iot.Socket/obj/Sln.Iot.Socket.csproj.nuget.dgspec.json
index dbbf8af..e4c81a5 100644
--- a/Sln.Iot.Socket/obj/Sln.Iot.Socket.csproj.nuget.dgspec.json
+++ b/Sln.Iot.Socket/obj/Sln.Iot.Socket.csproj.nuget.dgspec.json
@@ -1,17 +1,17 @@
{
"format": 1,
"restore": {
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj": {}
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj": {}
},
"projects": {
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj": {
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj",
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj",
"projectName": "Sln.Iot.Config",
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj",
"packagesPath": "/Users/wenxiansheng/.nuget/packages/",
- "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/obj/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
@@ -63,14 +63,73 @@
}
}
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj": {
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj",
- "projectName": "Sln.Iot.Serilog",
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj",
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj",
+ "projectName": "Sln.Iot.Model",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj",
"packagesPath": "/Users/wenxiansheng/.nuget/packages/",
- "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/obj/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/obj/",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
+ ],
+ "originalTargetFrameworks": [
+ "netstandard2.1"
+ ],
+ "sources": {
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "netstandard2.1": {
+ "targetAlias": "netstandard2.1",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "netstandard2.1": {
+ "targetAlias": "netstandard2.1",
+ "dependencies": {
+ "SqlSugarCore": {
+ "target": "Package",
+ "version": "[5.1.4.188, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "NETStandard.Library": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/6.0.417/RuntimeIdentifierGraph.json"
+ }
+ }
+ },
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj",
+ "projectName": "Sln.Iot.Serilog",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj",
+ "packagesPath": "/Users/wenxiansheng/.nuget/packages/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
@@ -85,8 +144,8 @@
"netstandard2.1": {
"targetAlias": "netstandard2.1",
"projectReferences": {
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj"
}
}
}
@@ -130,14 +189,14 @@
}
}
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj": {
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj",
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj",
"projectName": "Sln.Iot.Socket",
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj",
"packagesPath": "/Users/wenxiansheng/.nuget/packages/",
- "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/obj/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
@@ -152,8 +211,11 @@
"netstandard2.1": {
"targetAlias": "netstandard2.1",
"projectReferences": {
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj"
+ },
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj"
}
}
}
@@ -171,6 +233,14 @@
"TouchSocket": {
"target": "Package",
"version": "[2.0.0, )"
+ },
+ "TouchSocket.WebApi": {
+ "target": "Package",
+ "version": "[2.0.0, )"
+ },
+ "TouchSocket.WebApi.Swagger": {
+ "target": "Package",
+ "version": "[2.0.0, )"
}
},
"imports": [
diff --git a/Sln.Iot.Socket/obj/Sln.Iot.Socket.csproj.nuget.g.props b/Sln.Iot.Socket/obj/Sln.Iot.Socket.csproj.nuget.g.props
index 0c90383..371110f 100644
--- a/Sln.Iot.Socket/obj/Sln.Iot.Socket.csproj.nuget.g.props
+++ b/Sln.Iot.Socket/obj/Sln.Iot.Socket.csproj.nuget.g.props
@@ -14,5 +14,6 @@
/Users/wenxiansheng/.nuget/packages/touchsocket.core/2.0.0
+ /Users/wenxiansheng/.nuget/packages/touchsocket.rpc/2.0.0
\ No newline at end of file
diff --git a/Sln.Iot.Socket/obj/project.assets.json b/Sln.Iot.Socket/obj/project.assets.json
index 1620fd8..62af06a 100644
--- a/Sln.Iot.Socket/obj/project.assets.json
+++ b/Sln.Iot.Socket/obj/project.assets.json
@@ -2,6 +2,51 @@
"version": 3,
"targets": {
".NETStandard,Version=v2.1": {
+ "Azure.Core/1.38.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "1.1.1",
+ "System.ClientModel": "1.0.0",
+ "System.Diagnostics.DiagnosticSource": "6.0.1",
+ "System.Memory.Data": "1.0.2",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Text.Encodings.Web": "4.7.2",
+ "System.Text.Json": "4.7.2",
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ },
+ "compile": {
+ "lib/netstandard2.0/Azure.Core.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Azure.Core.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Azure.Identity/1.11.4": {
+ "type": "package",
+ "dependencies": {
+ "Azure.Core": "1.38.0",
+ "Microsoft.Identity.Client": "4.61.3",
+ "Microsoft.Identity.Client.Extensions.Msal": "4.61.3",
+ "System.Memory": "4.5.4",
+ "System.Security.Cryptography.ProtectedData": "4.7.0",
+ "System.Text.Json": "4.7.2",
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ },
+ "compile": {
+ "lib/netstandard2.0/Azure.Identity.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Azure.Identity.dll": {
+ "related": ".xml"
+ }
+ }
+ },
"Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
"type": "package",
"dependencies": {
@@ -83,6 +128,140 @@
}
}
},
+ "Microsoft.CSharp/4.5.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.0/Microsoft.CSharp.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.CSharp.dll": {}
+ }
+ },
+ "Microsoft.Data.SqlClient/5.2.2": {
+ "type": "package",
+ "dependencies": {
+ "Azure.Identity": "1.11.4",
+ "Microsoft.Data.SqlClient.SNI.runtime": "5.2.0",
+ "Microsoft.Identity.Client": "4.61.3",
+ "Microsoft.IdentityModel.JsonWebTokens": "6.35.0",
+ "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.35.0",
+ "Microsoft.SqlServer.Server": "1.0.0",
+ "Microsoft.Win32.Registry": "5.0.0",
+ "System.Configuration.ConfigurationManager": "6.0.1",
+ "System.Diagnostics.DiagnosticSource": "6.0.1",
+ "System.Runtime.Caching": "6.0.0",
+ "System.Runtime.Loader": "4.3.0",
+ "System.Security.Cryptography.Cng": "5.0.0",
+ "System.Security.Principal.Windows": "5.0.0",
+ "System.Text.Encoding.CodePages": "6.0.0",
+ "System.Text.Encodings.Web": "6.0.0"
+ },
+ "compile": {
+ "ref/netstandard2.1/Microsoft.Data.SqlClient.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Data.SqlClient.dll": {
+ "related": ".xml"
+ }
+ },
+ "resource": {
+ "lib/netstandard2.1/de/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "de"
+ },
+ "lib/netstandard2.1/es/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "es"
+ },
+ "lib/netstandard2.1/fr/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/netstandard2.1/it/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "it"
+ },
+ "lib/netstandard2.1/ja/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/netstandard2.1/ko/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/netstandard2.1/pt-BR/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/netstandard2.1/ru/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/netstandard2.1/zh-Hans/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/netstandard2.1/zh-Hant/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "Microsoft.Data.SqlClient.SNI.runtime/5.2.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": {
+ "assetType": "native",
+ "rid": "win-arm"
+ },
+ "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {
+ "assetType": "native",
+ "rid": "win-arm64"
+ },
+ "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {
+ "assetType": "native",
+ "rid": "win-x64"
+ },
+ "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": {
+ "assetType": "native",
+ "rid": "win-x86"
+ }
+ }
+ },
+ "Microsoft.Data.Sqlite/9.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Data.Sqlite.Core": "9.0.0",
+ "SQLitePCLRaw.bundle_e_sqlite3": "2.1.10",
+ "SQLitePCLRaw.core": "2.1.10"
+ },
+ "compile": {
+ "lib/netstandard2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/_._": {}
+ }
+ },
+ "Microsoft.Data.Sqlite.Core/9.0.0": {
+ "type": "package",
+ "dependencies": {
+ "SQLitePCLRaw.core": "2.1.10"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {
+ "related": ".xml"
+ }
+ }
+ },
"Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
"type": "package",
"dependencies": {
@@ -301,6 +480,219 @@
}
}
},
+ "Microsoft.Identity.Client/4.61.3": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.IdentityModel.Abstractions": "6.35.0",
+ "System.Diagnostics.DiagnosticSource": "6.0.1"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Identity.Client.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Identity.Client.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.Identity.Client.Extensions.Msal/4.61.3": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Identity.Client": "4.61.3",
+ "System.IO.FileSystem.AccessControl": "5.0.0",
+ "System.Security.Cryptography.ProtectedData": "4.5.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.Abstractions/6.35.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.JsonWebTokens/6.35.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.IdentityModel.Tokens": "6.35.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encodings.Web": "4.7.2",
+ "System.Text.Json": "4.7.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.Logging/6.35.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.IdentityModel.Abstractions": "6.35.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.Protocols/6.35.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.IdentityModel.Logging": "6.35.0",
+ "Microsoft.IdentityModel.Tokens": "6.35.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.IdentityModel.Protocols": "6.35.0",
+ "System.IdentityModel.Tokens.Jwt": "6.35.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encodings.Web": "4.7.2",
+ "System.Text.Json": "4.7.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.Tokens/6.35.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.CSharp": "4.5.0",
+ "Microsoft.IdentityModel.Logging": "6.35.0",
+ "System.Security.Cryptography.Cng": "4.5.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encodings.Web": "4.7.2",
+ "System.Text.Json": "4.7.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.1.1": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "Microsoft.NETCore.Targets/1.1.3": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "Microsoft.SqlServer.Server/1.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": {
+ "related": ".pdb;.xml"
+ }
+ }
+ },
+ "Microsoft.Win32.Registry/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Buffers": "4.5.1",
+ "System.Memory": "4.5.4",
+ "System.Security.AccessControl": "5.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ },
+ "compile": {
+ "ref/netstandard2.0/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "MySqlConnector/2.2.5": {
+ "type": "package",
+ "dependencies": {
+ "System.Diagnostics.DiagnosticSource": "6.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.1/MySqlConnector.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.1/MySqlConnector.dll": {
+ "related": ".xml"
+ }
+ }
+ },
"Newtonsoft.Json/13.0.3": {
"type": "package",
"compile": {
@@ -314,6 +706,51 @@
}
}
},
+ "Npgsql/5.0.18": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "4.6.0",
+ "System.Text.Json": "4.6.0",
+ "System.Threading.Channels": "4.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.1/Npgsql.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.1/Npgsql.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Oracle.ManagedDataAccess.Core/3.21.100": {
+ "type": "package",
+ "dependencies": {
+ "System.Diagnostics.PerformanceCounter": "6.0.1",
+ "System.DirectoryServices": "6.0.1",
+ "System.DirectoryServices.Protocols": "6.0.1",
+ "System.Text.Json": "6.0.1"
+ },
+ "compile": {
+ "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {}
+ }
+ },
+ "Oscar.Data.SqlClient/4.0.4": {
+ "type": "package",
+ "dependencies": {
+ "System.Text.Encoding.CodePages": "4.7.1"
+ },
+ "compile": {
+ "lib/netstandard2.0/Oscar.Data.SqlClient.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Oscar.Data.SqlClient.dll": {}
+ }
+ },
"Serilog/4.2.0": {
"type": "package",
"dependencies": {
@@ -474,6 +911,178 @@
}
}
},
+ "SQLitePCLRaw.bundle_e_sqlite3/2.1.10": {
+ "type": "package",
+ "dependencies": {
+ "SQLitePCLRaw.lib.e_sqlite3": "2.1.10",
+ "SQLitePCLRaw.provider.e_sqlite3": "2.1.10"
+ },
+ "compile": {
+ "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {}
+ }
+ },
+ "SQLitePCLRaw.core/2.1.10": {
+ "type": "package",
+ "dependencies": {
+ "System.Memory": "4.5.3"
+ },
+ "compile": {
+ "lib/netstandard2.0/SQLitePCLRaw.core.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/SQLitePCLRaw.core.dll": {}
+ }
+ },
+ "SQLitePCLRaw.lib.e_sqlite3/2.1.10": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/_._": {}
+ },
+ "runtimeTargets": {
+ "runtimes/linux-arm/native/libe_sqlite3.so": {
+ "assetType": "native",
+ "rid": "linux-arm"
+ },
+ "runtimes/linux-arm64/native/libe_sqlite3.so": {
+ "assetType": "native",
+ "rid": "linux-arm64"
+ },
+ "runtimes/linux-armel/native/libe_sqlite3.so": {
+ "assetType": "native",
+ "rid": "linux-armel"
+ },
+ "runtimes/linux-mips64/native/libe_sqlite3.so": {
+ "assetType": "native",
+ "rid": "linux-mips64"
+ },
+ "runtimes/linux-musl-arm/native/libe_sqlite3.so": {
+ "assetType": "native",
+ "rid": "linux-musl-arm"
+ },
+ "runtimes/linux-musl-arm64/native/libe_sqlite3.so": {
+ "assetType": "native",
+ "rid": "linux-musl-arm64"
+ },
+ "runtimes/linux-musl-s390x/native/libe_sqlite3.so": {
+ "assetType": "native",
+ "rid": "linux-musl-s390x"
+ },
+ "runtimes/linux-musl-x64/native/libe_sqlite3.so": {
+ "assetType": "native",
+ "rid": "linux-musl-x64"
+ },
+ "runtimes/linux-ppc64le/native/libe_sqlite3.so": {
+ "assetType": "native",
+ "rid": "linux-ppc64le"
+ },
+ "runtimes/linux-s390x/native/libe_sqlite3.so": {
+ "assetType": "native",
+ "rid": "linux-s390x"
+ },
+ "runtimes/linux-x64/native/libe_sqlite3.so": {
+ "assetType": "native",
+ "rid": "linux-x64"
+ },
+ "runtimes/linux-x86/native/libe_sqlite3.so": {
+ "assetType": "native",
+ "rid": "linux-x86"
+ },
+ "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib": {
+ "assetType": "native",
+ "rid": "maccatalyst-arm64"
+ },
+ "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib": {
+ "assetType": "native",
+ "rid": "maccatalyst-x64"
+ },
+ "runtimes/osx-arm64/native/libe_sqlite3.dylib": {
+ "assetType": "native",
+ "rid": "osx-arm64"
+ },
+ "runtimes/osx-x64/native/libe_sqlite3.dylib": {
+ "assetType": "native",
+ "rid": "osx-x64"
+ },
+ "runtimes/win-arm/native/e_sqlite3.dll": {
+ "assetType": "native",
+ "rid": "win-arm"
+ },
+ "runtimes/win-arm64/native/e_sqlite3.dll": {
+ "assetType": "native",
+ "rid": "win-arm64"
+ },
+ "runtimes/win-x64/native/e_sqlite3.dll": {
+ "assetType": "native",
+ "rid": "win-x64"
+ },
+ "runtimes/win-x86/native/e_sqlite3.dll": {
+ "assetType": "native",
+ "rid": "win-x86"
+ }
+ }
+ },
+ "SQLitePCLRaw.provider.e_sqlite3/2.1.10": {
+ "type": "package",
+ "dependencies": {
+ "SQLitePCLRaw.core": "2.1.10"
+ },
+ "compile": {
+ "lib/netstandard2.0/SQLitePCLRaw.provider.e_sqlite3.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/SQLitePCLRaw.provider.e_sqlite3.dll": {}
+ }
+ },
+ "SqlSugarCore/5.1.4.188": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Data.SqlClient": "5.2.2",
+ "Microsoft.Data.Sqlite": "9.0.0",
+ "MySqlConnector": "2.2.5",
+ "Newtonsoft.Json": "13.0.2",
+ "Npgsql": "5.0.18",
+ "Oracle.ManagedDataAccess.Core": "3.21.100",
+ "Oscar.Data.SqlClient": "4.0.4",
+ "SqlSugarCore.Dm": "8.6.0",
+ "SqlSugarCore.Kdbndp": "9.3.7.311",
+ "System.Data.Common": "4.3.0",
+ "System.Reflection.Emit.Lightweight": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.1"
+ },
+ "compile": {
+ "lib/netstandard2.1/SqlSugar.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.1/SqlSugar.dll": {}
+ }
+ },
+ "SqlSugarCore.Dm/8.6.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Text.Encoding.CodePages": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/DM.DmProvider.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/DM.DmProvider.dll": {}
+ }
+ },
+ "SqlSugarCore.Kdbndp/9.3.7.311": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.1/Kdbndp.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.1/Kdbndp.dll": {}
+ }
+ },
"System.Buffers/4.5.1": {
"type": "package",
"compile": {
@@ -487,6 +1096,36 @@
}
}
},
+ "System.ClientModel/1.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Memory.Data": "1.0.2",
+ "System.Text.Json": "4.7.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.ClientModel.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.ClientModel.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Collections/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {
+ "related": ".xml"
+ }
+ }
+ },
"System.ComponentModel.Annotations/5.0.0": {
"type": "package",
"compile": {
@@ -500,6 +1139,44 @@
}
}
},
+ "System.Configuration.ConfigurationManager/6.0.1": {
+ "type": "package",
+ "dependencies": {
+ "System.Security.Cryptography.ProtectedData": "6.0.0",
+ "System.Security.Permissions": "6.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Data.Common/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.2/System.Data.Common.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.2/System.Data.Common.dll": {}
+ }
+ },
"System.Diagnostics.DiagnosticSource/9.0.0": {
"type": "package",
"dependencies": {
@@ -524,6 +1201,124 @@
}
}
},
+ "System.Diagnostics.PerformanceCounter/6.0.1": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.DirectoryServices/6.0.1": {
+ "type": "package",
+ "dependencies": {
+ "System.IO.FileSystem.AccessControl": "5.0.0",
+ "System.Security.AccessControl": "6.0.0",
+ "System.Security.Permissions": "6.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.DirectoryServices.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.DirectoryServices.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.DirectoryServices.Protocols/6.0.1": {
+ "type": "package",
+ "dependencies": {
+ "System.Security.Principal.Windows": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Globalization/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.IdentityModel.Tokens.Jwt/6.35.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.IdentityModel.JsonWebTokens": "6.35.0",
+ "Microsoft.IdentityModel.Tokens": "6.35.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.IO/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.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"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.IO.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.IO.FileSystem.AccessControl/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Buffers": "4.5.1",
+ "System.Memory": "4.5.4",
+ "System.Security.AccessControl": "5.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ },
+ "compile": {
+ "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
"System.IO.Pipelines/9.0.0": {
"type": "package",
"dependencies": {
@@ -560,7 +1355,24 @@
}
}
},
- "System.Numerics.Vectors/4.4.0": {
+ "System.Memory.Data/1.0.2": {
+ "type": "package",
+ "dependencies": {
+ "System.Text.Encodings.Web": "4.7.2",
+ "System.Text.Json": "4.6.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Memory.Data.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Memory.Data.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Numerics.Vectors/4.5.0": {
"type": "package",
"compile": {
"ref/netstandard2.0/System.Numerics.Vectors.dll": {
@@ -573,6 +1385,116 @@
}
}
},
+ "System.Reflection/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Reflection.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/System.Reflection.Primitives.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Runtime/4.3.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.1",
+ "Microsoft.NETCore.Targets": "1.1.3"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Runtime.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Runtime.Caching/6.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Configuration.ConfigurationManager": "6.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Runtime.Caching.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
"System.Runtime.CompilerServices.Unsafe/6.0.0": {
"type": "package",
"compile": {
@@ -586,6 +1508,169 @@
}
}
},
+ "System.Runtime.Extensions/4.3.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.1",
+ "Microsoft.NETCore.Targets": "1.1.3",
+ "System.Runtime": "4.3.1"
+ },
+ "compile": {
+ "ref/netstandard1.5/_._": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Runtime.Loader.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Runtime.Loader.dll": {}
+ }
+ },
+ "System.Security.AccessControl/6.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Security.Principal.Windows": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Security.AccessControl.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Security.AccessControl.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Security.Cryptography.Cng/5.0.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.1/System.Security.Cryptography.Cng.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.1/System.Security.Cryptography.Cng.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Security.Cryptography.ProtectedData/6.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Memory": "4.5.4"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Security.Permissions/6.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Security.AccessControl": "6.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Security.Permissions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Security.Permissions.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Security.Principal.Windows/5.0.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.0/System.Security.Principal.Windows.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Text.Encoding.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Text.Encoding.CodePages/6.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Memory": "4.5.4",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
"System.Text.Encodings.Web/9.0.0": {
"type": "package",
"dependencies": {
@@ -629,6 +1714,40 @@
"buildTransitive/netstandard2.0/System.Text.Json.targets": {}
}
},
+ "System.Text.RegularExpressions/4.3.1": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.1",
+ "System.Runtime.Extensions": "4.3.1",
+ "System.Threading": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.6/System.Text.RegularExpressions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Threading.dll": {}
+ }
+ },
"System.Threading.Channels/8.0.0": {
"type": "package",
"compile": {
@@ -642,6 +1761,19 @@
}
}
},
+ "System.Threading.Tasks/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Threading.Tasks.dll": {
+ "related": ".xml"
+ }
+ }
+ },
"System.Threading.Tasks.Extensions/4.5.4": {
"type": "package",
"dependencies": {
@@ -692,6 +1824,71 @@
}
}
},
+ "TouchSocket.Http/2.0.0": {
+ "type": "package",
+ "dependencies": {
+ "TouchSocket": "2.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.1/TouchSocket.Http.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.1/TouchSocket.Http.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "TouchSocket.Rpc/2.0.0": {
+ "type": "package",
+ "dependencies": {
+ "TouchSocket.Core": "2.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.1/TouchSocket.Rpc.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.1/TouchSocket.Rpc.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "TouchSocket.WebApi/2.0.0": {
+ "type": "package",
+ "dependencies": {
+ "TouchSocket.Http": "2.0.0",
+ "TouchSocket.Rpc": "2.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.1/TouchSocket.WebApi.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.1/TouchSocket.WebApi.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "TouchSocket.WebApi.Swagger/2.0.0": {
+ "type": "package",
+ "dependencies": {
+ "TouchSocket.WebApi": "2.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.1/TouchSocket.WebApi.Swagger.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.1/TouchSocket.WebApi.Swagger.dll": {
+ "related": ".xml"
+ }
+ }
+ },
"Sln.Iot.Config/1.0.0": {
"type": "project",
"framework": ".NETStandard,Version=v2.1",
@@ -705,6 +1902,19 @@
"bin/placeholder/Sln.Iot.Config.dll": {}
}
},
+ "Sln.Iot.Model/1.0.0": {
+ "type": "project",
+ "framework": ".NETStandard,Version=v2.1",
+ "dependencies": {
+ "SqlSugarCore": "5.1.4.188"
+ },
+ "compile": {
+ "bin/placeholder/Sln.Iot.Model.dll": {}
+ },
+ "runtime": {
+ "bin/placeholder/Sln.Iot.Model.dll": {}
+ }
+ },
"Sln.Iot.Serilog/1.0.0": {
"type": "project",
"framework": ".NETStandard,Version=v2.1",
@@ -723,6 +1933,44 @@
}
},
"libraries": {
+ "Azure.Core/1.38.0": {
+ "sha512": "IuEgCoVA0ef7E4pQtpC3+TkPbzaoQfa77HlfJDmfuaJUCVJmn7fT0izamZiryW5sYUFKizsftIxMkXKbgIcPMQ==",
+ "type": "package",
+ "path": "azure.core/1.38.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "CHANGELOG.md",
+ "README.md",
+ "azure.core.1.38.0.nupkg.sha512",
+ "azure.core.nuspec",
+ "azureicon.png",
+ "lib/net461/Azure.Core.dll",
+ "lib/net461/Azure.Core.xml",
+ "lib/net472/Azure.Core.dll",
+ "lib/net472/Azure.Core.xml",
+ "lib/net6.0/Azure.Core.dll",
+ "lib/net6.0/Azure.Core.xml",
+ "lib/netstandard2.0/Azure.Core.dll",
+ "lib/netstandard2.0/Azure.Core.xml"
+ ]
+ },
+ "Azure.Identity/1.11.4": {
+ "sha512": "Sf4BoE6Q3jTgFkgBkx7qztYOFELBCo+wQgpYDwal/qJ1unBH73ywPztIJKXBXORRzAeNijsuxhk94h0TIMvfYg==",
+ "type": "package",
+ "path": "azure.identity/1.11.4",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "CHANGELOG.md",
+ "README.md",
+ "azure.identity.1.11.4.nupkg.sha512",
+ "azure.identity.nuspec",
+ "azureicon.png",
+ "lib/netstandard2.0/Azure.Identity.dll",
+ "lib/netstandard2.0/Azure.Identity.xml"
+ ]
+ },
"Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
"sha512": "ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==",
"type": "package",
@@ -801,6 +2049,215 @@
"useSharedDesignerContext.txt"
]
},
+ "Microsoft.CSharp/4.5.0": {
+ "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
+ "type": "package",
+ "path": "microsoft.csharp/4.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/Microsoft.CSharp.dll",
+ "lib/netcoreapp2.0/_._",
+ "lib/netstandard1.3/Microsoft.CSharp.dll",
+ "lib/netstandard2.0/Microsoft.CSharp.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/uap10.0.16299/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "microsoft.csharp.4.5.0.nupkg.sha512",
+ "microsoft.csharp.nuspec",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/Microsoft.CSharp.dll",
+ "ref/netcore50/Microsoft.CSharp.xml",
+ "ref/netcore50/de/Microsoft.CSharp.xml",
+ "ref/netcore50/es/Microsoft.CSharp.xml",
+ "ref/netcore50/fr/Microsoft.CSharp.xml",
+ "ref/netcore50/it/Microsoft.CSharp.xml",
+ "ref/netcore50/ja/Microsoft.CSharp.xml",
+ "ref/netcore50/ko/Microsoft.CSharp.xml",
+ "ref/netcore50/ru/Microsoft.CSharp.xml",
+ "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
+ "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
+ "ref/netcoreapp2.0/_._",
+ "ref/netstandard1.0/Microsoft.CSharp.dll",
+ "ref/netstandard1.0/Microsoft.CSharp.xml",
+ "ref/netstandard1.0/de/Microsoft.CSharp.xml",
+ "ref/netstandard1.0/es/Microsoft.CSharp.xml",
+ "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
+ "ref/netstandard1.0/it/Microsoft.CSharp.xml",
+ "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
+ "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
+ "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
+ "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
+ "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
+ "ref/netstandard2.0/Microsoft.CSharp.dll",
+ "ref/netstandard2.0/Microsoft.CSharp.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/uap10.0.16299/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Data.SqlClient/5.2.2": {
+ "sha512": "mtoeRMh7F/OA536c/Cnh8L4H0uLSKB5kSmoi54oN7Fp0hNJDy22IqyMhaMH4PkDCqI7xL//Fvg9ldtuPHG0h5g==",
+ "type": "package",
+ "path": "microsoft.data.sqlclient/5.2.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "dotnet.png",
+ "lib/net462/Microsoft.Data.SqlClient.dll",
+ "lib/net462/Microsoft.Data.SqlClient.xml",
+ "lib/net462/de/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net462/es/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net462/fr/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net462/it/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net462/ja/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net462/ko/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net462/pt-BR/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net462/ru/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net462/zh-Hans/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net462/zh-Hant/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net6.0/Microsoft.Data.SqlClient.dll",
+ "lib/net6.0/Microsoft.Data.SqlClient.xml",
+ "lib/net6.0/de/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net6.0/es/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net6.0/fr/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net6.0/it/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net6.0/ja/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net6.0/ko/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net6.0/pt-BR/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net6.0/ru/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net6.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net6.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net8.0/Microsoft.Data.SqlClient.dll",
+ "lib/net8.0/Microsoft.Data.SqlClient.xml",
+ "lib/net8.0/de/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net8.0/es/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net8.0/fr/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net8.0/it/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net8.0/ja/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net8.0/ko/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net8.0/pt-BR/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net8.0/ru/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net8.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net8.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll",
+ "lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
+ "lib/netstandard2.0/Microsoft.Data.SqlClient.xml",
+ "lib/netstandard2.0/de/Microsoft.Data.SqlClient.resources.dll",
+ "lib/netstandard2.0/es/Microsoft.Data.SqlClient.resources.dll",
+ "lib/netstandard2.0/fr/Microsoft.Data.SqlClient.resources.dll",
+ "lib/netstandard2.0/it/Microsoft.Data.SqlClient.resources.dll",
+ "lib/netstandard2.0/ja/Microsoft.Data.SqlClient.resources.dll",
+ "lib/netstandard2.0/ko/Microsoft.Data.SqlClient.resources.dll",
+ "lib/netstandard2.0/pt-BR/Microsoft.Data.SqlClient.resources.dll",
+ "lib/netstandard2.0/ru/Microsoft.Data.SqlClient.resources.dll",
+ "lib/netstandard2.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll",
+ "lib/netstandard2.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll",
+ "lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
+ "lib/netstandard2.1/Microsoft.Data.SqlClient.xml",
+ "lib/netstandard2.1/de/Microsoft.Data.SqlClient.resources.dll",
+ "lib/netstandard2.1/es/Microsoft.Data.SqlClient.resources.dll",
+ "lib/netstandard2.1/fr/Microsoft.Data.SqlClient.resources.dll",
+ "lib/netstandard2.1/it/Microsoft.Data.SqlClient.resources.dll",
+ "lib/netstandard2.1/ja/Microsoft.Data.SqlClient.resources.dll",
+ "lib/netstandard2.1/ko/Microsoft.Data.SqlClient.resources.dll",
+ "lib/netstandard2.1/pt-BR/Microsoft.Data.SqlClient.resources.dll",
+ "lib/netstandard2.1/ru/Microsoft.Data.SqlClient.resources.dll",
+ "lib/netstandard2.1/zh-Hans/Microsoft.Data.SqlClient.resources.dll",
+ "lib/netstandard2.1/zh-Hant/Microsoft.Data.SqlClient.resources.dll",
+ "microsoft.data.sqlclient.5.2.2.nupkg.sha512",
+ "microsoft.data.sqlclient.nuspec",
+ "ref/net462/Microsoft.Data.SqlClient.dll",
+ "ref/net462/Microsoft.Data.SqlClient.xml",
+ "ref/net6.0/Microsoft.Data.SqlClient.dll",
+ "ref/net6.0/Microsoft.Data.SqlClient.xml",
+ "ref/net8.0/Microsoft.Data.SqlClient.dll",
+ "ref/net8.0/Microsoft.Data.SqlClient.xml",
+ "ref/netstandard2.0/Microsoft.Data.SqlClient.dll",
+ "ref/netstandard2.0/Microsoft.Data.SqlClient.xml",
+ "ref/netstandard2.1/Microsoft.Data.SqlClient.dll",
+ "ref/netstandard2.1/Microsoft.Data.SqlClient.xml",
+ "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll",
+ "runtimes/unix/lib/net8.0/Microsoft.Data.SqlClient.dll",
+ "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
+ "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
+ "runtimes/win/lib/net462/Microsoft.Data.SqlClient.dll",
+ "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll",
+ "runtimes/win/lib/net8.0/Microsoft.Data.SqlClient.dll",
+ "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
+ "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll"
+ ]
+ },
+ "Microsoft.Data.SqlClient.SNI.runtime/5.2.0": {
+ "sha512": "po1jhvFd+8pbfvJR/puh+fkHi0GRanAdvayh/0e47yaM6CXWZ6opUjCMFuYlAnD2LcbyvQE7fPJKvogmaUcN+w==",
+ "type": "package",
+ "path": "microsoft.data.sqlclient.sni.runtime/5.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.txt",
+ "dotnet.png",
+ "microsoft.data.sqlclient.sni.runtime.5.2.0.nupkg.sha512",
+ "microsoft.data.sqlclient.sni.runtime.nuspec",
+ "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll",
+ "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll",
+ "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll",
+ "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll"
+ ]
+ },
+ "Microsoft.Data.Sqlite/9.0.0": {
+ "sha512": "lw6wthgXGx3r/U775k1UkUAWIn0kAT0wj4ZRq0WlhPx4WAOiBsIjgDKgWkXcNTGT0KfHiClkM+tyPVFDvxeObw==",
+ "type": "package",
+ "path": "microsoft.data.sqlite/9.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "PACKAGE.md",
+ "lib/netstandard2.0/_._",
+ "microsoft.data.sqlite.9.0.0.nupkg.sha512",
+ "microsoft.data.sqlite.nuspec"
+ ]
+ },
+ "Microsoft.Data.Sqlite.Core/9.0.0": {
+ "sha512": "cFfZjFL+tqzGYw9lB31EkV1IWF5xRQNk2k+MQd+Cf86Gl6zTeAoiZIFw5sRB1Z8OxpEC7nu+nTDsLSjieBAPTw==",
+ "type": "package",
+ "path": "microsoft.data.sqlite.core/9.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "PACKAGE.md",
+ "lib/net6.0/Microsoft.Data.Sqlite.dll",
+ "lib/net6.0/Microsoft.Data.Sqlite.xml",
+ "lib/net8.0/Microsoft.Data.Sqlite.dll",
+ "lib/net8.0/Microsoft.Data.Sqlite.xml",
+ "lib/netstandard2.0/Microsoft.Data.Sqlite.dll",
+ "lib/netstandard2.0/Microsoft.Data.Sqlite.xml",
+ "microsoft.data.sqlite.core.9.0.0.nupkg.sha512",
+ "microsoft.data.sqlite.core.nuspec"
+ ]
+ },
"Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
"sha512": "lqvd7W3FGKUO1+ZoUEMaZ5XDJeWvjpy2/M/ptCGz3tXLD4HWVaSzjufsAsjemasBEg+2SxXVtYVvGt5r2nKDlg==",
"type": "package",
@@ -1215,6 +2672,300 @@
"useSharedDesignerContext.txt"
]
},
+ "Microsoft.Identity.Client/4.61.3": {
+ "sha512": "naJo/Qm35Caaoxp5utcw+R8eU8ZtLz2ALh8S+gkekOYQ1oazfCQMWVT4NJ/FnHzdIJlm8dMz0oMpMGCabx5odA==",
+ "type": "package",
+ "path": "microsoft.identity.client/4.61.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "README.md",
+ "lib/net462/Microsoft.Identity.Client.dll",
+ "lib/net462/Microsoft.Identity.Client.xml",
+ "lib/net6.0-android31.0/Microsoft.Identity.Client.dll",
+ "lib/net6.0-android31.0/Microsoft.Identity.Client.xml",
+ "lib/net6.0-ios15.4/Microsoft.Identity.Client.dll",
+ "lib/net6.0-ios15.4/Microsoft.Identity.Client.xml",
+ "lib/net6.0/Microsoft.Identity.Client.dll",
+ "lib/net6.0/Microsoft.Identity.Client.xml",
+ "lib/netstandard2.0/Microsoft.Identity.Client.dll",
+ "lib/netstandard2.0/Microsoft.Identity.Client.xml",
+ "microsoft.identity.client.4.61.3.nupkg.sha512",
+ "microsoft.identity.client.nuspec"
+ ]
+ },
+ "Microsoft.Identity.Client.Extensions.Msal/4.61.3": {
+ "sha512": "PWnJcznrSGr25MN8ajlc2XIDW4zCFu0U6FkpaNLEWLgd1NgFCp5uDY3mqLDgM8zCN8hqj8yo5wHYfLB2HjcdGw==",
+ "type": "package",
+ "path": "microsoft.identity.client.extensions.msal/4.61.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll",
+ "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.xml",
+ "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll",
+ "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.xml",
+ "microsoft.identity.client.extensions.msal.4.61.3.nupkg.sha512",
+ "microsoft.identity.client.extensions.msal.nuspec"
+ ]
+ },
+ "Microsoft.IdentityModel.Abstractions/6.35.0": {
+ "sha512": "xuR8E4Rd96M41CnUSCiOJ2DBh+z+zQSmyrYHdYhD6K4fXBcQGVnRCFQ0efROUYpP+p0zC1BLKr0JRpVuujTZSg==",
+ "type": "package",
+ "path": "microsoft.identitymodel.abstractions/6.35.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net45/Microsoft.IdentityModel.Abstractions.dll",
+ "lib/net45/Microsoft.IdentityModel.Abstractions.xml",
+ "lib/net461/Microsoft.IdentityModel.Abstractions.dll",
+ "lib/net461/Microsoft.IdentityModel.Abstractions.xml",
+ "lib/net462/Microsoft.IdentityModel.Abstractions.dll",
+ "lib/net462/Microsoft.IdentityModel.Abstractions.xml",
+ "lib/net472/Microsoft.IdentityModel.Abstractions.dll",
+ "lib/net472/Microsoft.IdentityModel.Abstractions.xml",
+ "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll",
+ "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml",
+ "microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512",
+ "microsoft.identitymodel.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.IdentityModel.JsonWebTokens/6.35.0": {
+ "sha512": "9wxai3hKgZUb4/NjdRKfQd0QJvtXKDlvmGMYACbEC8DFaicMFCFhQFZq9ZET1kJLwZahf2lfY5Gtcpsx8zYzbg==",
+ "type": "package",
+ "path": "microsoft.identitymodel.jsonwebtokens/6.35.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
+ "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
+ "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
+ "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
+ "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll",
+ "lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml",
+ "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll",
+ "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml",
+ "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll",
+ "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml",
+ "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
+ "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
+ "microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512",
+ "microsoft.identitymodel.jsonwebtokens.nuspec"
+ ]
+ },
+ "Microsoft.IdentityModel.Logging/6.35.0": {
+ "sha512": "jePrSfGAmqT81JDCNSY+fxVWoGuJKt9e6eJ+vT7+quVS55nWl//jGjUQn4eFtVKt4rt5dXaleZdHRB9J9AJZ7Q==",
+ "type": "package",
+ "path": "microsoft.identitymodel.logging/6.35.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net45/Microsoft.IdentityModel.Logging.dll",
+ "lib/net45/Microsoft.IdentityModel.Logging.xml",
+ "lib/net461/Microsoft.IdentityModel.Logging.dll",
+ "lib/net461/Microsoft.IdentityModel.Logging.xml",
+ "lib/net462/Microsoft.IdentityModel.Logging.dll",
+ "lib/net462/Microsoft.IdentityModel.Logging.xml",
+ "lib/net472/Microsoft.IdentityModel.Logging.dll",
+ "lib/net472/Microsoft.IdentityModel.Logging.xml",
+ "lib/net6.0/Microsoft.IdentityModel.Logging.dll",
+ "lib/net6.0/Microsoft.IdentityModel.Logging.xml",
+ "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
+ "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
+ "microsoft.identitymodel.logging.6.35.0.nupkg.sha512",
+ "microsoft.identitymodel.logging.nuspec"
+ ]
+ },
+ "Microsoft.IdentityModel.Protocols/6.35.0": {
+ "sha512": "BPQhlDzdFvv1PzaUxNSk+VEPwezlDEVADIKmyxubw7IiELK18uJ06RQ9QKKkds30XI+gDu9n8j24XQ8w7fjWcg==",
+ "type": "package",
+ "path": "microsoft.identitymodel.protocols/6.35.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net45/Microsoft.IdentityModel.Protocols.dll",
+ "lib/net45/Microsoft.IdentityModel.Protocols.xml",
+ "lib/net461/Microsoft.IdentityModel.Protocols.dll",
+ "lib/net461/Microsoft.IdentityModel.Protocols.xml",
+ "lib/net462/Microsoft.IdentityModel.Protocols.dll",
+ "lib/net462/Microsoft.IdentityModel.Protocols.xml",
+ "lib/net472/Microsoft.IdentityModel.Protocols.dll",
+ "lib/net472/Microsoft.IdentityModel.Protocols.xml",
+ "lib/net6.0/Microsoft.IdentityModel.Protocols.dll",
+ "lib/net6.0/Microsoft.IdentityModel.Protocols.xml",
+ "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll",
+ "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml",
+ "microsoft.identitymodel.protocols.6.35.0.nupkg.sha512",
+ "microsoft.identitymodel.protocols.nuspec"
+ ]
+ },
+ "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": {
+ "sha512": "LMtVqnECCCdSmyFoCOxIE5tXQqkOLrvGrL7OxHg41DIm1bpWtaCdGyVcTAfOQpJXvzND9zUKIN/lhngPkYR8vg==",
+ "type": "package",
+ "path": "microsoft.identitymodel.protocols.openidconnect/6.35.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
+ "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
+ "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
+ "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
+ "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
+ "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
+ "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
+ "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
+ "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
+ "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
+ "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
+ "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
+ "microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512",
+ "microsoft.identitymodel.protocols.openidconnect.nuspec"
+ ]
+ },
+ "Microsoft.IdentityModel.Tokens/6.35.0": {
+ "sha512": "RN7lvp7s3Boucg1NaNAbqDbxtlLj5Qeb+4uSS1TeK5FSBVM40P4DKaTKChT43sHyKfh7V0zkrMph6DdHvyA4bg==",
+ "type": "package",
+ "path": "microsoft.identitymodel.tokens/6.35.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net45/Microsoft.IdentityModel.Tokens.dll",
+ "lib/net45/Microsoft.IdentityModel.Tokens.xml",
+ "lib/net461/Microsoft.IdentityModel.Tokens.dll",
+ "lib/net461/Microsoft.IdentityModel.Tokens.xml",
+ "lib/net462/Microsoft.IdentityModel.Tokens.dll",
+ "lib/net462/Microsoft.IdentityModel.Tokens.xml",
+ "lib/net472/Microsoft.IdentityModel.Tokens.dll",
+ "lib/net472/Microsoft.IdentityModel.Tokens.xml",
+ "lib/net6.0/Microsoft.IdentityModel.Tokens.dll",
+ "lib/net6.0/Microsoft.IdentityModel.Tokens.xml",
+ "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
+ "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
+ "microsoft.identitymodel.tokens.6.35.0.nupkg.sha512",
+ "microsoft.identitymodel.tokens.nuspec"
+ ]
+ },
+ "Microsoft.NETCore.Platforms/1.1.1": {
+ "sha512": "TMBuzAHpTenGbGgk0SMTwyEkyijY/Eae4ZGsFNYJvAr/LDn1ku3Etp3FPxChmDp5HHF3kzJuoaa08N0xjqAJfQ==",
+ "type": "package",
+ "path": "microsoft.netcore.platforms/1.1.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "microsoft.netcore.platforms.1.1.1.nupkg.sha512",
+ "microsoft.netcore.platforms.nuspec",
+ "runtime.json"
+ ]
+ },
+ "Microsoft.NETCore.Targets/1.1.3": {
+ "sha512": "3Wrmi0kJDzClwAC+iBdUBpEKmEle8FQNsCs77fkiOIw/9oYA07bL1EZNX0kQ2OMN3xpwvl0vAtOCYY3ndDNlhQ==",
+ "type": "package",
+ "path": "microsoft.netcore.targets/1.1.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "microsoft.netcore.targets.1.1.3.nupkg.sha512",
+ "microsoft.netcore.targets.nuspec",
+ "runtime.json"
+ ]
+ },
+ "Microsoft.SqlServer.Server/1.0.0": {
+ "sha512": "N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==",
+ "type": "package",
+ "path": "microsoft.sqlserver.server/1.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "dotnet.png",
+ "lib/net46/Microsoft.SqlServer.Server.dll",
+ "lib/net46/Microsoft.SqlServer.Server.pdb",
+ "lib/net46/Microsoft.SqlServer.Server.xml",
+ "lib/netstandard2.0/Microsoft.SqlServer.Server.dll",
+ "lib/netstandard2.0/Microsoft.SqlServer.Server.pdb",
+ "lib/netstandard2.0/Microsoft.SqlServer.Server.xml",
+ "microsoft.sqlserver.server.1.0.0.nupkg.sha512",
+ "microsoft.sqlserver.server.nuspec"
+ ]
+ },
+ "Microsoft.Win32.Registry/5.0.0": {
+ "sha512": "dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
+ "type": "package",
+ "path": "microsoft.win32.registry/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net46/Microsoft.Win32.Registry.dll",
+ "lib/net461/Microsoft.Win32.Registry.dll",
+ "lib/net461/Microsoft.Win32.Registry.xml",
+ "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
+ "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
+ "lib/netstandard2.0/Microsoft.Win32.Registry.xml",
+ "microsoft.win32.registry.5.0.0.nupkg.sha512",
+ "microsoft.win32.registry.nuspec",
+ "ref/net46/Microsoft.Win32.Registry.dll",
+ "ref/net461/Microsoft.Win32.Registry.dll",
+ "ref/net461/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
+ "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
+ "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
+ "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
+ "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
+ "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
+ "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
+ "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
+ "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
+ "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "MySqlConnector/2.2.5": {
+ "sha512": "6sinY78RvryhHwpup3awdjYO7d5hhWahb5p/1VDODJhSxJggV/sBbYuKK5IQF9TuzXABiddqUbmRfM884tqA3Q==",
+ "type": "package",
+ "path": "mysqlconnector/2.2.5",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "README.md",
+ "lib/net461/MySqlConnector.dll",
+ "lib/net461/MySqlConnector.xml",
+ "lib/net471/MySqlConnector.dll",
+ "lib/net471/MySqlConnector.xml",
+ "lib/net6.0/MySqlConnector.dll",
+ "lib/net6.0/MySqlConnector.xml",
+ "lib/net7.0/MySqlConnector.dll",
+ "lib/net7.0/MySqlConnector.xml",
+ "lib/netcoreapp3.1/MySqlConnector.dll",
+ "lib/netcoreapp3.1/MySqlConnector.xml",
+ "lib/netstandard2.0/MySqlConnector.dll",
+ "lib/netstandard2.0/MySqlConnector.xml",
+ "lib/netstandard2.1/MySqlConnector.dll",
+ "lib/netstandard2.1/MySqlConnector.xml",
+ "logo.png",
+ "mysqlconnector.2.2.5.nupkg.sha512",
+ "mysqlconnector.nuspec"
+ ]
+ },
"Newtonsoft.Json/13.0.3": {
"sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
"type": "package",
@@ -1245,6 +2996,55 @@
"packageIcon.png"
]
},
+ "Npgsql/5.0.18": {
+ "sha512": "1u4iCPKL9wtPeSUzChIbgq/BlOhvf44o7xASacdpMY7z0PbqACKpNOF0fjEn9jDV/AJl/HtPY6zk5qasQ1URhw==",
+ "type": "package",
+ "path": "npgsql/5.0.18",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net5.0/Npgsql.dll",
+ "lib/net5.0/Npgsql.xml",
+ "lib/netcoreapp3.1/Npgsql.dll",
+ "lib/netcoreapp3.1/Npgsql.xml",
+ "lib/netstandard2.0/Npgsql.dll",
+ "lib/netstandard2.0/Npgsql.xml",
+ "lib/netstandard2.1/Npgsql.dll",
+ "lib/netstandard2.1/Npgsql.xml",
+ "npgsql.5.0.18.nupkg.sha512",
+ "npgsql.nuspec",
+ "postgresql.png"
+ ]
+ },
+ "Oracle.ManagedDataAccess.Core/3.21.100": {
+ "sha512": "nsqyUE+v246WB0SOnR1u9lfZxYoNcdj1fRjTt7TOhCN0JurEc6+qu+mMe+dl1sySB2UpyWdfqHG1iSQJYaXEfA==",
+ "type": "package",
+ "path": "oracle.manageddataaccess.core/3.21.100",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.txt",
+ "PerfCounters/register_odpc_perfmon_counters.ps1",
+ "PerfCounters/unregister_odpc_perfmon_counters.ps1",
+ "info.txt",
+ "lib/netstandard2.1/Oracle.ManagedDataAccess.dll",
+ "oracle.manageddataaccess.core.3.21.100.nupkg.sha512",
+ "oracle.manageddataaccess.core.nuspec",
+ "readme.txt"
+ ]
+ },
+ "Oscar.Data.SqlClient/4.0.4": {
+ "sha512": "VJ3xVvRjxrPi/mMPT5EqYiMZor0MjFu83mw1qvUveBFWJSudGh9BOKZq7RkhqeNCcL1ud0uK0/TVkw+xTa4q4g==",
+ "type": "package",
+ "path": "oscar.data.sqlclient/4.0.4",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Oscar.Data.SqlClient.dll",
+ "oscar.data.sqlclient.4.0.4.nupkg.sha512",
+ "oscar.data.sqlclient.nuspec"
+ ]
+ },
"Serilog/4.2.0": {
"sha512": "gmoWVOvKgbME8TYR+gwMf7osROiWAURterc6Rt2dQyX7wtjZYpqFiA/pY6ztjGQKKV62GGCyOcmtP1UKMHgSmA==",
"type": "package",
@@ -1452,6 +3252,134 @@
"serilog.sinks.file.nuspec"
]
},
+ "SQLitePCLRaw.bundle_e_sqlite3/2.1.10": {
+ "sha512": "UxWuisvZ3uVcVOLJQv7urM/JiQH+v3TmaJc1BLKl5Dxfm/nTzTUrqswCqg/INiYLi61AXnHo1M1JPmPqqLnAdg==",
+ "type": "package",
+ "path": "sqlitepclraw.bundle_e_sqlite3/2.1.10",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/monoandroid90/SQLitePCLRaw.batteries_v2.dll",
+ "lib/net461/SQLitePCLRaw.batteries_v2.dll",
+ "lib/net6.0-android31.0/SQLitePCLRaw.batteries_v2.dll",
+ "lib/net6.0-android31.0/SQLitePCLRaw.batteries_v2.xml",
+ "lib/net6.0-ios14.0/SQLitePCLRaw.batteries_v2.dll",
+ "lib/net6.0-ios14.2/SQLitePCLRaw.batteries_v2.dll",
+ "lib/net6.0-tvos10.0/SQLitePCLRaw.batteries_v2.dll",
+ "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll",
+ "lib/xamarinios10/SQLitePCLRaw.batteries_v2.dll",
+ "sqlitepclraw.bundle_e_sqlite3.2.1.10.nupkg.sha512",
+ "sqlitepclraw.bundle_e_sqlite3.nuspec"
+ ]
+ },
+ "SQLitePCLRaw.core/2.1.10": {
+ "sha512": "Ii8JCbC7oiVclaE/mbDEK000EFIJ+ShRPwAvvV89GOZhQ+ZLtlnSWl6ksCNMKu/VGXA4Nfi2B7LhN/QFN9oBcw==",
+ "type": "package",
+ "path": "sqlitepclraw.core/2.1.10",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/SQLitePCLRaw.core.dll",
+ "sqlitepclraw.core.2.1.10.nupkg.sha512",
+ "sqlitepclraw.core.nuspec"
+ ]
+ },
+ "SQLitePCLRaw.lib.e_sqlite3/2.1.10": {
+ "sha512": "mAr69tDbnf3QJpRy2nJz8Qdpebdil00fvycyByR58Cn9eARvR+UiG2Vzsp+4q1tV3ikwiYIjlXCQFc12GfebbA==",
+ "type": "package",
+ "path": "sqlitepclraw.lib.e_sqlite3/2.1.10",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "buildTransitive/net461/SQLitePCLRaw.lib.e_sqlite3.targets",
+ "buildTransitive/net6.0/SQLitePCLRaw.lib.e_sqlite3.targets",
+ "buildTransitive/net7.0/SQLitePCLRaw.lib.e_sqlite3.targets",
+ "buildTransitive/net8.0/SQLitePCLRaw.lib.e_sqlite3.targets",
+ "buildTransitive/net9.0/SQLitePCLRaw.lib.e_sqlite3.targets",
+ "lib/net461/_._",
+ "lib/netstandard2.0/_._",
+ "runtimes/browser-wasm/nativeassets/net6.0/e_sqlite3.a",
+ "runtimes/browser-wasm/nativeassets/net7.0/e_sqlite3.a",
+ "runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a",
+ "runtimes/browser-wasm/nativeassets/net9.0/e_sqlite3.a",
+ "runtimes/linux-arm/native/libe_sqlite3.so",
+ "runtimes/linux-arm64/native/libe_sqlite3.so",
+ "runtimes/linux-armel/native/libe_sqlite3.so",
+ "runtimes/linux-mips64/native/libe_sqlite3.so",
+ "runtimes/linux-musl-arm/native/libe_sqlite3.so",
+ "runtimes/linux-musl-arm64/native/libe_sqlite3.so",
+ "runtimes/linux-musl-s390x/native/libe_sqlite3.so",
+ "runtimes/linux-musl-x64/native/libe_sqlite3.so",
+ "runtimes/linux-ppc64le/native/libe_sqlite3.so",
+ "runtimes/linux-s390x/native/libe_sqlite3.so",
+ "runtimes/linux-x64/native/libe_sqlite3.so",
+ "runtimes/linux-x86/native/libe_sqlite3.so",
+ "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib",
+ "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib",
+ "runtimes/osx-arm64/native/libe_sqlite3.dylib",
+ "runtimes/osx-x64/native/libe_sqlite3.dylib",
+ "runtimes/win-arm/native/e_sqlite3.dll",
+ "runtimes/win-arm64/native/e_sqlite3.dll",
+ "runtimes/win-x64/native/e_sqlite3.dll",
+ "runtimes/win-x86/native/e_sqlite3.dll",
+ "runtimes/win10-arm/nativeassets/uap10.0/e_sqlite3.dll",
+ "runtimes/win10-arm64/nativeassets/uap10.0/e_sqlite3.dll",
+ "runtimes/win10-x64/nativeassets/uap10.0/e_sqlite3.dll",
+ "runtimes/win10-x86/nativeassets/uap10.0/e_sqlite3.dll",
+ "sqlitepclraw.lib.e_sqlite3.2.1.10.nupkg.sha512",
+ "sqlitepclraw.lib.e_sqlite3.nuspec"
+ ]
+ },
+ "SQLitePCLRaw.provider.e_sqlite3/2.1.10": {
+ "sha512": "uZVTi02C1SxqzgT0HqTWatIbWGb40iIkfc3FpFCpE/r7g6K0PqzDUeefL6P6HPhDtc6BacN3yQysfzP7ks+wSQ==",
+ "type": "package",
+ "path": "sqlitepclraw.provider.e_sqlite3/2.1.10",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net6.0-windows7.0/SQLitePCLRaw.provider.e_sqlite3.dll",
+ "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll",
+ "lib/netstandard2.0/SQLitePCLRaw.provider.e_sqlite3.dll",
+ "sqlitepclraw.provider.e_sqlite3.2.1.10.nupkg.sha512",
+ "sqlitepclraw.provider.e_sqlite3.nuspec"
+ ]
+ },
+ "SqlSugarCore/5.1.4.188": {
+ "sha512": "thK4mJAxA7t/pKHOiVvRGbqh3mgtkwo4cNzt7cwzDfuTCdVs2edQMPrakPynkdhUo2NUulRHsyjSH7Dqys6gLQ==",
+ "type": "package",
+ "path": "sqlsugarcore/5.1.4.188",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.1/SqlSugar.dll",
+ "sqlsugarcore.5.1.4.188.nupkg.sha512",
+ "sqlsugarcore.nuspec"
+ ]
+ },
+ "SqlSugarCore.Dm/8.6.0": {
+ "sha512": "Q0NAjF9hvkxLbNedIrCqKd3uru0enzZ49GaQtenvsLDQ29aHwlSqg1mRkVYxZ/85UYJFgXh+XHqABSrMgun4aw==",
+ "type": "package",
+ "path": "sqlsugarcore.dm/8.6.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/DM.DmProvider.dll",
+ "sqlsugarcore.dm.8.6.0.nupkg.sha512",
+ "sqlsugarcore.dm.nuspec"
+ ]
+ },
+ "SqlSugarCore.Kdbndp/9.3.7.311": {
+ "sha512": "dKq09fO7MDGff08Af2sUboD6P1ZMcGiBAAad9VnVSVvMQDq2GMFQVwFl2IM1w1NMZu4exknxCSL8L7iy7CPogA==",
+ "type": "package",
+ "path": "sqlsugarcore.kdbndp/9.3.7.311",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.1/Kdbndp.dll",
+ "sqlsugarcore.kdbndp.9.3.7.311.nupkg.sha512",
+ "sqlsugarcore.kdbndp.nuspec"
+ ]
+ },
"System.Buffers/4.5.1": {
"sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
"type": "package",
@@ -1483,6 +3411,92 @@
"version.txt"
]
},
+ "System.ClientModel/1.0.0": {
+ "sha512": "I3CVkvxeqFYjIVEP59DnjbeoGNfo/+SZrCLpRz2v/g0gpCHaEMPtWSY0s9k/7jR1rAsLNg2z2u1JRB76tPjnIw==",
+ "type": "package",
+ "path": "system.clientmodel/1.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "CHANGELOG.md",
+ "DotNetPackageIcon.png",
+ "README.md",
+ "lib/net6.0/System.ClientModel.dll",
+ "lib/net6.0/System.ClientModel.xml",
+ "lib/netstandard2.0/System.ClientModel.dll",
+ "lib/netstandard2.0/System.ClientModel.xml",
+ "system.clientmodel.1.0.0.nupkg.sha512",
+ "system.clientmodel.nuspec"
+ ]
+ },
+ "System.Collections/4.3.0": {
+ "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
+ "type": "package",
+ "path": "system.collections/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Collections.dll",
+ "ref/netcore50/System.Collections.xml",
+ "ref/netcore50/de/System.Collections.xml",
+ "ref/netcore50/es/System.Collections.xml",
+ "ref/netcore50/fr/System.Collections.xml",
+ "ref/netcore50/it/System.Collections.xml",
+ "ref/netcore50/ja/System.Collections.xml",
+ "ref/netcore50/ko/System.Collections.xml",
+ "ref/netcore50/ru/System.Collections.xml",
+ "ref/netcore50/zh-hans/System.Collections.xml",
+ "ref/netcore50/zh-hant/System.Collections.xml",
+ "ref/netstandard1.0/System.Collections.dll",
+ "ref/netstandard1.0/System.Collections.xml",
+ "ref/netstandard1.0/de/System.Collections.xml",
+ "ref/netstandard1.0/es/System.Collections.xml",
+ "ref/netstandard1.0/fr/System.Collections.xml",
+ "ref/netstandard1.0/it/System.Collections.xml",
+ "ref/netstandard1.0/ja/System.Collections.xml",
+ "ref/netstandard1.0/ko/System.Collections.xml",
+ "ref/netstandard1.0/ru/System.Collections.xml",
+ "ref/netstandard1.0/zh-hans/System.Collections.xml",
+ "ref/netstandard1.0/zh-hant/System.Collections.xml",
+ "ref/netstandard1.3/System.Collections.dll",
+ "ref/netstandard1.3/System.Collections.xml",
+ "ref/netstandard1.3/de/System.Collections.xml",
+ "ref/netstandard1.3/es/System.Collections.xml",
+ "ref/netstandard1.3/fr/System.Collections.xml",
+ "ref/netstandard1.3/it/System.Collections.xml",
+ "ref/netstandard1.3/ja/System.Collections.xml",
+ "ref/netstandard1.3/ko/System.Collections.xml",
+ "ref/netstandard1.3/ru/System.Collections.xml",
+ "ref/netstandard1.3/zh-hans/System.Collections.xml",
+ "ref/netstandard1.3/zh-hant/System.Collections.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.collections.4.3.0.nupkg.sha512",
+ "system.collections.nuspec"
+ ]
+ },
"System.ComponentModel.Annotations/5.0.0": {
"sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
"type": "package",
@@ -1573,6 +3587,82 @@
"version.txt"
]
},
+ "System.Configuration.ConfigurationManager/6.0.1": {
+ "sha512": "jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==",
+ "type": "package",
+ "path": "system.configuration.configurationmanager/6.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/net461/System.Configuration.ConfigurationManager.dll",
+ "lib/net461/System.Configuration.ConfigurationManager.xml",
+ "lib/net6.0/System.Configuration.ConfigurationManager.dll",
+ "lib/net6.0/System.Configuration.ConfigurationManager.xml",
+ "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
+ "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
+ "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll",
+ "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml",
+ "system.configuration.configurationmanager.6.0.1.nupkg.sha512",
+ "system.configuration.configurationmanager.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Data.Common/4.3.0": {
+ "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
+ "type": "package",
+ "path": "system.data.common/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net451/System.Data.Common.dll",
+ "lib/netstandard1.2/System.Data.Common.dll",
+ "lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net451/System.Data.Common.dll",
+ "ref/netstandard1.2/System.Data.Common.dll",
+ "ref/netstandard1.2/System.Data.Common.xml",
+ "ref/netstandard1.2/de/System.Data.Common.xml",
+ "ref/netstandard1.2/es/System.Data.Common.xml",
+ "ref/netstandard1.2/fr/System.Data.Common.xml",
+ "ref/netstandard1.2/it/System.Data.Common.xml",
+ "ref/netstandard1.2/ja/System.Data.Common.xml",
+ "ref/netstandard1.2/ko/System.Data.Common.xml",
+ "ref/netstandard1.2/ru/System.Data.Common.xml",
+ "ref/netstandard1.2/zh-hans/System.Data.Common.xml",
+ "ref/netstandard1.2/zh-hant/System.Data.Common.xml",
+ "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
+ "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml",
+ "ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml",
+ "ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml",
+ "ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml",
+ "ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml",
+ "ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml",
+ "ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml",
+ "ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml",
+ "ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml",
+ "ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.data.common.4.3.0.nupkg.sha512",
+ "system.data.common.nuspec"
+ ]
+ },
"System.Diagnostics.DiagnosticSource/9.0.0": {
"sha512": "ddppcFpnbohLWdYKr/ZeLZHmmI+DXFgZ3Snq+/E7SwcdW4UnvxmaugkwGywvGVWkHPGCSZjCP+MLzu23AL5SDw==",
"type": "package",
@@ -1605,6 +3695,315 @@
"useSharedDesignerContext.txt"
]
},
+ "System.Diagnostics.PerformanceCounter/6.0.1": {
+ "sha512": "dDl7Gx3bmSrM2k2ZIm+ucEJnLloZRyvfQF1DvfvATcGF3jtaUBiPvChma+6ZcZzxWMirN3kCywkW7PILphXyMQ==",
+ "type": "package",
+ "path": "system.diagnostics.performancecounter/6.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/netcoreapp2.0/System.Diagnostics.PerformanceCounter.targets",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/net461/System.Diagnostics.PerformanceCounter.dll",
+ "lib/net461/System.Diagnostics.PerformanceCounter.xml",
+ "lib/net6.0/System.Diagnostics.PerformanceCounter.dll",
+ "lib/net6.0/System.Diagnostics.PerformanceCounter.xml",
+ "lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.dll",
+ "lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.xml",
+ "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll",
+ "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml",
+ "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll",
+ "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.xml",
+ "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.dll",
+ "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.xml",
+ "system.diagnostics.performancecounter.6.0.1.nupkg.sha512",
+ "system.diagnostics.performancecounter.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.DirectoryServices/6.0.1": {
+ "sha512": "935IbO7h5FDGYxeO3cbx/CuvBBuk/VI8sENlfmXlh1pupNOB3LAGzdYdPY8CawGJFP7KNrHK5eUlsFoz3F6cuA==",
+ "type": "package",
+ "path": "system.directoryservices/6.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/netcoreapp2.0/System.DirectoryServices.targets",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/net461/_._",
+ "lib/net6.0/System.DirectoryServices.dll",
+ "lib/net6.0/System.DirectoryServices.xml",
+ "lib/netcoreapp3.1/System.DirectoryServices.dll",
+ "lib/netcoreapp3.1/System.DirectoryServices.xml",
+ "lib/netstandard2.0/System.DirectoryServices.dll",
+ "lib/netstandard2.0/System.DirectoryServices.xml",
+ "runtimes/win/lib/net6.0/System.DirectoryServices.dll",
+ "runtimes/win/lib/net6.0/System.DirectoryServices.xml",
+ "runtimes/win/lib/netcoreapp3.1/System.DirectoryServices.dll",
+ "runtimes/win/lib/netcoreapp3.1/System.DirectoryServices.xml",
+ "system.directoryservices.6.0.1.nupkg.sha512",
+ "system.directoryservices.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.DirectoryServices.Protocols/6.0.1": {
+ "sha512": "ndUZlEkAMc1XzM0xGN++SsJrNhRkIHaKI8+te325vrUgoLT1ufWNI6KB8FFrL7NpRMHPrdxP99aF3fHbAPxW0A==",
+ "type": "package",
+ "path": "system.directoryservices.protocols/6.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/netcoreapp2.0/System.DirectoryServices.Protocols.targets",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/net461/_._",
+ "lib/net6.0/System.DirectoryServices.Protocols.dll",
+ "lib/net6.0/System.DirectoryServices.Protocols.xml",
+ "lib/netcoreapp3.1/System.DirectoryServices.Protocols.dll",
+ "lib/netcoreapp3.1/System.DirectoryServices.Protocols.xml",
+ "lib/netstandard2.0/System.DirectoryServices.Protocols.dll",
+ "lib/netstandard2.0/System.DirectoryServices.Protocols.xml",
+ "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll",
+ "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.xml",
+ "runtimes/linux/lib/netcoreapp3.1/System.DirectoryServices.Protocols.dll",
+ "runtimes/linux/lib/netcoreapp3.1/System.DirectoryServices.Protocols.xml",
+ "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll",
+ "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.xml",
+ "runtimes/osx/lib/netcoreapp3.1/System.DirectoryServices.Protocols.dll",
+ "runtimes/osx/lib/netcoreapp3.1/System.DirectoryServices.Protocols.xml",
+ "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll",
+ "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.xml",
+ "runtimes/win/lib/netcoreapp3.1/System.DirectoryServices.Protocols.dll",
+ "runtimes/win/lib/netcoreapp3.1/System.DirectoryServices.Protocols.xml",
+ "system.directoryservices.protocols.6.0.1.nupkg.sha512",
+ "system.directoryservices.protocols.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Globalization/4.3.0": {
+ "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
+ "type": "package",
+ "path": "system.globalization/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Globalization.dll",
+ "ref/netcore50/System.Globalization.xml",
+ "ref/netcore50/de/System.Globalization.xml",
+ "ref/netcore50/es/System.Globalization.xml",
+ "ref/netcore50/fr/System.Globalization.xml",
+ "ref/netcore50/it/System.Globalization.xml",
+ "ref/netcore50/ja/System.Globalization.xml",
+ "ref/netcore50/ko/System.Globalization.xml",
+ "ref/netcore50/ru/System.Globalization.xml",
+ "ref/netcore50/zh-hans/System.Globalization.xml",
+ "ref/netcore50/zh-hant/System.Globalization.xml",
+ "ref/netstandard1.0/System.Globalization.dll",
+ "ref/netstandard1.0/System.Globalization.xml",
+ "ref/netstandard1.0/de/System.Globalization.xml",
+ "ref/netstandard1.0/es/System.Globalization.xml",
+ "ref/netstandard1.0/fr/System.Globalization.xml",
+ "ref/netstandard1.0/it/System.Globalization.xml",
+ "ref/netstandard1.0/ja/System.Globalization.xml",
+ "ref/netstandard1.0/ko/System.Globalization.xml",
+ "ref/netstandard1.0/ru/System.Globalization.xml",
+ "ref/netstandard1.0/zh-hans/System.Globalization.xml",
+ "ref/netstandard1.0/zh-hant/System.Globalization.xml",
+ "ref/netstandard1.3/System.Globalization.dll",
+ "ref/netstandard1.3/System.Globalization.xml",
+ "ref/netstandard1.3/de/System.Globalization.xml",
+ "ref/netstandard1.3/es/System.Globalization.xml",
+ "ref/netstandard1.3/fr/System.Globalization.xml",
+ "ref/netstandard1.3/it/System.Globalization.xml",
+ "ref/netstandard1.3/ja/System.Globalization.xml",
+ "ref/netstandard1.3/ko/System.Globalization.xml",
+ "ref/netstandard1.3/ru/System.Globalization.xml",
+ "ref/netstandard1.3/zh-hans/System.Globalization.xml",
+ "ref/netstandard1.3/zh-hant/System.Globalization.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.globalization.4.3.0.nupkg.sha512",
+ "system.globalization.nuspec"
+ ]
+ },
+ "System.IdentityModel.Tokens.Jwt/6.35.0": {
+ "sha512": "yxGIQd3BFK7F6S62/7RdZk3C/mfwyVxvh6ngd1VYMBmbJ1YZZA9+Ku6suylVtso0FjI0wbElpJ0d27CdsyLpBQ==",
+ "type": "package",
+ "path": "system.identitymodel.tokens.jwt/6.35.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
+ "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
+ "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
+ "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
+ "lib/net462/System.IdentityModel.Tokens.Jwt.dll",
+ "lib/net462/System.IdentityModel.Tokens.Jwt.xml",
+ "lib/net472/System.IdentityModel.Tokens.Jwt.dll",
+ "lib/net472/System.IdentityModel.Tokens.Jwt.xml",
+ "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll",
+ "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml",
+ "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
+ "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
+ "system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512",
+ "system.identitymodel.tokens.jwt.nuspec"
+ ]
+ },
+ "System.IO/4.3.0": {
+ "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
+ "type": "package",
+ "path": "system.io/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.IO.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.IO.dll",
+ "ref/netcore50/System.IO.dll",
+ "ref/netcore50/System.IO.xml",
+ "ref/netcore50/de/System.IO.xml",
+ "ref/netcore50/es/System.IO.xml",
+ "ref/netcore50/fr/System.IO.xml",
+ "ref/netcore50/it/System.IO.xml",
+ "ref/netcore50/ja/System.IO.xml",
+ "ref/netcore50/ko/System.IO.xml",
+ "ref/netcore50/ru/System.IO.xml",
+ "ref/netcore50/zh-hans/System.IO.xml",
+ "ref/netcore50/zh-hant/System.IO.xml",
+ "ref/netstandard1.0/System.IO.dll",
+ "ref/netstandard1.0/System.IO.xml",
+ "ref/netstandard1.0/de/System.IO.xml",
+ "ref/netstandard1.0/es/System.IO.xml",
+ "ref/netstandard1.0/fr/System.IO.xml",
+ "ref/netstandard1.0/it/System.IO.xml",
+ "ref/netstandard1.0/ja/System.IO.xml",
+ "ref/netstandard1.0/ko/System.IO.xml",
+ "ref/netstandard1.0/ru/System.IO.xml",
+ "ref/netstandard1.0/zh-hans/System.IO.xml",
+ "ref/netstandard1.0/zh-hant/System.IO.xml",
+ "ref/netstandard1.3/System.IO.dll",
+ "ref/netstandard1.3/System.IO.xml",
+ "ref/netstandard1.3/de/System.IO.xml",
+ "ref/netstandard1.3/es/System.IO.xml",
+ "ref/netstandard1.3/fr/System.IO.xml",
+ "ref/netstandard1.3/it/System.IO.xml",
+ "ref/netstandard1.3/ja/System.IO.xml",
+ "ref/netstandard1.3/ko/System.IO.xml",
+ "ref/netstandard1.3/ru/System.IO.xml",
+ "ref/netstandard1.3/zh-hans/System.IO.xml",
+ "ref/netstandard1.3/zh-hant/System.IO.xml",
+ "ref/netstandard1.5/System.IO.dll",
+ "ref/netstandard1.5/System.IO.xml",
+ "ref/netstandard1.5/de/System.IO.xml",
+ "ref/netstandard1.5/es/System.IO.xml",
+ "ref/netstandard1.5/fr/System.IO.xml",
+ "ref/netstandard1.5/it/System.IO.xml",
+ "ref/netstandard1.5/ja/System.IO.xml",
+ "ref/netstandard1.5/ko/System.IO.xml",
+ "ref/netstandard1.5/ru/System.IO.xml",
+ "ref/netstandard1.5/zh-hans/System.IO.xml",
+ "ref/netstandard1.5/zh-hant/System.IO.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.io.4.3.0.nupkg.sha512",
+ "system.io.nuspec"
+ ]
+ },
+ "System.IO.FileSystem.AccessControl/5.0.0": {
+ "sha512": "SxHB3nuNrpptVk+vZ/F+7OHEpoHUIKKMl02bUmYHQr1r+glbZQxs7pRtsf4ENO29TVm2TH3AEeep2fJcy92oYw==",
+ "type": "package",
+ "path": "system.io.filesystem.accesscontrol/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net46/System.IO.FileSystem.AccessControl.dll",
+ "lib/net461/System.IO.FileSystem.AccessControl.dll",
+ "lib/net461/System.IO.FileSystem.AccessControl.xml",
+ "lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
+ "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
+ "lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
+ "ref/net46/System.IO.FileSystem.AccessControl.dll",
+ "ref/net461/System.IO.FileSystem.AccessControl.dll",
+ "ref/net461/System.IO.FileSystem.AccessControl.xml",
+ "ref/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
+ "ref/netstandard1.3/System.IO.FileSystem.AccessControl.xml",
+ "ref/netstandard1.3/de/System.IO.FileSystem.AccessControl.xml",
+ "ref/netstandard1.3/es/System.IO.FileSystem.AccessControl.xml",
+ "ref/netstandard1.3/fr/System.IO.FileSystem.AccessControl.xml",
+ "ref/netstandard1.3/it/System.IO.FileSystem.AccessControl.xml",
+ "ref/netstandard1.3/ja/System.IO.FileSystem.AccessControl.xml",
+ "ref/netstandard1.3/ko/System.IO.FileSystem.AccessControl.xml",
+ "ref/netstandard1.3/ru/System.IO.FileSystem.AccessControl.xml",
+ "ref/netstandard1.3/zh-hans/System.IO.FileSystem.AccessControl.xml",
+ "ref/netstandard1.3/zh-hant/System.IO.FileSystem.AccessControl.xml",
+ "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
+ "ref/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
+ "runtimes/win/lib/net46/System.IO.FileSystem.AccessControl.dll",
+ "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.dll",
+ "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.xml",
+ "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
+ "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
+ "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
+ "system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512",
+ "system.io.filesystem.accesscontrol.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
"System.IO.Pipelines/9.0.0": {
"sha512": "eA3cinogwaNB4jdjQHOP3Z3EuyiDII7MT35jgtnsA4vkn0LUrrSHsU0nzHTzFzmaFYeKV7MYyMxOocFzsBHpTw==",
"type": "package",
@@ -1656,10 +4055,28 @@
"version.txt"
]
},
- "System.Numerics.Vectors/4.4.0": {
- "sha512": "UiLzLW+Lw6HLed1Hcg+8jSRttrbuXv7DANVj0DkL9g6EnnzbL75EB7EWsw5uRbhxd/4YdG8li5XizGWepmG3PQ==",
+ "System.Memory.Data/1.0.2": {
+ "sha512": "JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==",
"type": "package",
- "path": "system.numerics.vectors/4.4.0",
+ "path": "system.memory.data/1.0.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "CHANGELOG.md",
+ "DotNetPackageIcon.png",
+ "README.md",
+ "lib/net461/System.Memory.Data.dll",
+ "lib/net461/System.Memory.Data.xml",
+ "lib/netstandard2.0/System.Memory.Data.dll",
+ "lib/netstandard2.0/System.Memory.Data.xml",
+ "system.memory.data.1.0.2.nupkg.sha512",
+ "system.memory.data.nuspec"
+ ]
+ },
+ "System.Numerics.Vectors/4.5.0": {
+ "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
+ "type": "package",
+ "path": "system.numerics.vectors/4.5.0",
"files": [
".nupkg.metadata",
".signature.p7s",
@@ -1676,12 +4093,15 @@
"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/_._",
@@ -1689,16 +4109,431 @@
"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.4.0.nupkg.sha512",
+ "system.numerics.vectors.4.5.0.nupkg.sha512",
"system.numerics.vectors.nuspec",
"useSharedDesignerContext.txt",
"version.txt"
]
},
+ "System.Reflection/4.3.0": {
+ "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
+ "type": "package",
+ "path": "system.reflection/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Reflection.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Reflection.dll",
+ "ref/netcore50/System.Reflection.dll",
+ "ref/netcore50/System.Reflection.xml",
+ "ref/netcore50/de/System.Reflection.xml",
+ "ref/netcore50/es/System.Reflection.xml",
+ "ref/netcore50/fr/System.Reflection.xml",
+ "ref/netcore50/it/System.Reflection.xml",
+ "ref/netcore50/ja/System.Reflection.xml",
+ "ref/netcore50/ko/System.Reflection.xml",
+ "ref/netcore50/ru/System.Reflection.xml",
+ "ref/netcore50/zh-hans/System.Reflection.xml",
+ "ref/netcore50/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.0/System.Reflection.dll",
+ "ref/netstandard1.0/System.Reflection.xml",
+ "ref/netstandard1.0/de/System.Reflection.xml",
+ "ref/netstandard1.0/es/System.Reflection.xml",
+ "ref/netstandard1.0/fr/System.Reflection.xml",
+ "ref/netstandard1.0/it/System.Reflection.xml",
+ "ref/netstandard1.0/ja/System.Reflection.xml",
+ "ref/netstandard1.0/ko/System.Reflection.xml",
+ "ref/netstandard1.0/ru/System.Reflection.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.3/System.Reflection.dll",
+ "ref/netstandard1.3/System.Reflection.xml",
+ "ref/netstandard1.3/de/System.Reflection.xml",
+ "ref/netstandard1.3/es/System.Reflection.xml",
+ "ref/netstandard1.3/fr/System.Reflection.xml",
+ "ref/netstandard1.3/it/System.Reflection.xml",
+ "ref/netstandard1.3/ja/System.Reflection.xml",
+ "ref/netstandard1.3/ko/System.Reflection.xml",
+ "ref/netstandard1.3/ru/System.Reflection.xml",
+ "ref/netstandard1.3/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.3/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.5/System.Reflection.dll",
+ "ref/netstandard1.5/System.Reflection.xml",
+ "ref/netstandard1.5/de/System.Reflection.xml",
+ "ref/netstandard1.5/es/System.Reflection.xml",
+ "ref/netstandard1.5/fr/System.Reflection.xml",
+ "ref/netstandard1.5/it/System.Reflection.xml",
+ "ref/netstandard1.5/ja/System.Reflection.xml",
+ "ref/netstandard1.5/ko/System.Reflection.xml",
+ "ref/netstandard1.5/ru/System.Reflection.xml",
+ "ref/netstandard1.5/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.5/zh-hant/System.Reflection.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.4.3.0.nupkg.sha512",
+ "system.reflection.nuspec"
+ ]
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
+ "type": "package",
+ "path": "system.reflection.emit.ilgeneration/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
+ "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
+ "lib/portable-net45+wp8/_._",
+ "lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
+ "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
+ "ref/portable-net45+wp8/_._",
+ "ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/_._",
+ "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
+ "system.reflection.emit.ilgeneration.nuspec"
+ ]
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
+ "type": "package",
+ "path": "system.reflection.emit.lightweight/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
+ "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
+ "lib/portable-net45+wp8/_._",
+ "lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
+ "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
+ "ref/portable-net45+wp8/_._",
+ "ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/_._",
+ "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
+ "system.reflection.emit.lightweight.nuspec"
+ ]
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
+ "type": "package",
+ "path": "system.reflection.primitives/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Reflection.Primitives.dll",
+ "ref/netcore50/System.Reflection.Primitives.xml",
+ "ref/netcore50/de/System.Reflection.Primitives.xml",
+ "ref/netcore50/es/System.Reflection.Primitives.xml",
+ "ref/netcore50/fr/System.Reflection.Primitives.xml",
+ "ref/netcore50/it/System.Reflection.Primitives.xml",
+ "ref/netcore50/ja/System.Reflection.Primitives.xml",
+ "ref/netcore50/ko/System.Reflection.Primitives.xml",
+ "ref/netcore50/ru/System.Reflection.Primitives.xml",
+ "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
+ "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/System.Reflection.Primitives.dll",
+ "ref/netstandard1.0/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.primitives.4.3.0.nupkg.sha512",
+ "system.reflection.primitives.nuspec"
+ ]
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
+ "type": "package",
+ "path": "system.resources.resourcemanager/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Resources.ResourceManager.dll",
+ "ref/netcore50/System.Resources.ResourceManager.xml",
+ "ref/netcore50/de/System.Resources.ResourceManager.xml",
+ "ref/netcore50/es/System.Resources.ResourceManager.xml",
+ "ref/netcore50/fr/System.Resources.ResourceManager.xml",
+ "ref/netcore50/it/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ja/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ko/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ru/System.Resources.ResourceManager.xml",
+ "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
+ "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/System.Resources.ResourceManager.dll",
+ "ref/netstandard1.0/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.resources.resourcemanager.4.3.0.nupkg.sha512",
+ "system.resources.resourcemanager.nuspec"
+ ]
+ },
+ "System.Runtime/4.3.1": {
+ "sha512": "abhfv1dTK6NXOmu4bgHIONxHyEqFjW8HwXPmpY9gmll+ix9UNo4XDcmzJn6oLooftxNssVHdJC1pGT9jkSynQg==",
+ "type": "package",
+ "path": "system.runtime/4.3.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Runtime.dll",
+ "lib/portable-net45+win8+wp80+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Runtime.dll",
+ "ref/netcore50/System.Runtime.dll",
+ "ref/netcore50/System.Runtime.xml",
+ "ref/netcore50/de/System.Runtime.xml",
+ "ref/netcore50/es/System.Runtime.xml",
+ "ref/netcore50/fr/System.Runtime.xml",
+ "ref/netcore50/it/System.Runtime.xml",
+ "ref/netcore50/ja/System.Runtime.xml",
+ "ref/netcore50/ko/System.Runtime.xml",
+ "ref/netcore50/ru/System.Runtime.xml",
+ "ref/netcore50/zh-hans/System.Runtime.xml",
+ "ref/netcore50/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.0/System.Runtime.dll",
+ "ref/netstandard1.0/System.Runtime.xml",
+ "ref/netstandard1.0/de/System.Runtime.xml",
+ "ref/netstandard1.0/es/System.Runtime.xml",
+ "ref/netstandard1.0/fr/System.Runtime.xml",
+ "ref/netstandard1.0/it/System.Runtime.xml",
+ "ref/netstandard1.0/ja/System.Runtime.xml",
+ "ref/netstandard1.0/ko/System.Runtime.xml",
+ "ref/netstandard1.0/ru/System.Runtime.xml",
+ "ref/netstandard1.0/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.0/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.2/System.Runtime.dll",
+ "ref/netstandard1.2/System.Runtime.xml",
+ "ref/netstandard1.2/de/System.Runtime.xml",
+ "ref/netstandard1.2/es/System.Runtime.xml",
+ "ref/netstandard1.2/fr/System.Runtime.xml",
+ "ref/netstandard1.2/it/System.Runtime.xml",
+ "ref/netstandard1.2/ja/System.Runtime.xml",
+ "ref/netstandard1.2/ko/System.Runtime.xml",
+ "ref/netstandard1.2/ru/System.Runtime.xml",
+ "ref/netstandard1.2/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.2/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.3/System.Runtime.dll",
+ "ref/netstandard1.3/System.Runtime.xml",
+ "ref/netstandard1.3/de/System.Runtime.xml",
+ "ref/netstandard1.3/es/System.Runtime.xml",
+ "ref/netstandard1.3/fr/System.Runtime.xml",
+ "ref/netstandard1.3/it/System.Runtime.xml",
+ "ref/netstandard1.3/ja/System.Runtime.xml",
+ "ref/netstandard1.3/ko/System.Runtime.xml",
+ "ref/netstandard1.3/ru/System.Runtime.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.5/System.Runtime.dll",
+ "ref/netstandard1.5/System.Runtime.xml",
+ "ref/netstandard1.5/de/System.Runtime.xml",
+ "ref/netstandard1.5/es/System.Runtime.xml",
+ "ref/netstandard1.5/fr/System.Runtime.xml",
+ "ref/netstandard1.5/it/System.Runtime.xml",
+ "ref/netstandard1.5/ja/System.Runtime.xml",
+ "ref/netstandard1.5/ko/System.Runtime.xml",
+ "ref/netstandard1.5/ru/System.Runtime.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.xml",
+ "ref/portable-net45+win8+wp80+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.4.3.1.nupkg.sha512",
+ "system.runtime.nuspec"
+ ]
+ },
+ "System.Runtime.Caching/6.0.0": {
+ "sha512": "E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==",
+ "type": "package",
+ "path": "system.runtime.caching/6.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/netcoreapp2.0/System.Runtime.Caching.targets",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net461/_._",
+ "lib/net6.0/System.Runtime.Caching.dll",
+ "lib/net6.0/System.Runtime.Caching.xml",
+ "lib/netcoreapp3.1/System.Runtime.Caching.dll",
+ "lib/netcoreapp3.1/System.Runtime.Caching.xml",
+ "lib/netstandard2.0/System.Runtime.Caching.dll",
+ "lib/netstandard2.0/System.Runtime.Caching.xml",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "runtimes/win/lib/net461/_._",
+ "runtimes/win/lib/net6.0/System.Runtime.Caching.dll",
+ "runtimes/win/lib/net6.0/System.Runtime.Caching.xml",
+ "runtimes/win/lib/netcoreapp3.1/System.Runtime.Caching.dll",
+ "runtimes/win/lib/netcoreapp3.1/System.Runtime.Caching.xml",
+ "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll",
+ "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml",
+ "system.runtime.caching.6.0.0.nupkg.sha512",
+ "system.runtime.caching.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
"System.Runtime.CompilerServices.Unsafe/6.0.0": {
"sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
"type": "package",
@@ -1724,6 +4559,455 @@
"useSharedDesignerContext.txt"
]
},
+ "System.Runtime.Extensions/4.3.1": {
+ "sha512": "qAtKMcHOAq9/zKkl0dwvF0T0pmgCQxX1rC49rJXoU8jq+lw6MC3uXy7nLFmjEI20T3Aq069eWz4LcYR64vEmJw==",
+ "type": "package",
+ "path": "system.runtime.extensions/4.3.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Runtime.Extensions.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Runtime.Extensions.dll",
+ "ref/netcore50/System.Runtime.Extensions.dll",
+ "ref/netcore50/System.Runtime.Extensions.xml",
+ "ref/netcore50/de/System.Runtime.Extensions.xml",
+ "ref/netcore50/es/System.Runtime.Extensions.xml",
+ "ref/netcore50/fr/System.Runtime.Extensions.xml",
+ "ref/netcore50/it/System.Runtime.Extensions.xml",
+ "ref/netcore50/ja/System.Runtime.Extensions.xml",
+ "ref/netcore50/ko/System.Runtime.Extensions.xml",
+ "ref/netcore50/ru/System.Runtime.Extensions.xml",
+ "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/System.Runtime.Extensions.dll",
+ "ref/netstandard1.0/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/System.Runtime.Extensions.dll",
+ "ref/netstandard1.3/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/System.Runtime.Extensions.dll",
+ "ref/netstandard1.5/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.extensions.4.3.1.nupkg.sha512",
+ "system.runtime.extensions.nuspec"
+ ]
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "sha512": "DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
+ "type": "package",
+ "path": "system.runtime.loader/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net462/_._",
+ "lib/netstandard1.5/System.Runtime.Loader.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/netstandard1.5/System.Runtime.Loader.dll",
+ "ref/netstandard1.5/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/de/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/es/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/fr/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/it/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/ja/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/ko/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/ru/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml",
+ "system.runtime.loader.4.3.0.nupkg.sha512",
+ "system.runtime.loader.nuspec"
+ ]
+ },
+ "System.Security.AccessControl/6.0.0": {
+ "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==",
+ "type": "package",
+ "path": "system.security.accesscontrol/6.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/net461/System.Security.AccessControl.dll",
+ "lib/net461/System.Security.AccessControl.xml",
+ "lib/net6.0/System.Security.AccessControl.dll",
+ "lib/net6.0/System.Security.AccessControl.xml",
+ "lib/netstandard2.0/System.Security.AccessControl.dll",
+ "lib/netstandard2.0/System.Security.AccessControl.xml",
+ "runtimes/win/lib/net461/System.Security.AccessControl.dll",
+ "runtimes/win/lib/net461/System.Security.AccessControl.xml",
+ "runtimes/win/lib/net6.0/System.Security.AccessControl.dll",
+ "runtimes/win/lib/net6.0/System.Security.AccessControl.xml",
+ "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll",
+ "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml",
+ "system.security.accesscontrol.6.0.0.nupkg.sha512",
+ "system.security.accesscontrol.nuspec",
+ "useSharedDesignerContext.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.ProtectedData/6.0.0": {
+ "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==",
+ "type": "package",
+ "path": "system.security.cryptography.protecteddata/6.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net461/System.Security.Cryptography.ProtectedData.dll",
+ "lib/net461/System.Security.Cryptography.ProtectedData.xml",
+ "lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
+ "lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
+ "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
+ "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
+ "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
+ "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
+ "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
+ "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
+ "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
+ "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512",
+ "system.security.cryptography.protecteddata.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Security.Permissions/6.0.0": {
+ "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==",
+ "type": "package",
+ "path": "system.security.permissions/6.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets",
+ "buildTransitive/netcoreapp3.1/_._",
+ "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/net6.0/System.Security.Permissions.dll",
+ "lib/net6.0/System.Security.Permissions.xml",
+ "lib/netcoreapp3.1/System.Security.Permissions.dll",
+ "lib/netcoreapp3.1/System.Security.Permissions.xml",
+ "lib/netstandard2.0/System.Security.Permissions.dll",
+ "lib/netstandard2.0/System.Security.Permissions.xml",
+ "runtimes/win/lib/net461/System.Security.Permissions.dll",
+ "runtimes/win/lib/net461/System.Security.Permissions.xml",
+ "system.security.permissions.6.0.0.nupkg.sha512",
+ "system.security.permissions.nuspec",
+ "useSharedDesignerContext.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.Text.Encoding/4.3.0": {
+ "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
+ "type": "package",
+ "path": "system.text.encoding/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Text.Encoding.dll",
+ "ref/netcore50/System.Text.Encoding.xml",
+ "ref/netcore50/de/System.Text.Encoding.xml",
+ "ref/netcore50/es/System.Text.Encoding.xml",
+ "ref/netcore50/fr/System.Text.Encoding.xml",
+ "ref/netcore50/it/System.Text.Encoding.xml",
+ "ref/netcore50/ja/System.Text.Encoding.xml",
+ "ref/netcore50/ko/System.Text.Encoding.xml",
+ "ref/netcore50/ru/System.Text.Encoding.xml",
+ "ref/netcore50/zh-hans/System.Text.Encoding.xml",
+ "ref/netcore50/zh-hant/System.Text.Encoding.xml",
+ "ref/netstandard1.0/System.Text.Encoding.dll",
+ "ref/netstandard1.0/System.Text.Encoding.xml",
+ "ref/netstandard1.0/de/System.Text.Encoding.xml",
+ "ref/netstandard1.0/es/System.Text.Encoding.xml",
+ "ref/netstandard1.0/fr/System.Text.Encoding.xml",
+ "ref/netstandard1.0/it/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ja/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ko/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ru/System.Text.Encoding.xml",
+ "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
+ "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
+ "ref/netstandard1.3/System.Text.Encoding.dll",
+ "ref/netstandard1.3/System.Text.Encoding.xml",
+ "ref/netstandard1.3/de/System.Text.Encoding.xml",
+ "ref/netstandard1.3/es/System.Text.Encoding.xml",
+ "ref/netstandard1.3/fr/System.Text.Encoding.xml",
+ "ref/netstandard1.3/it/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ja/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ko/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ru/System.Text.Encoding.xml",
+ "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
+ "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.text.encoding.4.3.0.nupkg.sha512",
+ "system.text.encoding.nuspec"
+ ]
+ },
+ "System.Text.Encoding.CodePages/6.0.0": {
+ "sha512": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
+ "type": "package",
+ "path": "system.text.encoding.codepages/6.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net461/System.Text.Encoding.CodePages.dll",
+ "lib/net461/System.Text.Encoding.CodePages.xml",
+ "lib/net6.0/System.Text.Encoding.CodePages.dll",
+ "lib/net6.0/System.Text.Encoding.CodePages.xml",
+ "lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll",
+ "lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml",
+ "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
+ "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
+ "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
+ "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll",
+ "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.xml",
+ "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll",
+ "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml",
+ "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
+ "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
+ "system.text.encoding.codepages.6.0.0.nupkg.sha512",
+ "system.text.encoding.codepages.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
"System.Text.Encodings.Web/9.0.0": {
"sha512": "e2hMgAErLbKyUUwt18qSBf9T5Y+SFAL3ZedM8fLupkVj8Rj2PZ9oxQ37XX2LF8fTO1wNIxvKpihD7Of7D/NxZw==",
"type": "package",
@@ -1827,6 +5111,161 @@
"useSharedDesignerContext.txt"
]
},
+ "System.Text.RegularExpressions/4.3.1": {
+ "sha512": "N0kNRrWe4+nXOWlpLT4LAY5brb8caNFlUuIRpraCVMDLYutKkol1aV079rQjLuSxKMJT2SpBQsYX9xbcTMmzwg==",
+ "type": "package",
+ "path": "system.text.regularexpressions/4.3.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net463/System.Text.RegularExpressions.dll",
+ "lib/netcore50/System.Text.RegularExpressions.dll",
+ "lib/netstandard1.6/System.Text.RegularExpressions.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net463/System.Text.RegularExpressions.dll",
+ "ref/netcore50/System.Text.RegularExpressions.dll",
+ "ref/netcore50/System.Text.RegularExpressions.xml",
+ "ref/netcore50/de/System.Text.RegularExpressions.xml",
+ "ref/netcore50/es/System.Text.RegularExpressions.xml",
+ "ref/netcore50/fr/System.Text.RegularExpressions.xml",
+ "ref/netcore50/it/System.Text.RegularExpressions.xml",
+ "ref/netcore50/ja/System.Text.RegularExpressions.xml",
+ "ref/netcore50/ko/System.Text.RegularExpressions.xml",
+ "ref/netcore50/ru/System.Text.RegularExpressions.xml",
+ "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
+ "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
+ "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
+ "ref/netstandard1.0/System.Text.RegularExpressions.dll",
+ "ref/netstandard1.0/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.3/System.Text.RegularExpressions.dll",
+ "ref/netstandard1.3/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.6/System.Text.RegularExpressions.dll",
+ "ref/netstandard1.6/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.text.regularexpressions.4.3.1.nupkg.sha512",
+ "system.text.regularexpressions.nuspec"
+ ]
+ },
+ "System.Threading/4.3.0": {
+ "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
+ "type": "package",
+ "path": "system.threading/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Threading.dll",
+ "lib/netstandard1.3/System.Threading.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Threading.dll",
+ "ref/netcore50/System.Threading.xml",
+ "ref/netcore50/de/System.Threading.xml",
+ "ref/netcore50/es/System.Threading.xml",
+ "ref/netcore50/fr/System.Threading.xml",
+ "ref/netcore50/it/System.Threading.xml",
+ "ref/netcore50/ja/System.Threading.xml",
+ "ref/netcore50/ko/System.Threading.xml",
+ "ref/netcore50/ru/System.Threading.xml",
+ "ref/netcore50/zh-hans/System.Threading.xml",
+ "ref/netcore50/zh-hant/System.Threading.xml",
+ "ref/netstandard1.0/System.Threading.dll",
+ "ref/netstandard1.0/System.Threading.xml",
+ "ref/netstandard1.0/de/System.Threading.xml",
+ "ref/netstandard1.0/es/System.Threading.xml",
+ "ref/netstandard1.0/fr/System.Threading.xml",
+ "ref/netstandard1.0/it/System.Threading.xml",
+ "ref/netstandard1.0/ja/System.Threading.xml",
+ "ref/netstandard1.0/ko/System.Threading.xml",
+ "ref/netstandard1.0/ru/System.Threading.xml",
+ "ref/netstandard1.0/zh-hans/System.Threading.xml",
+ "ref/netstandard1.0/zh-hant/System.Threading.xml",
+ "ref/netstandard1.3/System.Threading.dll",
+ "ref/netstandard1.3/System.Threading.xml",
+ "ref/netstandard1.3/de/System.Threading.xml",
+ "ref/netstandard1.3/es/System.Threading.xml",
+ "ref/netstandard1.3/fr/System.Threading.xml",
+ "ref/netstandard1.3/it/System.Threading.xml",
+ "ref/netstandard1.3/ja/System.Threading.xml",
+ "ref/netstandard1.3/ko/System.Threading.xml",
+ "ref/netstandard1.3/ru/System.Threading.xml",
+ "ref/netstandard1.3/zh-hans/System.Threading.xml",
+ "ref/netstandard1.3/zh-hant/System.Threading.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Threading.dll",
+ "system.threading.4.3.0.nupkg.sha512",
+ "system.threading.nuspec"
+ ]
+ },
"System.Threading.Channels/8.0.0": {
"sha512": "CMaFr7v+57RW7uZfZkPExsPB6ljwzhjACWW1gfU35Y56rk72B/Wu+sTqxVmGSk4SFUlPc3cjeKND0zktziyjBA==",
"type": "package",
@@ -1859,6 +5298,74 @@
"useSharedDesignerContext.txt"
]
},
+ "System.Threading.Tasks/4.3.0": {
+ "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
+ "type": "package",
+ "path": "system.threading.tasks/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Threading.Tasks.dll",
+ "ref/netcore50/System.Threading.Tasks.xml",
+ "ref/netcore50/de/System.Threading.Tasks.xml",
+ "ref/netcore50/es/System.Threading.Tasks.xml",
+ "ref/netcore50/fr/System.Threading.Tasks.xml",
+ "ref/netcore50/it/System.Threading.Tasks.xml",
+ "ref/netcore50/ja/System.Threading.Tasks.xml",
+ "ref/netcore50/ko/System.Threading.Tasks.xml",
+ "ref/netcore50/ru/System.Threading.Tasks.xml",
+ "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
+ "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/System.Threading.Tasks.dll",
+ "ref/netstandard1.0/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/de/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/es/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/it/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/System.Threading.Tasks.dll",
+ "ref/netstandard1.3/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/de/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/es/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/it/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.threading.tasks.4.3.0.nupkg.sha512",
+ "system.threading.tasks.nuspec"
+ ]
+ },
"System.Threading.Tasks.Extensions/4.5.4": {
"sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
"type": "package",
@@ -1962,11 +5469,144 @@
"touchsocket.core.nuspec"
]
},
+ "TouchSocket.Http/2.0.0": {
+ "sha512": "pS7HpoSI7DnBtdX6WVph7XKxdaC5IiWJh13ubujvBjD8+FjXVZidecnPOiS3RvKTV9iWzcIOuun1s2CkSZd21A==",
+ "type": "package",
+ "path": "touchsocket.http/2.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.txt",
+ "lib/net45/TouchSocket.Http.dll",
+ "lib/net45/TouchSocket.Http.xml",
+ "lib/net462/TouchSocket.Http.dll",
+ "lib/net462/TouchSocket.Http.xml",
+ "lib/net472/TouchSocket.Http.dll",
+ "lib/net472/TouchSocket.Http.xml",
+ "lib/net481/TouchSocket.Http.dll",
+ "lib/net481/TouchSocket.Http.xml",
+ "lib/net6.0/TouchSocket.Http.dll",
+ "lib/net6.0/TouchSocket.Http.xml",
+ "lib/net7.0/TouchSocket.Http.dll",
+ "lib/net7.0/TouchSocket.Http.xml",
+ "lib/net8.0/TouchSocket.Http.dll",
+ "lib/net8.0/TouchSocket.Http.xml",
+ "lib/netstandard2.0/TouchSocket.Http.dll",
+ "lib/netstandard2.0/TouchSocket.Http.xml",
+ "lib/netstandard2.1/TouchSocket.Http.dll",
+ "lib/netstandard2.1/TouchSocket.Http.xml",
+ "logo.png",
+ "touchsocket.http.2.0.0.nupkg.sha512",
+ "touchsocket.http.nuspec"
+ ]
+ },
+ "TouchSocket.Rpc/2.0.0": {
+ "sha512": "8IhGjKv4NsSvbwKvxpYY36VG0EHj/EJfooVAxuDxM6uKW9ZDEBwd8/7xLidv7traWtLp0XOT6/0Ws6uEfGPttw==",
+ "type": "package",
+ "path": "touchsocket.rpc/2.0.0",
+ "hasTools": true,
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.txt",
+ "analyzers/dotnet/cs/TouchSocket.Rpc.SourceGenerator.dll",
+ "lib/net45/TouchSocket.Rpc.dll",
+ "lib/net45/TouchSocket.Rpc.xml",
+ "lib/net462/TouchSocket.Rpc.dll",
+ "lib/net462/TouchSocket.Rpc.xml",
+ "lib/net472/TouchSocket.Rpc.dll",
+ "lib/net472/TouchSocket.Rpc.xml",
+ "lib/net481/TouchSocket.Rpc.dll",
+ "lib/net481/TouchSocket.Rpc.xml",
+ "lib/net6.0/TouchSocket.Rpc.dll",
+ "lib/net6.0/TouchSocket.Rpc.xml",
+ "lib/net7.0/TouchSocket.Rpc.dll",
+ "lib/net7.0/TouchSocket.Rpc.xml",
+ "lib/net8.0/TouchSocket.Rpc.dll",
+ "lib/net8.0/TouchSocket.Rpc.xml",
+ "lib/netstandard2.0/TouchSocket.Rpc.dll",
+ "lib/netstandard2.0/TouchSocket.Rpc.xml",
+ "lib/netstandard2.1/TouchSocket.Rpc.dll",
+ "lib/netstandard2.1/TouchSocket.Rpc.xml",
+ "logo.png",
+ "tools/install.ps1",
+ "tools/uninstall.ps1",
+ "touchsocket.rpc.2.0.0.nupkg.sha512",
+ "touchsocket.rpc.nuspec"
+ ]
+ },
+ "TouchSocket.WebApi/2.0.0": {
+ "sha512": "Xwz8WFVblpdZqXLQ/eKgOlSPffPjiaAv6xOiE9+lyU74d34uLhI6MqRoX0ywkoERNCJkzEsQw5txocDRmXTWxw==",
+ "type": "package",
+ "path": "touchsocket.webapi/2.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.txt",
+ "lib/net45/TouchSocket.WebApi.dll",
+ "lib/net45/TouchSocket.WebApi.xml",
+ "lib/net462/TouchSocket.WebApi.dll",
+ "lib/net462/TouchSocket.WebApi.xml",
+ "lib/net472/TouchSocket.WebApi.dll",
+ "lib/net472/TouchSocket.WebApi.xml",
+ "lib/net481/TouchSocket.WebApi.dll",
+ "lib/net481/TouchSocket.WebApi.xml",
+ "lib/net6.0/TouchSocket.WebApi.dll",
+ "lib/net6.0/TouchSocket.WebApi.xml",
+ "lib/net7.0/TouchSocket.WebApi.dll",
+ "lib/net7.0/TouchSocket.WebApi.xml",
+ "lib/net8.0/TouchSocket.WebApi.dll",
+ "lib/net8.0/TouchSocket.WebApi.xml",
+ "lib/netstandard2.0/TouchSocket.WebApi.dll",
+ "lib/netstandard2.0/TouchSocket.WebApi.xml",
+ "lib/netstandard2.1/TouchSocket.WebApi.dll",
+ "lib/netstandard2.1/TouchSocket.WebApi.xml",
+ "logo.png",
+ "touchsocket.webapi.2.0.0.nupkg.sha512",
+ "touchsocket.webapi.nuspec"
+ ]
+ },
+ "TouchSocket.WebApi.Swagger/2.0.0": {
+ "sha512": "pw1UvrVUZL2euVS/DTRLSWQqzIOJ9f+HylcIFEh3zokqC+2FIqj7+d/c6z4drjO1OhWi/25+qEMc4ksAup/48w==",
+ "type": "package",
+ "path": "touchsocket.webapi.swagger/2.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.txt",
+ "lib/net45/TouchSocket.WebApi.Swagger.dll",
+ "lib/net45/TouchSocket.WebApi.Swagger.xml",
+ "lib/net462/TouchSocket.WebApi.Swagger.dll",
+ "lib/net462/TouchSocket.WebApi.Swagger.xml",
+ "lib/net472/TouchSocket.WebApi.Swagger.dll",
+ "lib/net472/TouchSocket.WebApi.Swagger.xml",
+ "lib/net481/TouchSocket.WebApi.Swagger.dll",
+ "lib/net481/TouchSocket.WebApi.Swagger.xml",
+ "lib/net6.0/TouchSocket.WebApi.Swagger.dll",
+ "lib/net6.0/TouchSocket.WebApi.Swagger.xml",
+ "lib/net7.0/TouchSocket.WebApi.Swagger.dll",
+ "lib/net7.0/TouchSocket.WebApi.Swagger.xml",
+ "lib/net8.0/TouchSocket.WebApi.Swagger.dll",
+ "lib/net8.0/TouchSocket.WebApi.Swagger.xml",
+ "lib/netstandard2.0/TouchSocket.WebApi.Swagger.dll",
+ "lib/netstandard2.0/TouchSocket.WebApi.Swagger.xml",
+ "lib/netstandard2.1/TouchSocket.WebApi.Swagger.dll",
+ "lib/netstandard2.1/TouchSocket.WebApi.Swagger.xml",
+ "logo.png",
+ "touchsocket.webapi.swagger.2.0.0.nupkg.sha512",
+ "touchsocket.webapi.swagger.nuspec"
+ ]
+ },
"Sln.Iot.Config/1.0.0": {
"type": "project",
"path": "../Sln.Iot.Config/Sln.Iot.Config.csproj",
"msbuildProject": "../Sln.Iot.Config/Sln.Iot.Config.csproj"
},
+ "Sln.Iot.Model/1.0.0": {
+ "type": "project",
+ "path": "../Sln.Iot.Model/Sln.Iot.Model.csproj",
+ "msbuildProject": "../Sln.Iot.Model/Sln.Iot.Model.csproj"
+ },
"Sln.Iot.Serilog/1.0.0": {
"type": "project",
"path": "../Sln.Iot.Serilog/Sln.Iot.Serilog.csproj",
@@ -1975,8 +5615,11 @@
},
"projectFileDependencyGroups": {
".NETStandard,Version=v2.1": [
+ "Sln.Iot.Model >= 1.0.0",
"Sln.Iot.Serilog >= 1.0.0",
- "TouchSocket >= 2.0.0"
+ "TouchSocket >= 2.0.0",
+ "TouchSocket.WebApi >= 2.0.0",
+ "TouchSocket.WebApi.Swagger >= 2.0.0"
]
},
"packageFolders": {
@@ -1985,11 +5628,11 @@
"project": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj",
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj",
"projectName": "Sln.Iot.Socket",
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj",
"packagesPath": "/Users/wenxiansheng/.nuget/packages/",
- "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/obj/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
@@ -2004,8 +5647,11 @@
"netstandard2.1": {
"targetAlias": "netstandard2.1",
"projectReferences": {
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj"
+ },
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj"
}
}
}
@@ -2023,6 +5669,14 @@
"TouchSocket": {
"target": "Package",
"version": "[2.0.0, )"
+ },
+ "TouchSocket.WebApi": {
+ "target": "Package",
+ "version": "[2.0.0, )"
+ },
+ "TouchSocket.WebApi.Swagger": {
+ "target": "Package",
+ "version": "[2.0.0, )"
}
},
"imports": [
diff --git a/Sln.Iot.Socket/obj/project.nuget.cache b/Sln.Iot.Socket/obj/project.nuget.cache
index e074c84..4d1c834 100644
--- a/Sln.Iot.Socket/obj/project.nuget.cache
+++ b/Sln.Iot.Socket/obj/project.nuget.cache
@@ -1,14 +1,21 @@
{
"version": 2,
- "dgSpecHash": "aP8XN8RZbB4=",
+ "dgSpecHash": "kPLAlwG06+E=",
"success": true,
- "projectFilePath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj",
+ "projectFilePath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj",
"expectedPackageFiles": [
+ "/Users/wenxiansheng/.nuget/packages/azure.core/1.38.0/azure.core.1.38.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/azure.identity/1.11.4/azure.identity.1.11.4.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/microsoft.aspnetcore.hosting.abstractions/2.2.0/microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/microsoft.aspnetcore.hosting.server.abstractions/2.2.0/microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/microsoft.aspnetcore.http.abstractions/2.2.0/microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/microsoft.aspnetcore.http.features/2.2.0/microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/microsoft.bcl.asyncinterfaces/9.0.0/microsoft.bcl.asyncinterfaces.9.0.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/microsoft.csharp/4.5.0/microsoft.csharp.4.5.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/microsoft.data.sqlclient/5.2.2/microsoft.data.sqlclient.5.2.2.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/microsoft.data.sqlclient.sni.runtime/5.2.0/microsoft.data.sqlclient.sni.runtime.5.2.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/microsoft.data.sqlite/9.0.0/microsoft.data.sqlite.9.0.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/microsoft.data.sqlite.core/9.0.0/microsoft.data.sqlite.core.9.0.0.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/microsoft.extensions.configuration.abstractions/9.0.0/microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/microsoft.extensions.configuration.binder/9.0.0/microsoft.extensions.configuration.binder.9.0.0.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/microsoft.extensions.dependencyinjection/9.0.0/microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512",
@@ -21,7 +28,23 @@
"/Users/wenxiansheng/.nuget/packages/microsoft.extensions.logging.abstractions/9.0.0/microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/microsoft.extensions.options/9.0.4/microsoft.extensions.options.9.0.4.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/microsoft.extensions.primitives/9.0.4/microsoft.extensions.primitives.9.0.4.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/microsoft.identity.client/4.61.3/microsoft.identity.client.4.61.3.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/microsoft.identity.client.extensions.msal/4.61.3/microsoft.identity.client.extensions.msal.4.61.3.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/microsoft.identitymodel.abstractions/6.35.0/microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/microsoft.identitymodel.jsonwebtokens/6.35.0/microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/microsoft.identitymodel.logging/6.35.0/microsoft.identitymodel.logging.6.35.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/microsoft.identitymodel.protocols/6.35.0/microsoft.identitymodel.protocols.6.35.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/microsoft.identitymodel.protocols.openidconnect/6.35.0/microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/microsoft.identitymodel.tokens/6.35.0/microsoft.identitymodel.tokens.6.35.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/microsoft.netcore.platforms/1.1.1/microsoft.netcore.platforms.1.1.1.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/microsoft.netcore.targets/1.1.3/microsoft.netcore.targets.1.1.3.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/microsoft.sqlserver.server/1.0.0/microsoft.sqlserver.server.1.0.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/microsoft.win32.registry/5.0.0/microsoft.win32.registry.5.0.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/mysqlconnector/2.2.5/mysqlconnector.2.2.5.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/newtonsoft.json/13.0.3/newtonsoft.json.13.0.3.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/npgsql/5.0.18/npgsql.5.0.18.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/oracle.manageddataaccess.core/3.21.100/oracle.manageddataaccess.core.3.21.100.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/oscar.data.sqlclient/4.0.4/oscar.data.sqlclient.4.0.4.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/serilog/4.2.0/serilog.4.2.0.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/serilog.aspnetcore/9.0.0/serilog.aspnetcore.9.0.0.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/serilog.extensions.hosting/9.0.0/serilog.extensions.hosting.9.0.0.nupkg.sha512",
@@ -31,19 +54,61 @@
"/Users/wenxiansheng/.nuget/packages/serilog.sinks.console/6.0.0/serilog.sinks.console.6.0.0.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/serilog.sinks.debug/3.0.0/serilog.sinks.debug.3.0.0.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/serilog.sinks.file/6.0.0/serilog.sinks.file.6.0.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/sqlitepclraw.bundle_e_sqlite3/2.1.10/sqlitepclraw.bundle_e_sqlite3.2.1.10.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/sqlitepclraw.core/2.1.10/sqlitepclraw.core.2.1.10.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/sqlitepclraw.lib.e_sqlite3/2.1.10/sqlitepclraw.lib.e_sqlite3.2.1.10.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/sqlitepclraw.provider.e_sqlite3/2.1.10/sqlitepclraw.provider.e_sqlite3.2.1.10.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/sqlsugarcore/5.1.4.188/sqlsugarcore.5.1.4.188.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/sqlsugarcore.dm/8.6.0/sqlsugarcore.dm.8.6.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/sqlsugarcore.kdbndp/9.3.7.311/sqlsugarcore.kdbndp.9.3.7.311.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/system.buffers/4.5.1/system.buffers.4.5.1.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/system.clientmodel/1.0.0/system.clientmodel.1.0.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/system.collections/4.3.0/system.collections.4.3.0.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/system.componentmodel.annotations/5.0.0/system.componentmodel.annotations.5.0.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/system.configuration.configurationmanager/6.0.1/system.configuration.configurationmanager.6.0.1.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/system.data.common/4.3.0/system.data.common.4.3.0.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/system.diagnostics.diagnosticsource/9.0.0/system.diagnostics.diagnosticsource.9.0.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/system.diagnostics.performancecounter/6.0.1/system.diagnostics.performancecounter.6.0.1.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/system.directoryservices/6.0.1/system.directoryservices.6.0.1.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/system.directoryservices.protocols/6.0.1/system.directoryservices.protocols.6.0.1.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/system.globalization/4.3.0/system.globalization.4.3.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/system.identitymodel.tokens.jwt/6.35.0/system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/system.io/4.3.0/system.io.4.3.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/system.io.filesystem.accesscontrol/5.0.0/system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/system.io.pipelines/9.0.0/system.io.pipelines.9.0.0.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/system.memory/4.5.5/system.memory.4.5.5.nupkg.sha512",
- "/Users/wenxiansheng/.nuget/packages/system.numerics.vectors/4.4.0/system.numerics.vectors.4.4.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/system.memory.data/1.0.2/system.memory.data.1.0.2.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/system.numerics.vectors/4.5.0/system.numerics.vectors.4.5.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/system.reflection/4.3.0/system.reflection.4.3.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/system.reflection.emit.ilgeneration/4.3.0/system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/system.reflection.emit.lightweight/4.3.0/system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/system.reflection.primitives/4.3.0/system.reflection.primitives.4.3.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/system.resources.resourcemanager/4.3.0/system.resources.resourcemanager.4.3.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/system.runtime/4.3.1/system.runtime.4.3.1.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/system.runtime.caching/6.0.0/system.runtime.caching.6.0.0.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/system.runtime.compilerservices.unsafe/6.0.0/system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/system.runtime.extensions/4.3.1/system.runtime.extensions.4.3.1.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/system.runtime.loader/4.3.0/system.runtime.loader.4.3.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/system.security.accesscontrol/6.0.0/system.security.accesscontrol.6.0.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/system.security.cryptography.cng/5.0.0/system.security.cryptography.cng.5.0.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/system.security.cryptography.protecteddata/6.0.0/system.security.cryptography.protecteddata.6.0.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/system.security.permissions/6.0.0/system.security.permissions.6.0.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/system.security.principal.windows/5.0.0/system.security.principal.windows.5.0.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/system.text.encoding/4.3.0/system.text.encoding.4.3.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/system.text.encoding.codepages/6.0.0/system.text.encoding.codepages.6.0.0.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/system.text.encodings.web/9.0.0/system.text.encodings.web.9.0.0.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/system.text.json/9.0.0/system.text.json.9.0.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/system.text.regularexpressions/4.3.1/system.text.regularexpressions.4.3.1.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/system.threading/4.3.0/system.threading.4.3.0.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/system.threading.channels/8.0.0/system.threading.channels.8.0.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/system.threading.tasks/4.3.0/system.threading.tasks.4.3.0.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/system.threading.tasks.extensions/4.5.4/system.threading.tasks.extensions.4.5.4.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/touchsocket/2.0.0/touchsocket.2.0.0.nupkg.sha512",
- "/Users/wenxiansheng/.nuget/packages/touchsocket.core/2.0.0/touchsocket.core.2.0.0.nupkg.sha512"
+ "/Users/wenxiansheng/.nuget/packages/touchsocket.core/2.0.0/touchsocket.core.2.0.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/touchsocket.http/2.0.0/touchsocket.http.2.0.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/touchsocket.rpc/2.0.0/touchsocket.rpc.2.0.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/touchsocket.webapi/2.0.0/touchsocket.webapi.2.0.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/touchsocket.webapi.swagger/2.0.0/touchsocket.webapi.swagger.2.0.0.nupkg.sha512"
],
"logs": []
}
\ No newline at end of file
diff --git a/Sln.Iot.Socket/obj/project.packagespec.json b/Sln.Iot.Socket/obj/project.packagespec.json
index 123fe02..778c3ac 100644
--- a/Sln.Iot.Socket/obj/project.packagespec.json
+++ b/Sln.Iot.Socket/obj/project.packagespec.json
@@ -1 +1 @@
-"restore":{"projectUniqueName":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj","projectName":"Sln.Iot.Socket","projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj","outputPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["netstandard2.1"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","projectReferences":{"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj":{"projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","dependencies":{"TouchSocket":{"target":"Package","version":"[2.0.0, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"NETStandard.Library":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/6.0.417/RuntimeIdentifierGraph.json"}}
\ No newline at end of file
+"restore":{"projectUniqueName":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj","projectName":"Sln.Iot.Socket","projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj","outputPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["netstandard2.1"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","projectReferences":{"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj":{"projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj"},"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj":{"projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","dependencies":{"TouchSocket":{"target":"Package","version":"[2.0.0, )"},"TouchSocket.WebApi":{"target":"Package","version":"[2.0.0, )"},"TouchSocket.WebApi.Swagger":{"target":"Package","version":"[2.0.0, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"NETStandard.Library":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/6.0.417/RuntimeIdentifierGraph.json"}}
\ No newline at end of file
diff --git a/Sln.Iot.Socket/obj/rider.project.model.nuget.info b/Sln.Iot.Socket/obj/rider.project.model.nuget.info
index 42cfcf2..480765d 100644
--- a/Sln.Iot.Socket/obj/rider.project.model.nuget.info
+++ b/Sln.Iot.Socket/obj/rider.project.model.nuget.info
@@ -1 +1 @@
-17443568731886140
\ No newline at end of file
+17467833632526926
\ No newline at end of file
diff --git a/Sln.Iot.Socket/obj/rider.project.restore.info b/Sln.Iot.Socket/obj/rider.project.restore.info
index 42cfcf2..480765d 100644
--- a/Sln.Iot.Socket/obj/rider.project.restore.info
+++ b/Sln.Iot.Socket/obj/rider.project.restore.info
@@ -1 +1 @@
-17443568731886140
\ No newline at end of file
+17467833632526926
\ No newline at end of file
diff --git a/Sln.Iot.sln.DotSettings.user b/Sln.Iot.sln.DotSettings.user
index 35274b5..f06ee5c 100644
--- a/Sln.Iot.sln.DotSettings.user
+++ b/Sln.Iot.sln.DotSettings.user
@@ -1,10 +1,18 @@
+ ForceIncluded
+ ForceIncluded
+ ForceIncluded
ForceIncluded
ForceIncluded
ForceIncluded
ForceIncluded
+ ForceIncluded
+ ForceIncluded
ForceIncluded
ForceIncluded
ForceIncluded
+ ForceIncluded
+ ForceIncluded
ForceIncluded
+ ForceIncluded
ForceIncluded
\ No newline at end of file
diff --git a/Sln.Iot/Program.cs b/Sln.Iot/Program.cs
index a58d2d1..dc6123b 100644
--- a/Sln.Iot/Program.cs
+++ b/Sln.Iot/Program.cs
@@ -17,6 +17,8 @@ class Program
{
public static IServiceProvider? ServiceProvider = null;
+ private static DevControlBusiness _devControlBusiness;
+
static async Task Main(string[] args)
{
var services = new ServiceCollection();
@@ -27,7 +29,7 @@ class Program
var appConfig = ServiceProvider.GetService();
var log = ServiceProvider.GetService();
log.Info($"系统启动成功,日志存放位置:{appConfig.logPath}");
-
+ _devControlBusiness = ServiceProvider.GetService();
var _server = ServiceProvider.GetService();
_server.Init(appConfig.listernPort);
@@ -41,15 +43,15 @@ class Program
case 0x08:
_business = ServiceProvider.GetService();
break;
- case 0x21: //登录指令
+ case 0x33: //登录指令
_business = ServiceProvider.GetService();
break;
- case 0x24: //心跳指令
+ case 0x36: //心跳指令
_business = ServiceProvider.GetService();
break;
- case 0x85: //物联网环境
+ case 0x34: //物联网环境
bodyLength = info.BufferLength;
- _business = ServiceProvider.GetService();
+ _business = ServiceProvider.GetService();
break;
default:
break;
@@ -57,13 +59,18 @@ class Program
if (_business != null)
{
Parallel.Invoke(
- () => _business.ResponseHandle(client, info.buffer),
+ () => _business.ResponseHandle(client, info),
() => _business.BufferAnalysis(client, info, bodyLength)
);
}
};
-
+
+ var webApiServer = ServiceProvider.GetService();
+ webApiServer.Init();
+
await Task.Delay(-1);
+
+
}
private static void ConfigureServices(IServiceCollection services)
@@ -93,7 +100,9 @@ class Program
services.AddSingleton(typeof(SerilogHelper));
services.AddSingleton(typeof(TcpService));
-
+
+ services.AddSingleton(typeof(WebApiServer));
+
services.AddSqlSugarSetup();
}
}
\ No newline at end of file
diff --git a/Sln.Iot/WebApiServer.cs b/Sln.Iot/WebApiServer.cs
new file mode 100644
index 0000000..2eaaa91
--- /dev/null
+++ b/Sln.Iot/WebApiServer.cs
@@ -0,0 +1,111 @@
+#region << 版 本 注 释 >>
+
+/*--------------------------------------------------------------------
+* 版权所有 (c) 2025 WenJY 保留所有权利。
+* CLR版本:4.0.30319.42000
+* 机器名称:Mr.Wen's MacBook Pro
+* 命名空间:Sln.Iot
+* 唯一标识:739C303A-A6D2-49AD-812E-F87E020C303C
+*
+* 创建者:WenJY
+* 电子邮箱:
+* 创建时间:2025-05-09 17:37:18
+* 版本:V1.0.0
+* 描述:
+*
+*--------------------------------------------------------------------
+* 修改人:
+* 时间:
+* 修改说明:
+*
+* 版本:V1.0.0
+*--------------------------------------------------------------------*/
+
+#endregion << 版 本 注 释 >>
+
+using Sln.Iot.Business;
+using TouchSocket.Core;
+using TouchSocket.Http;
+using TouchSocket.Rpc;
+using TouchSocket.Sockets;
+using TouchSocket.WebApi.Swagger;
+
+namespace Sln.Iot;
+
+public class WebApiServer
+{
+
+ private readonly DevControlBusiness _devControlBusiness;
+
+ public WebApiServer(DevControlBusiness devControlBusiness)
+ {
+ _devControlBusiness = devControlBusiness;
+ }
+
+ public void Init()
+ {
+ try
+ {
+ var service = new HttpService();
+ service.Setup(new TouchSocketConfig()
+ .SetListenIPHosts(7789)
+ .ConfigureContainer(a =>
+ {
+ a.AddRpcStore(store =>
+ {
+
+ store.RegisterServer(_devControlBusiness);//注册服务
+ });
+
+ a.AddCors(corsOption =>
+ {
+ corsOption.Add("cors", corsBuilder =>
+ {
+ corsBuilder.AllowAnyMethod()
+ .AllowAnyOrigin();
+ });
+ });
+
+ a.AddLogger(logger =>
+ {
+ logger.AddConsoleLogger();
+ logger.AddFileLogger();
+ });
+ })
+ .ConfigurePlugins(a =>
+ {
+ a.UseCheckClear();
+
+ a.Add();
+
+ a.UseWebApi()
+ .ConfigureConverter(converter =>
+ {
+ converter.AddJsonSerializerFormatter(new Newtonsoft.Json.JsonSerializerSettings() { Formatting = Newtonsoft.Json.Formatting.None });
+ });
+
+ a.UseSwagger();//使用Swagger页面
+ //.UseLaunchBrowser();
+
+ a.UseDefaultHttpServicePlugin();
+ }));
+ service.Start();
+
+ Console.WriteLine("以下连接用于测试webApi");
+ Console.WriteLine($"使用:http://127.0.0.1:7789/swagger/index.html");
+ }catch(Exception ex)
+ {
+ Console.WriteLine(ex.ToString());
+ }
+
+ //Console.ReadLine();
+ }
+}
+
+internal class AuthenticationPlugin : PluginBase, IHttpPlugin
+{
+ public async Task OnHttpRequest(IHttpSocketClient client, HttpContextEventArgs e)
+ {
+ await e.InvokeNext();
+ }
+}
\ No newline at end of file
diff --git a/Sln.Iot/appsettings.json b/Sln.Iot/appsettings.json
index 2897c47..061e148 100644
--- a/Sln.Iot/appsettings.json
+++ b/Sln.Iot/appsettings.json
@@ -1,7 +1,7 @@
{
"AppConfig": {
"logPath": "\\\\Mac\\Home\\Public\\WorkSpace\\Mesnac\\项目资料\\IOT物联网数据采集\\日志信息",
- "listernPort": 7001,
+ "listernPort": 6000,
"virtualFlag": true,
"virtualValue": 99999,
"SqlConfig": [
@@ -9,7 +9,8 @@
"configId": "tao_iot", //tao:青岛胶东机场简称
"dbType": 0, //tidb按照 mysql 去连接
"isFlag": true,
- "connStr": "server=127.0.0.1;Port=4000;Database=tao_iot;Uid=root;" //Pwd=haiwei@123;
+ //"connStr": "server=127.0.0.1;Port=4000;Database=tao_iot;Uid=root;" //Pwd=haiwei@123;
+ "connStr": "server=1.13.177.47;Port=3306;Database=tao_iot;Uid=root;Pwd=haiwei@123;"
}
]
}
diff --git a/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Business.dll b/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Business.dll
index 182f537..5c14188 100644
Binary files a/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Business.dll and b/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Business.dll differ
diff --git a/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Business.pdb b/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Business.pdb
index 7c7acdc..3d07534 100644
Binary files a/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Business.pdb and b/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Business.pdb differ
diff --git a/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Common.dll b/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Common.dll
index 52ca13d..0ca10d5 100644
Binary files a/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Common.dll and b/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Common.dll differ
diff --git a/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Common.pdb b/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Common.pdb
index fa9c277..cf6f3fa 100644
Binary files a/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Common.pdb and b/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Common.pdb differ
diff --git a/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Config.dll b/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Config.dll
index e0a83b7..b1b475d 100644
Binary files a/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Config.dll and b/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Config.dll differ
diff --git a/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Config.pdb b/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Config.pdb
index d729b57..070b834 100644
Binary files a/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Config.pdb and b/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Config.pdb differ
diff --git a/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Model.dll b/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Model.dll
index 6c0d761..3d2e909 100644
Binary files a/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Model.dll and b/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Model.dll differ
diff --git a/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Model.pdb b/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Model.pdb
index b442f76..bac0fdb 100644
Binary files a/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Model.pdb and b/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Model.pdb differ
diff --git a/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Repository.dll b/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Repository.dll
index df53cd1..be60876 100644
Binary files a/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Repository.dll and b/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Repository.dll differ
diff --git a/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Repository.pdb b/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Repository.pdb
index e004f32..857b619 100644
Binary files a/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Repository.pdb and b/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Repository.pdb differ
diff --git a/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Serilog.dll b/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Serilog.dll
index 8bdd1a9..3d2708b 100644
Binary files a/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Serilog.dll and b/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Serilog.dll differ
diff --git a/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Serilog.pdb b/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Serilog.pdb
index f5746df..c698874 100644
Binary files a/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Serilog.pdb and b/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Serilog.pdb differ
diff --git a/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Socket.dll b/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Socket.dll
index 94f880d..a6f4312 100644
Binary files a/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Socket.dll and b/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Socket.dll differ
diff --git a/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Socket.pdb b/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Socket.pdb
index 70937a5..6ea3648 100644
Binary files a/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Socket.pdb and b/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Socket.pdb differ
diff --git a/Sln.Iot/bin/Debug/net6.0/Sln.Iot.deps.json b/Sln.Iot/bin/Debug/net6.0/Sln.Iot.deps.json
index b309205..57179fa 100644
--- a/Sln.Iot/bin/Debug/net6.0/Sln.Iot.deps.json
+++ b/Sln.Iot/bin/Debug/net6.0/Sln.Iot.deps.json
@@ -1504,6 +1504,51 @@
}
}
},
+ "TouchSocket.Http/2.0.0": {
+ "dependencies": {
+ "TouchSocket": "2.0.0"
+ },
+ "runtime": {
+ "lib/net6.0/TouchSocket.Http.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.0.0.0"
+ }
+ }
+ },
+ "TouchSocket.Rpc/2.0.0": {
+ "dependencies": {
+ "TouchSocket.Core": "2.0.0"
+ },
+ "runtime": {
+ "lib/net6.0/TouchSocket.Rpc.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.0.0.0"
+ }
+ }
+ },
+ "TouchSocket.WebApi/2.0.0": {
+ "dependencies": {
+ "TouchSocket.Http": "2.0.0",
+ "TouchSocket.Rpc": "2.0.0"
+ },
+ "runtime": {
+ "lib/net6.0/TouchSocket.WebApi.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.0.0.0"
+ }
+ }
+ },
+ "TouchSocket.WebApi.Swagger/2.0.0": {
+ "dependencies": {
+ "TouchSocket.WebApi": "2.0.0"
+ },
+ "runtime": {
+ "lib/net6.0/TouchSocket.WebApi.Swagger.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.0.0.0"
+ }
+ }
+ },
"Sln.Iot.Business/1.0.0": {
"dependencies": {
"Sln.Iot.Common": "1.0.0",
@@ -1561,8 +1606,11 @@
},
"Sln.Iot.Socket/1.0.0": {
"dependencies": {
+ "Sln.Iot.Model": "1.0.0",
"Sln.Iot.Serilog": "1.0.0",
- "TouchSocket": "2.0.0"
+ "TouchSocket": "2.0.0",
+ "TouchSocket.WebApi": "2.0.0",
+ "TouchSocket.WebApi.Swagger": "2.0.0"
},
"runtime": {
"Sln.Iot.Socket.dll": {}
@@ -2395,6 +2443,34 @@
"path": "touchsocket.core/2.0.0",
"hashPath": "touchsocket.core.2.0.0.nupkg.sha512"
},
+ "TouchSocket.Http/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-pS7HpoSI7DnBtdX6WVph7XKxdaC5IiWJh13ubujvBjD8+FjXVZidecnPOiS3RvKTV9iWzcIOuun1s2CkSZd21A==",
+ "path": "touchsocket.http/2.0.0",
+ "hashPath": "touchsocket.http.2.0.0.nupkg.sha512"
+ },
+ "TouchSocket.Rpc/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-8IhGjKv4NsSvbwKvxpYY36VG0EHj/EJfooVAxuDxM6uKW9ZDEBwd8/7xLidv7traWtLp0XOT6/0Ws6uEfGPttw==",
+ "path": "touchsocket.rpc/2.0.0",
+ "hashPath": "touchsocket.rpc.2.0.0.nupkg.sha512"
+ },
+ "TouchSocket.WebApi/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Xwz8WFVblpdZqXLQ/eKgOlSPffPjiaAv6xOiE9+lyU74d34uLhI6MqRoX0ywkoERNCJkzEsQw5txocDRmXTWxw==",
+ "path": "touchsocket.webapi/2.0.0",
+ "hashPath": "touchsocket.webapi.2.0.0.nupkg.sha512"
+ },
+ "TouchSocket.WebApi.Swagger/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-pw1UvrVUZL2euVS/DTRLSWQqzIOJ9f+HylcIFEh3zokqC+2FIqj7+d/c6z4drjO1OhWi/25+qEMc4ksAup/48w==",
+ "path": "touchsocket.webapi.swagger/2.0.0",
+ "hashPath": "touchsocket.webapi.swagger.2.0.0.nupkg.sha512"
+ },
"Sln.Iot.Business/1.0.0": {
"type": "project",
"serviceable": false,
diff --git a/Sln.Iot/bin/Debug/net6.0/Sln.Iot.dll b/Sln.Iot/bin/Debug/net6.0/Sln.Iot.dll
index ed34dfd..9fad5e4 100644
Binary files a/Sln.Iot/bin/Debug/net6.0/Sln.Iot.dll and b/Sln.Iot/bin/Debug/net6.0/Sln.Iot.dll differ
diff --git a/Sln.Iot/bin/Debug/net6.0/Sln.Iot.pdb b/Sln.Iot/bin/Debug/net6.0/Sln.Iot.pdb
index 6f0fd87..3e3c913 100644
Binary files a/Sln.Iot/bin/Debug/net6.0/Sln.Iot.pdb and b/Sln.Iot/bin/Debug/net6.0/Sln.Iot.pdb differ
diff --git a/Sln.Iot/bin/Debug/net6.0/appsettings.json b/Sln.Iot/bin/Debug/net6.0/appsettings.json
index 54ee4a2..061e148 100644
--- a/Sln.Iot/bin/Debug/net6.0/appsettings.json
+++ b/Sln.Iot/bin/Debug/net6.0/appsettings.json
@@ -1,23 +1,17 @@
{
"AppConfig": {
"logPath": "\\\\Mac\\Home\\Public\\WorkSpace\\Mesnac\\项目资料\\IOT物联网数据采集\\日志信息",
- "listernPort": 7001,
+ "listernPort": 6000,
"virtualFlag": true,
"virtualValue": 99999,
"SqlConfig": [
- {
- "configId": "mesTD",
- "dbType": 17,
- "isFlag": false,
- "connStr": "Host=175.27.215.92;Port=6030;Username=root;Password=taosdata;Database=db_hwmes"
- },
{
"configId": "tao_iot", //tao:青岛胶东机场简称
"dbType": 0, //tidb按照 mysql 去连接
"isFlag": true,
- "connStr": "server=127.0.0.1;Port=4000;Database=tao_iot;Uid=root;" //Pwd=haiwei@123;
+ //"connStr": "server=127.0.0.1;Port=4000;Database=tao_iot;Uid=root;" //Pwd=haiwei@123;
+ "connStr": "server=1.13.177.47;Port=3306;Database=tao_iot;Uid=root;Pwd=haiwei@123;"
}
- ],
- "redisConfig": "175.27.215.92:6379,password=redis@2023"
+ ]
}
}
diff --git a/Sln.Iot/obj/Debug/net6.0/Sln.Iot.GeneratedMSBuildEditorConfig.editorconfig b/Sln.Iot/obj/Debug/net6.0/Sln.Iot.GeneratedMSBuildEditorConfig.editorconfig
index 25888f2..1886ed6 100644
--- a/Sln.Iot/obj/Debug/net6.0/Sln.Iot.GeneratedMSBuildEditorConfig.editorconfig
+++ b/Sln.Iot/obj/Debug/net6.0/Sln.Iot.GeneratedMSBuildEditorConfig.editorconfig
@@ -7,4 +7,4 @@ build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Sln.Iot
-build_property.ProjectDir = /Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot/
+build_property.ProjectDir = /Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/
diff --git a/Sln.Iot/obj/Debug/net6.0/Sln.Iot.assets.cache b/Sln.Iot/obj/Debug/net6.0/Sln.Iot.assets.cache
index f92eca5..5030bb1 100644
Binary files a/Sln.Iot/obj/Debug/net6.0/Sln.Iot.assets.cache and b/Sln.Iot/obj/Debug/net6.0/Sln.Iot.assets.cache differ
diff --git a/Sln.Iot/obj/Debug/net6.0/Sln.Iot.csproj.AssemblyReference.cache b/Sln.Iot/obj/Debug/net6.0/Sln.Iot.csproj.AssemblyReference.cache
index b762dd2..fb6f7a5 100644
Binary files a/Sln.Iot/obj/Debug/net6.0/Sln.Iot.csproj.AssemblyReference.cache and b/Sln.Iot/obj/Debug/net6.0/Sln.Iot.csproj.AssemblyReference.cache differ
diff --git a/Sln.Iot/obj/Debug/net6.0/Sln.Iot.csproj.CoreCompileInputs.cache b/Sln.Iot/obj/Debug/net6.0/Sln.Iot.csproj.CoreCompileInputs.cache
index 2e86874..9007553 100644
--- a/Sln.Iot/obj/Debug/net6.0/Sln.Iot.csproj.CoreCompileInputs.cache
+++ b/Sln.Iot/obj/Debug/net6.0/Sln.Iot.csproj.CoreCompileInputs.cache
@@ -1 +1 @@
-d3df12e9aa148e3d593e46b49d0a88d53fca9cec
+0e2fe5119c04bc3664c74569ea2323b6e476419f
diff --git a/Sln.Iot/obj/Debug/net6.0/Sln.Iot.csproj.FileListAbsolute.txt b/Sln.Iot/obj/Debug/net6.0/Sln.Iot.csproj.FileListAbsolute.txt
index f3cba75..e90300d 100644
--- a/Sln.Iot/obj/Debug/net6.0/Sln.Iot.csproj.FileListAbsolute.txt
+++ b/Sln.Iot/obj/Debug/net6.0/Sln.Iot.csproj.FileListAbsolute.txt
@@ -233,3 +233,173 @@
/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Common.dll
/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Business.pdb
/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Common.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/appsettings.json
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Sln.Iot
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Sln.Iot.deps.json
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Sln.Iot.runtimeconfig.json
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Sln.Iot.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Sln.Iot.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Azure.Core.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Azure.Identity.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.AspNetCore.Hosting.Abstractions.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.AspNetCore.Http.Abstractions.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.AspNetCore.Http.Features.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.Data.SqlClient.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.Data.Sqlite.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.Extensions.Configuration.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Binder.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.Extensions.Configuration.CommandLine.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.Extensions.Configuration.FileExtensions.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Json.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.Extensions.Configuration.UserSecrets.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.Extensions.DependencyModel.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.Extensions.Diagnostics.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.Extensions.Diagnostics.Abstractions.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.Extensions.FileProviders.Physical.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.Extensions.Hosting.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.Extensions.Hosting.Abstractions.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.Extensions.Logging.Configuration.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.Extensions.Logging.Console.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.Extensions.Logging.Debug.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.Extensions.Logging.EventLog.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.Extensions.Logging.EventSource.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.Extensions.Options.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.Identity.Client.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.IdentityModel.Abstractions.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.IdentityModel.Logging.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.IdentityModel.Tokens.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.SqlServer.Server.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/MySqlConnector.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Newtonsoft.Json.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Npgsql.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Oracle.ManagedDataAccess.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Oscar.Data.SqlClient.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Scrutor.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Serilog.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Serilog.AspNetCore.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Serilog.Extensions.Hosting.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Serilog.Extensions.Logging.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Serilog.Formatting.Compact.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Serilog.Settings.Configuration.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Serilog.Sinks.Console.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Serilog.Sinks.Debug.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Serilog.Sinks.File.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/SQLitePCLRaw.batteries_v2.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/SQLitePCLRaw.core.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/SqlSugar.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/DM.DmProvider.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Kdbndp.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/System.ClientModel.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/System.Diagnostics.DiagnosticSource.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/System.Diagnostics.EventLog.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/System.Diagnostics.PerformanceCounter.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/System.DirectoryServices.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/System.DirectoryServices.Protocols.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/System.Drawing.Common.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/System.IdentityModel.Tokens.Jwt.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/System.IO.Pipelines.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/System.Memory.Data.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/System.Runtime.Caching.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/System.Security.Permissions.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/System.Text.Encodings.Web.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/System.Text.Json.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/System.Windows.Extensions.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/TouchSocket.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/TouchSocket.Core.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/de/Microsoft.Data.SqlClient.resources.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/es/Microsoft.Data.SqlClient.resources.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/fr/Microsoft.Data.SqlClient.resources.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/it/Microsoft.Data.SqlClient.resources.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/ja/Microsoft.Data.SqlClient.resources.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/ko/Microsoft.Data.SqlClient.resources.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/pt-BR/Microsoft.Data.SqlClient.resources.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/ru/Microsoft.Data.SqlClient.resources.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/browser-wasm/nativeassets/net6.0/e_sqlite3.a
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/linux-arm/native/libe_sqlite3.so
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/linux-arm64/native/libe_sqlite3.so
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/linux-armel/native/libe_sqlite3.so
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/linux-mips64/native/libe_sqlite3.so
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/linux-musl-arm/native/libe_sqlite3.so
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/linux-musl-s390x/native/libe_sqlite3.so
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/linux-musl-x64/native/libe_sqlite3.so
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/linux-ppc64le/native/libe_sqlite3.so
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/linux-s390x/native/libe_sqlite3.so
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/linux-x64/native/libe_sqlite3.so
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/linux-x86/native/libe_sqlite3.so
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/osx-arm64/native/libe_sqlite3.dylib
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/osx-x64/native/libe_sqlite3.dylib
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/win-arm/native/e_sqlite3.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/win-arm64/native/e_sqlite3.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/win-x64/native/e_sqlite3.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/win-x86/native/e_sqlite3.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Business.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Common.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Config.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Model.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Repository.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Serilog.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Socket.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Business.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Config.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Repository.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Serilog.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Socket.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Common.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/Sln.Iot.Model.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/obj/Debug/net6.0/Sln.Iot.csproj.AssemblyReference.cache
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/obj/Debug/net6.0/Sln.Iot.GeneratedMSBuildEditorConfig.editorconfig
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/obj/Debug/net6.0/Sln.Iot.AssemblyInfoInputs.cache
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/obj/Debug/net6.0/Sln.Iot.AssemblyInfo.cs
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/obj/Debug/net6.0/Sln.Iot.csproj.CoreCompileInputs.cache
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/obj/Debug/net6.0/Sln.Iot.csproj.CopyComplete
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/obj/Debug/net6.0/Sln.Iot.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/obj/Debug/net6.0/refint/Sln.Iot.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/obj/Debug/net6.0/Sln.Iot.pdb
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/obj/Debug/net6.0/Sln.Iot.genruntimeconfig.cache
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/obj/Debug/net6.0/ref/Sln.Iot.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/TouchSocket.Http.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/TouchSocket.Rpc.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/TouchSocket.WebApi.dll
+/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/bin/Debug/net6.0/TouchSocket.WebApi.Swagger.dll
diff --git a/Sln.Iot/obj/Debug/net6.0/Sln.Iot.dll b/Sln.Iot/obj/Debug/net6.0/Sln.Iot.dll
index a14935c..9fad5e4 100644
Binary files a/Sln.Iot/obj/Debug/net6.0/Sln.Iot.dll and b/Sln.Iot/obj/Debug/net6.0/Sln.Iot.dll differ
diff --git a/Sln.Iot/obj/Debug/net6.0/Sln.Iot.genruntimeconfig.cache b/Sln.Iot/obj/Debug/net6.0/Sln.Iot.genruntimeconfig.cache
index c7da05b..3a8fe16 100644
--- a/Sln.Iot/obj/Debug/net6.0/Sln.Iot.genruntimeconfig.cache
+++ b/Sln.Iot/obj/Debug/net6.0/Sln.Iot.genruntimeconfig.cache
@@ -1 +1 @@
-1b72111a0018f4290b716b38378c17cd692bce77
+87241a19436c5b419c3b13f4b52672a07972f097
diff --git a/Sln.Iot/obj/Debug/net6.0/Sln.Iot.pdb b/Sln.Iot/obj/Debug/net6.0/Sln.Iot.pdb
index 733da9a..3e3c913 100644
Binary files a/Sln.Iot/obj/Debug/net6.0/Sln.Iot.pdb and b/Sln.Iot/obj/Debug/net6.0/Sln.Iot.pdb differ
diff --git a/Sln.Iot/obj/Debug/net6.0/ref/Sln.Iot.dll b/Sln.Iot/obj/Debug/net6.0/ref/Sln.Iot.dll
index 414ec85..a38e414 100644
Binary files a/Sln.Iot/obj/Debug/net6.0/ref/Sln.Iot.dll and b/Sln.Iot/obj/Debug/net6.0/ref/Sln.Iot.dll differ
diff --git a/Sln.Iot/obj/Debug/net6.0/refint/Sln.Iot.dll b/Sln.Iot/obj/Debug/net6.0/refint/Sln.Iot.dll
index 414ec85..a38e414 100644
Binary files a/Sln.Iot/obj/Debug/net6.0/refint/Sln.Iot.dll and b/Sln.Iot/obj/Debug/net6.0/refint/Sln.Iot.dll differ
diff --git a/Sln.Iot/obj/Sln.Iot.csproj.nuget.dgspec.json b/Sln.Iot/obj/Sln.Iot.csproj.nuget.dgspec.json
index cc3866e..54b48c6 100644
--- a/Sln.Iot/obj/Sln.Iot.csproj.nuget.dgspec.json
+++ b/Sln.Iot/obj/Sln.Iot.csproj.nuget.dgspec.json
@@ -1,17 +1,17 @@
{
"format": 1,
"restore": {
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot/Sln.Iot.csproj": {}
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/Sln.Iot.csproj": {}
},
"projects": {
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Business/Sln.Iot.Business.csproj": {
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/Sln.Iot.Business.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Business/Sln.Iot.Business.csproj",
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/Sln.Iot.Business.csproj",
"projectName": "Sln.Iot.Business",
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Business/Sln.Iot.Business.csproj",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/Sln.Iot.Business.csproj",
"packagesPath": "/Users/wenxiansheng/.nuget/packages/",
- "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Business/obj/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
@@ -26,20 +26,20 @@
"netstandard2.1": {
"targetAlias": "netstandard2.1",
"projectReferences": {
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj"
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj"
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj"
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj"
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj"
}
}
}
@@ -73,14 +73,14 @@
}
}
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj": {
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj",
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj",
"projectName": "Sln.Iot.Common",
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/Sln.Iot.Common.csproj",
"packagesPath": "/Users/wenxiansheng/.nuget/packages/",
- "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Common/obj/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Common/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
@@ -132,14 +132,14 @@
}
}
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj": {
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj",
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj",
"projectName": "Sln.Iot.Config",
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj",
"packagesPath": "/Users/wenxiansheng/.nuget/packages/",
- "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/obj/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
@@ -191,14 +191,14 @@
}
}
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj": {
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj",
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj",
"projectName": "Sln.Iot.Model",
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj",
"packagesPath": "/Users/wenxiansheng/.nuget/packages/",
- "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/obj/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
@@ -250,14 +250,14 @@
}
}
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj": {
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj",
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj",
"projectName": "Sln.Iot.Repository",
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj",
"packagesPath": "/Users/wenxiansheng/.nuget/packages/",
- "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/obj/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
@@ -272,11 +272,11 @@
"netstandard2.1": {
"targetAlias": "netstandard2.1",
"projectReferences": {
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj"
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj"
}
}
}
@@ -310,14 +310,14 @@
}
}
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj": {
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj",
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj",
"projectName": "Sln.Iot.Serilog",
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj",
"packagesPath": "/Users/wenxiansheng/.nuget/packages/",
- "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/obj/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
@@ -332,8 +332,8 @@
"netstandard2.1": {
"targetAlias": "netstandard2.1",
"projectReferences": {
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj"
}
}
}
@@ -377,14 +377,14 @@
}
}
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj": {
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj",
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj",
"projectName": "Sln.Iot.Socket",
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj",
"packagesPath": "/Users/wenxiansheng/.nuget/packages/",
- "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/obj/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
@@ -399,8 +399,11 @@
"netstandard2.1": {
"targetAlias": "netstandard2.1",
"projectReferences": {
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Model/Sln.Iot.Model.csproj"
+ },
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj"
}
}
}
@@ -418,6 +421,14 @@
"TouchSocket": {
"target": "Package",
"version": "[2.0.0, )"
+ },
+ "TouchSocket.WebApi": {
+ "target": "Package",
+ "version": "[2.0.0, )"
+ },
+ "TouchSocket.WebApi.Swagger": {
+ "target": "Package",
+ "version": "[2.0.0, )"
}
},
"imports": [
@@ -440,14 +451,14 @@
}
}
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot/Sln.Iot.csproj": {
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/Sln.Iot.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot/Sln.Iot.csproj",
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/Sln.Iot.csproj",
"projectName": "Sln.Iot",
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot/Sln.Iot.csproj",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/Sln.Iot.csproj",
"packagesPath": "/Users/wenxiansheng/.nuget/packages/",
- "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot/obj/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
@@ -462,20 +473,20 @@
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Business/Sln.Iot.Business.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Business/Sln.Iot.Business.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/Sln.Iot.Business.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/Sln.Iot.Business.csproj"
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj"
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj"
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj"
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj"
}
}
}
diff --git a/Sln.Iot/obj/Sln.Iot.csproj.nuget.g.props b/Sln.Iot/obj/Sln.Iot.csproj.nuget.g.props
index 0c90383..371110f 100644
--- a/Sln.Iot/obj/Sln.Iot.csproj.nuget.g.props
+++ b/Sln.Iot/obj/Sln.Iot.csproj.nuget.g.props
@@ -14,5 +14,6 @@
/Users/wenxiansheng/.nuget/packages/touchsocket.core/2.0.0
+ /Users/wenxiansheng/.nuget/packages/touchsocket.rpc/2.0.0
\ No newline at end of file
diff --git a/Sln.Iot/obj/project.assets.json b/Sln.Iot/obj/project.assets.json
index 3d92fb1..fe02e79 100644
--- a/Sln.Iot/obj/project.assets.json
+++ b/Sln.Iot/obj/project.assets.json
@@ -2238,6 +2238,71 @@
}
}
},
+ "TouchSocket.Http/2.0.0": {
+ "type": "package",
+ "dependencies": {
+ "TouchSocket": "2.0.0"
+ },
+ "compile": {
+ "lib/net6.0/TouchSocket.Http.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/TouchSocket.Http.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "TouchSocket.Rpc/2.0.0": {
+ "type": "package",
+ "dependencies": {
+ "TouchSocket.Core": "2.0.0"
+ },
+ "compile": {
+ "lib/net6.0/TouchSocket.Rpc.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/TouchSocket.Rpc.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "TouchSocket.WebApi/2.0.0": {
+ "type": "package",
+ "dependencies": {
+ "TouchSocket.Http": "2.0.0",
+ "TouchSocket.Rpc": "2.0.0"
+ },
+ "compile": {
+ "lib/net6.0/TouchSocket.WebApi.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/TouchSocket.WebApi.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "TouchSocket.WebApi.Swagger/2.0.0": {
+ "type": "package",
+ "dependencies": {
+ "TouchSocket.WebApi": "2.0.0"
+ },
+ "compile": {
+ "lib/net6.0/TouchSocket.WebApi.Swagger.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/TouchSocket.WebApi.Swagger.dll": {
+ "related": ".xml"
+ }
+ }
+ },
"Sln.Iot.Business/1.0.0": {
"type": "project",
"framework": ".NETStandard,Version=v2.1",
@@ -2327,8 +2392,11 @@
"type": "project",
"framework": ".NETStandard,Version=v2.1",
"dependencies": {
+ "Sln.Iot.Model": "1.0.0",
"Sln.Iot.Serilog": "1.0.0",
- "TouchSocket": "2.0.0"
+ "TouchSocket": "2.0.0",
+ "TouchSocket.WebApi": "2.0.0",
+ "TouchSocket.WebApi.Swagger": "2.0.0"
},
"compile": {
"bin/placeholder/Sln.Iot.Socket.dll": {}
@@ -6233,6 +6301,134 @@
"touchsocket.core.nuspec"
]
},
+ "TouchSocket.Http/2.0.0": {
+ "sha512": "pS7HpoSI7DnBtdX6WVph7XKxdaC5IiWJh13ubujvBjD8+FjXVZidecnPOiS3RvKTV9iWzcIOuun1s2CkSZd21A==",
+ "type": "package",
+ "path": "touchsocket.http/2.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.txt",
+ "lib/net45/TouchSocket.Http.dll",
+ "lib/net45/TouchSocket.Http.xml",
+ "lib/net462/TouchSocket.Http.dll",
+ "lib/net462/TouchSocket.Http.xml",
+ "lib/net472/TouchSocket.Http.dll",
+ "lib/net472/TouchSocket.Http.xml",
+ "lib/net481/TouchSocket.Http.dll",
+ "lib/net481/TouchSocket.Http.xml",
+ "lib/net6.0/TouchSocket.Http.dll",
+ "lib/net6.0/TouchSocket.Http.xml",
+ "lib/net7.0/TouchSocket.Http.dll",
+ "lib/net7.0/TouchSocket.Http.xml",
+ "lib/net8.0/TouchSocket.Http.dll",
+ "lib/net8.0/TouchSocket.Http.xml",
+ "lib/netstandard2.0/TouchSocket.Http.dll",
+ "lib/netstandard2.0/TouchSocket.Http.xml",
+ "lib/netstandard2.1/TouchSocket.Http.dll",
+ "lib/netstandard2.1/TouchSocket.Http.xml",
+ "logo.png",
+ "touchsocket.http.2.0.0.nupkg.sha512",
+ "touchsocket.http.nuspec"
+ ]
+ },
+ "TouchSocket.Rpc/2.0.0": {
+ "sha512": "8IhGjKv4NsSvbwKvxpYY36VG0EHj/EJfooVAxuDxM6uKW9ZDEBwd8/7xLidv7traWtLp0XOT6/0Ws6uEfGPttw==",
+ "type": "package",
+ "path": "touchsocket.rpc/2.0.0",
+ "hasTools": true,
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.txt",
+ "analyzers/dotnet/cs/TouchSocket.Rpc.SourceGenerator.dll",
+ "lib/net45/TouchSocket.Rpc.dll",
+ "lib/net45/TouchSocket.Rpc.xml",
+ "lib/net462/TouchSocket.Rpc.dll",
+ "lib/net462/TouchSocket.Rpc.xml",
+ "lib/net472/TouchSocket.Rpc.dll",
+ "lib/net472/TouchSocket.Rpc.xml",
+ "lib/net481/TouchSocket.Rpc.dll",
+ "lib/net481/TouchSocket.Rpc.xml",
+ "lib/net6.0/TouchSocket.Rpc.dll",
+ "lib/net6.0/TouchSocket.Rpc.xml",
+ "lib/net7.0/TouchSocket.Rpc.dll",
+ "lib/net7.0/TouchSocket.Rpc.xml",
+ "lib/net8.0/TouchSocket.Rpc.dll",
+ "lib/net8.0/TouchSocket.Rpc.xml",
+ "lib/netstandard2.0/TouchSocket.Rpc.dll",
+ "lib/netstandard2.0/TouchSocket.Rpc.xml",
+ "lib/netstandard2.1/TouchSocket.Rpc.dll",
+ "lib/netstandard2.1/TouchSocket.Rpc.xml",
+ "logo.png",
+ "tools/install.ps1",
+ "tools/uninstall.ps1",
+ "touchsocket.rpc.2.0.0.nupkg.sha512",
+ "touchsocket.rpc.nuspec"
+ ]
+ },
+ "TouchSocket.WebApi/2.0.0": {
+ "sha512": "Xwz8WFVblpdZqXLQ/eKgOlSPffPjiaAv6xOiE9+lyU74d34uLhI6MqRoX0ywkoERNCJkzEsQw5txocDRmXTWxw==",
+ "type": "package",
+ "path": "touchsocket.webapi/2.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.txt",
+ "lib/net45/TouchSocket.WebApi.dll",
+ "lib/net45/TouchSocket.WebApi.xml",
+ "lib/net462/TouchSocket.WebApi.dll",
+ "lib/net462/TouchSocket.WebApi.xml",
+ "lib/net472/TouchSocket.WebApi.dll",
+ "lib/net472/TouchSocket.WebApi.xml",
+ "lib/net481/TouchSocket.WebApi.dll",
+ "lib/net481/TouchSocket.WebApi.xml",
+ "lib/net6.0/TouchSocket.WebApi.dll",
+ "lib/net6.0/TouchSocket.WebApi.xml",
+ "lib/net7.0/TouchSocket.WebApi.dll",
+ "lib/net7.0/TouchSocket.WebApi.xml",
+ "lib/net8.0/TouchSocket.WebApi.dll",
+ "lib/net8.0/TouchSocket.WebApi.xml",
+ "lib/netstandard2.0/TouchSocket.WebApi.dll",
+ "lib/netstandard2.0/TouchSocket.WebApi.xml",
+ "lib/netstandard2.1/TouchSocket.WebApi.dll",
+ "lib/netstandard2.1/TouchSocket.WebApi.xml",
+ "logo.png",
+ "touchsocket.webapi.2.0.0.nupkg.sha512",
+ "touchsocket.webapi.nuspec"
+ ]
+ },
+ "TouchSocket.WebApi.Swagger/2.0.0": {
+ "sha512": "pw1UvrVUZL2euVS/DTRLSWQqzIOJ9f+HylcIFEh3zokqC+2FIqj7+d/c6z4drjO1OhWi/25+qEMc4ksAup/48w==",
+ "type": "package",
+ "path": "touchsocket.webapi.swagger/2.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.txt",
+ "lib/net45/TouchSocket.WebApi.Swagger.dll",
+ "lib/net45/TouchSocket.WebApi.Swagger.xml",
+ "lib/net462/TouchSocket.WebApi.Swagger.dll",
+ "lib/net462/TouchSocket.WebApi.Swagger.xml",
+ "lib/net472/TouchSocket.WebApi.Swagger.dll",
+ "lib/net472/TouchSocket.WebApi.Swagger.xml",
+ "lib/net481/TouchSocket.WebApi.Swagger.dll",
+ "lib/net481/TouchSocket.WebApi.Swagger.xml",
+ "lib/net6.0/TouchSocket.WebApi.Swagger.dll",
+ "lib/net6.0/TouchSocket.WebApi.Swagger.xml",
+ "lib/net7.0/TouchSocket.WebApi.Swagger.dll",
+ "lib/net7.0/TouchSocket.WebApi.Swagger.xml",
+ "lib/net8.0/TouchSocket.WebApi.Swagger.dll",
+ "lib/net8.0/TouchSocket.WebApi.Swagger.xml",
+ "lib/netstandard2.0/TouchSocket.WebApi.Swagger.dll",
+ "lib/netstandard2.0/TouchSocket.WebApi.Swagger.xml",
+ "lib/netstandard2.1/TouchSocket.WebApi.Swagger.dll",
+ "lib/netstandard2.1/TouchSocket.WebApi.Swagger.xml",
+ "logo.png",
+ "touchsocket.webapi.swagger.2.0.0.nupkg.sha512",
+ "touchsocket.webapi.swagger.nuspec"
+ ]
+ },
"Sln.Iot.Business/1.0.0": {
"type": "project",
"path": "../Sln.Iot.Business/Sln.Iot.Business.csproj",
@@ -6286,11 +6482,11 @@
"project": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot/Sln.Iot.csproj",
+ "projectUniqueName": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/Sln.Iot.csproj",
"projectName": "Sln.Iot",
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot/Sln.Iot.csproj",
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/Sln.Iot.csproj",
"packagesPath": "/Users/wenxiansheng/.nuget/packages/",
- "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot/obj/",
+ "outputPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/wenxiansheng/.nuget/NuGet/NuGet.Config"
@@ -6305,20 +6501,20 @@
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Business/Sln.Iot.Business.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Business/Sln.Iot.Business.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/Sln.Iot.Business.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/Sln.Iot.Business.csproj"
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj"
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj"
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj"
},
- "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj": {
- "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj"
+ "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj": {
+ "projectPath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj"
}
}
}
diff --git a/Sln.Iot/obj/project.nuget.cache b/Sln.Iot/obj/project.nuget.cache
index d64fa76..9101415 100644
--- a/Sln.Iot/obj/project.nuget.cache
+++ b/Sln.Iot/obj/project.nuget.cache
@@ -1,8 +1,8 @@
{
"version": 2,
- "dgSpecHash": "djEYP0ribvQ=",
+ "dgSpecHash": "5hv7MCi29ac=",
"success": true,
- "projectFilePath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot/Sln.Iot.csproj",
+ "projectFilePath": "/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/Sln.Iot.csproj",
"expectedPackageFiles": [
"/Users/wenxiansheng/.nuget/packages/azure.core/1.38.0/azure.core.1.38.0.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/azure.identity/1.11.4/azure.identity.1.11.4.nupkg.sha512",
@@ -120,7 +120,11 @@
"/Users/wenxiansheng/.nuget/packages/system.threading.tasks.extensions/4.5.4/system.threading.tasks.extensions.4.5.4.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/system.windows.extensions/6.0.0/system.windows.extensions.6.0.0.nupkg.sha512",
"/Users/wenxiansheng/.nuget/packages/touchsocket/2.0.0/touchsocket.2.0.0.nupkg.sha512",
- "/Users/wenxiansheng/.nuget/packages/touchsocket.core/2.0.0/touchsocket.core.2.0.0.nupkg.sha512"
+ "/Users/wenxiansheng/.nuget/packages/touchsocket.core/2.0.0/touchsocket.core.2.0.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/touchsocket.http/2.0.0/touchsocket.http.2.0.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/touchsocket.rpc/2.0.0/touchsocket.rpc.2.0.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/touchsocket.webapi/2.0.0/touchsocket.webapi.2.0.0.nupkg.sha512",
+ "/Users/wenxiansheng/.nuget/packages/touchsocket.webapi.swagger/2.0.0/touchsocket.webapi.swagger.2.0.0.nupkg.sha512"
],
"logs": []
}
\ No newline at end of file
diff --git a/Sln.Iot/obj/project.packagespec.json b/Sln.Iot/obj/project.packagespec.json
index daa2a4e..85d3813 100644
--- a/Sln.Iot/obj/project.packagespec.json
+++ b/Sln.Iot/obj/project.packagespec.json
@@ -1 +1 @@
-"restore":{"projectUniqueName":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot/Sln.Iot.csproj","projectName":"Sln.Iot","projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot/Sln.Iot.csproj","outputPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net6.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net6.0":{"targetAlias":"net6.0","projectReferences":{"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Business/Sln.Iot.Business.csproj":{"projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Business/Sln.Iot.Business.csproj"},"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj":{"projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj"},"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj":{"projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj"},"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj":{"projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj"},"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj":{"projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/IOT物联网数据采集/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net6.0":{"targetAlias":"net6.0","dependencies":{"Microsoft.Extensions.Hosting":{"target":"Package","version":"[9.0.4, )"},"Scrutor":{"target":"Package","version":"[6.0.1, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/6.0.417/RuntimeIdentifierGraph.json"}}
\ No newline at end of file
+"restore":{"projectUniqueName":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/Sln.Iot.csproj","projectName":"Sln.Iot","projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/Sln.Iot.csproj","outputPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net6.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net6.0":{"targetAlias":"net6.0","projectReferences":{"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/Sln.Iot.Business.csproj":{"projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Business/Sln.Iot.Business.csproj"},"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj":{"projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Config/Sln.Iot.Config.csproj"},"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj":{"projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Repository/Sln.Iot.Repository.csproj"},"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj":{"projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Serilog/Sln.Iot.Serilog.csproj"},"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj":{"projectPath":"/Users/wenxiansheng/Public/WorkSpace/Mesnac/项目资料/大兴机场 IOT 项目/Sln.Iot/Sln.Iot.Socket/Sln.Iot.Socket.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net6.0":{"targetAlias":"net6.0","dependencies":{"Microsoft.Extensions.Hosting":{"target":"Package","version":"[9.0.4, )"},"Scrutor":{"target":"Package","version":"[6.0.1, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/6.0.417/RuntimeIdentifierGraph.json"}}
\ No newline at end of file
diff --git a/Sln.Iot/obj/rider.project.model.nuget.info b/Sln.Iot/obj/rider.project.model.nuget.info
index 564bb00..d9a575a 100644
--- a/Sln.Iot/obj/rider.project.model.nuget.info
+++ b/Sln.Iot/obj/rider.project.model.nuget.info
@@ -1 +1 @@
-17443613498702102
\ No newline at end of file
+17467833632579223
\ No newline at end of file
diff --git a/Sln.Iot/obj/rider.project.restore.info b/Sln.Iot/obj/rider.project.restore.info
index 564bb00..d9a575a 100644
--- a/Sln.Iot/obj/rider.project.restore.info
+++ b/Sln.Iot/obj/rider.project.restore.info
@@ -1 +1 @@
-17443613498702102
\ No newline at end of file
+17467833632579223
\ No newline at end of file
diff --git a/Sln.Iot/readme.md b/Sln.Iot/readme.md
index bb49c06..45b7685 100644
--- a/Sln.Iot/readme.md
+++ b/Sln.Iot/readme.md
@@ -1,206 +1,96 @@
-**RKKC1604-N2型动力环境监控一体机.上行通讯协议**
+> 2023
+>
+>
+> 数据包格式及通讯协议
+>
-**1.终端主动发送登录指令(0x21/0xA1)**
+HWCC_R4_N1_G1集中器
-终端发起有效登录指令后,上位机软件才能对终端发送的数据进行解析和存库。
+| 序号 | 版本号 | 修订内容 | 修订人 | 修订日期 |
+| --- | --- | --- | --- | --- |
+| 1 | V1.0 | 整合数据格式 | 罗宝会 | 2025.05.07 |
-| 类别 | 数据内容 | 数据长度 | 备注 |
+> 版本记录
+>
+
+# 一、 请求登录指令
+
+> 终端发送:68 37 01 01 68 33 50 41 53 53 26 16
+>
+
+| **帧头** | **采集器类型** | **采集器地址高位** | **采集器地址低位** |
| --- | --- | --- | --- |
-| 帧开始 | 0x68 | 1个字节 | |
-| 采集器类型 | 0x45 | 1个字节 | 0x45-采集终端类型 |
-| 采集器地址 | 0x0001~0x9999 | 2个字节 | 高位在前低位在后,BCD码形式 |
-| 命令序列号 | | 2个字节 | 高位在前低位在后,命令帧的序列号 |
-| 起始符 | 0x68 | 1个字节 | |
-| 控制码 | 0x21 | 1个字节 | 登录指令标识码 |
-| 数据长度 | 0x00 0x03 | 2个字节 | 固定为0x00,0x03 |
-| 数据域 | 0x12 0x34 0x56 | 3个字节 | 固定为 0x12 0x34 0x56 |
-| 校验码 | CS | 1个字节 | 从帧开始到数据域最后一位的数据累加CS校验 |
-| 结束符 | 0x16 | 1个字节 | 1个字节 |
+| 68 | 37 | 01 | 01 |
-举例:
+| **起始符** | **控制码** | **登录密码** | **校验位(固定)** | **帧尾** |
+| --- | --- | --- | --- | --- |
+| 68 | 33 | 50 41 53 53 | CC | 16 |
-终端发送指令:
+上位机返回:68 37 01 01 68 33 50 41 53 53 26 16(数据不能包含00)
-68 45 01 02 00 BF 68 21 00 03 12 34 56 97 16
+# 二、 心跳指令
-上位机返回指令:
+> 终端发送:68 37 01 01 68 33 26 16
+>
-68 45 01 02 00 BF 68 A1 00 00 78 16
-
-**2.上位机对采集终端设备校时指令(0x08/0x88)**
-
-为保证现场采集设备与服务器之间的时间同步,采集终端登录服务器成功后服务器需要对采集设备进行校时。在后续正常工作时,为纠正设备之间的时间偏差,建议每隔一段时间(比如8个小时)对现场终端进行一次校时。
-
-| 类别 | 数据内容 | 数据长度 | 备注 |
+| **帧头** | **采集器类型** | **采集器地址高位** | **采集器地址低位** |
| --- | --- | --- | --- |
-| 帧开始 | 0x68 | 1个字节 | |
-| 采集器类型 | 0x45 | 1个字节 | 0x45-采集终端类型 |
-| 采集器地址 | 0x0001~0x9999 | 2个字节 | 高位在前低位在后,BCD码形式 |
-| 命令序列号 | | 2个字节 | 高位在前低位在后,命令帧的序列号 |
-| 起始符 | 0x68 | 1个字节 | |
-| 控制码 | 0x08 | 1个字节 | 设置终端参数标识码 |
-| 数据长度 | 0x00 0x0D | 2个字节 | 固定为0x00,0x0D |
-| 数据域 | 0x00 | 1个字节 | 固定为0x00 |
-| | 0x00 | 1个字节 | 固定为0x00 |
-| | 0x31 0x32 0x33 | 3个字节 | 密码,固定为0x31 0x32 0x33 |
-| | 0x80 0x30 | 2个字节 | 时间标识码,固定为0x80 0x30 |
-| | 秒-分-时-日-月-年 | 6个字节 | 具体时间:秒-分-时-日-月-年 |
-| 校验码 | CS | 1个字节 | 从帧开始到数据长度数据累加CS校验 |
-| 结束符 | 0x16 | 1个字节 | 1个字节 |
+| 68 | 37 | 01 | 01 |
-举例:
+| **起始符** | **控制码** | **校验位(固定)** | **帧尾** |
+| --- |---------| --- | --- |
+| 68 | 36 | CC | 16 |
-上位机发送指令:
+上位机返回:68 37 01 01 68 36 26 16 (数据不能包含00)
-68 45 01 02 40 00 68 08 00 0D 00 00 31 32 33 80 30 22 39 14 16 09 15 56 16
+# 三、 数据上传
-终端返回指令:
+68 37 00 01 68 34 B4 01 36 08 79 64 10 B4 02 12 02 31 62 00 20 B4 03 12 B4 04 25 05 07 16 48 42 CC 16
-68 45 01 02 40 00 68 88 00 04 00 80 30 00 94 16
-
-**3.终端主动发送心跳指令(0x24/0xA4)**
-
-通过心跳指令判断采集设备与上位机直接的通讯连接状态,采集设备通过定时发送心跳指令,在有效时间内若得到上位机的响应,则判断出终端与上位机之间处于有效连接中,否则若在有效时间捏没有得到上位机的响应,则判断出终端没有连接上上位机,终端则发起登录上位机服务器的流程和指令。
-
-| 类别 | 数据内容 | 数据长度 | 备注 |
+| **帧头** | **采集器类型** | **采集器地址高8位** | **采集器地址低8位** |
| --- | --- | --- | --- |
-| 帧开始 | 0x68 | 1个字节 | |
-| 采集器类型 | 0x45 | 1个字节 | 0x45-采集终端类型 |
-| 采集器地址 | 0x0001~0x9999 | 2个字节 | 高位在前低位在后,BCD码形式 |
-| 命令序列号 | | 2个字节 | 高位在前低位在后,命令帧的序列号 |
-| 起始符 | 0x68 | 1个字节 | |
-| 控制码 | 0x24 | 1个字节 | 心跳指令标识码 |
-| 数据长度 | | 2个字节 | 固定为0x00,0x00 |
-| 校验码 | CS | 1个字节 | 从帧开始到数据长度数据累加CS校验 |
-| 结束符 | 0x16 | 1个字节 | 1个字节 |
+| 68 | 37 | 00 | 01 |
-举例:
+| **起始符** | **控制码** | **标志位** | **北纬/南纬**
+**(36.087964°)** | **10:北纬 00:南纬** |
+| --- | --- | --- | --- | --- |
+| 68 | 34 | B4 01 | 36 08 79 64 | 10 |
+| **标志位** | **东经/西经**
+**(120.2316200°)** | **20:东经 30:西经** | **标志位** | **识别到的卫星数量** |
+| B4 02 | 12 02 31 62 00 | 20 | B4 03 | 12 |
+| **标志位** | **时间(25年5月7号716点48分42秒)** | **校验位(固定)** | **帧尾** | |
+| B4 04 | 25 05 07 16 48 42 | CC | 16 | |
-终端发送指令:
+服务器测试截图
-68 45 00 01 00 01 68 24 00 00 3B 16
+
-上位机返回指令:
+# 开锁指令
-68 45 00 01 00 01 68 A4 00 00 BB 16
+> 上位机发送:68 37 01 01 68 35 4F 50 45 4E CC 16
+>
-**4.终端主动上传实时数据指令**
-
-采集设备根据设定的时间间隔,定时对现场仪表进行数据采集,并将采集到的数据综合处理后主动上传到上位机平台。
-
-| 类别 | 数据内容 | 数据长度 | 备注 |
+| **帧头** | **采集器类型** | **采集器地址高位** | **采集器地址低位** |
| --- | --- | --- | --- |
-| 帧开始 | 0x68 | 1个字节 | |
-| 采集器类型 | 0x45 | 1个字节 | 0x45-采集终端类型 |
-| 采集器地址 | 0x0001~0x9999 | 2个字节 | 高位在前低位在后,BCD码形式 |
-| 命令序列号 | | 2个字节 | 高位在前低位在后,命令帧的序列号 |
-| 起始符 | 0x68 | 1个字节 | |
-| 控制码 | 0x83/0x84/0x85/0x86/0x87 | 1个字节 | 0x83-电力;0x84-压缩空气、水;0x85-温湿度、照度;0x86-开关量IO状态;0x87-蒸汽 |
-| 数据长度 | N个仪表*1个仪表的长度 | 2个字节 | 1条仪表数据数据长度L
-0x83:L=2(表序号)+8*6(8项数据项)+8(采集时间) = 58个字节
-0x84:L=2(表序号)+8*6(8项数据项)+8(采集时间) = 58个字节
-0x85: L=2(表序号)+4*6(8项数据项)+8(采集时间) = 34个字节
-0x86: L=2(表序号)+16(16路IO输入)+8(采集时间) = 26个字节,N=1
-0x87:L=2(表序号)+8*6(8项数据项)+8(采集时间) = 58个字节 |
-| 数据域 | 0x00 | N*L个字节 | |
-| 校验码 | CS | 1个字节 | 从帧开始到数据长度数据累加CS校验 |
-| 结束符 | 0x16 | 1个字节 | 1个字节 |
+| 68 | 37 | 00 | 01 |
-控制码:
+| **起始符** | **控制码** | **密码** | **校验位(固定)** | **帧尾** |
+| --- | --- | --- | --- | --- |
+| 68 | 35 | 4F 50 45 4E | CC | 16 |
-| 序号 | 终端主动发送数据控制码 | 上位机返回对应控制码 | 备注 |
+终端返回:68 37 01 01 68 35 65 43 21 CC 16 (数据不能包含00)
+
+# 关锁指令
+
+> 上位机发送:68 37 01 01 68 37 43 4C 4F 53 45 CC 16
+>
+
+| **帧头** | **采集器类型** | **采集器地址高位** | **采集器地址低位** |
| --- | --- | --- | --- |
-| 1 | 0x83 | 0xB3 | |
-| 2 | 0x84 | 0xB4 | |
-| 3 | 0x85 | 0xB5 | |
-| 3 | 0x85 | 0xB6 | |
+| 68 | 37 | 00 | 01 |
-电力采集数据域举例:
+| **起始符** | **控制码** | **密码** | **校验位(固定)** | **帧尾** |
+| --- |---------| --- | --- | --- |
+| 68 | 37 | 43 4C 4F 53 45 | CC | 16 |
-
-
-举例:
-
-终端发生命令帧:
-
-68 45 00 01 01 FF 68 83 00 3A 01 00 8E 11 61 4E 4B 3C 8E 12 61 4E 4B 3C 8E 13 61 4E 4B 3C 8E 21 61 4E 4B 3C 8E 22 61 4E 4B 3C 8E 23 61 4E 4B 3C B6 50 3F 7C AC 08 90 10 61 4E 4B 3C 80 30 50 40 16 28 04 20 F5 16
-
-上位机返回:
-
-68 45 00 01 0A 3F 68 B3 00 00 12 16
-
-**5.终端主动上传历史数据指令**
-
-在采集设备与上位机有效连接的期间内,采集设备对存储在内部存储区内的历史数据进行批量上传工作。
-
-| 类别 | 数据内容 | 数据长度 | 备注 |
-| --- | --- | --- | --- |
-| 帧开始 | 0x68 | 1个字节 | |
-| 采集器类型 | 0x45 | 1个字节 | 0x45-采集终端类型 |
-| 采集器地址 | 0x0001~0x9999 | 2个字节 | 高位在前低位在后,BCD码形式 |
-| 命令序列号 | | 2个字节 | 高位在前低位在后,命令帧的序列号 |
-| 起始符 | 0x68 | 1个字节 | |
-| 控制码 | 0x83/0x84/0x85/0x86/0x87 | 1个字节 | 0x83-电力;0x84-压缩空气、水;0x85-温湿度、照度;0x86-开关量IO状态;0x87-蒸汽 |
-| 数据长度 | N个仪表*1个仪表的长度 | 2个字节 | 1条仪表数据数据长度L
-0x93:L=2(表序号)+8*6(8项数据项)+8(采集时间) = 58个字节
-0x94:L=2(表序号)+8*6(8项数据项)+8(采集时间) = 58个字节
-0x95: L=2(表序号)+4*6(4项数据项)+8(采集时间) = 34个字节
-0x96: L=2(表序号)+16(16路IO输入)+8(采集时间) = 26个字节,N=1
-0x97:L=2(表序号)+8*6(8项数据项)+8(采集时间) = 58个字节 |
-| 数据域 | 0x00 | N*L个字节 | |
-| 校验码 | CS | 1个字节 | 从帧开始到数据长度数据累加CS校验 |
-| 结束符 | 0x16 | 1个字节 | 1个字节 |
-
-控制码:
-
-| 序号 | 终端主动发送数据控制码 | 上位机返回对应控制码 | 备注 |
-| --- | --- | --- | --- |
-| 1 | 0x93 | 0xC3 | |
-| 2 | 0x94 | 0xC4 | |
-| 3 | 0x95 | 0xC5 | |
-| 4 | 0x96 | 0xC6 | |
-| 5 | 0x97 | 0xC7 | |
-
-电力采集数据域举例:
-
-
-
-举例:
-
-终端发生命令帧:
-
-68 45 00 01 01 FF 68 93 00 3A 01 00 8E 11 61 4E 4B 3C 8E 12 61 4E 4B 3C 8E 13 61 4E 4B 3C 8E 21 61 4E 4B 3C 8E 22 61 4E 4B 3C 8E 23 61 4E 4B 3C B6 50 3F 7C AC 08 90 10 61 4E 4B 3C 80 30 50 40 16 28 04 20 05 16
-
-上位机返回:
-
-68 45 00 01 0A 3F 68 C3 00 00 22 16
-
-# 附录:上传数据标识码(部分)
-
-| 标识符类型 | 说明 | 标识符类型 | 说明 |
-| --- | --- | --- | --- |
-| 0x8E11 | A相电压 | 0x9B00 | 仪表压力值 |
-| 0x8E12 | B相电压 | 0x9B01 | 仪表温度值 |
-| 0x8E13 | C相电压 | 0x9B02 | 仪表频率值 |
-| 0x8E21 | A相电流 | 0x9B03 | 仪表瞬时流值 |
-| 0x8E22 | B相电流 | 0x9B05 | 仪表累积流量值 |
-| 0x8E23 | C相电流 | 0x9B06 | 仪表瞬时热量 |
-| 0xB650 | 总功率因数 | 0x9B07 | 仪表累积热量值 |
-| 0x9010 | 正向有功总电能 | 0x9B0E | 仪表密度值 |
-| 0x8030 | 仪表数据采集时间 | | |
-
-| 标识符类型 | 说明 | 标识符类型 | 说明 |
-| --- | --- | --- | --- |
-| 0x8E50 | 温湿度.温度 | 0x8E51 | 照度.流明 |
-| 0x8E52 | 温湿度.湿度 | 0x8E53 | 噪声.分贝 |
-| 0x8E54 | 振动-速度 | 0x8E55 | 振动-位移 |
-| 0x8E56 | 振动-加速度 | 0x8E57 | 振动-温度 |
-| 0x8030 | 仪表数据采集时间 | | |
-
-指令样例:
-
-`温度指令:68 54 00 02 0E 7F 68 85 00 28 01 01 8E 50 70 A4 41 DD 8E 51 00 00 00 00 8E 52 00 00 00 00 8E 53 00 00 00 00 8E 54 00 00 00 00 80 30 06 47 04 03 09 24 25 16`
-
-`湿度指令:68 54 00 01 18 3F 68 85 00 28 01 01 8E 50 7A E1 41 FC 8E 51 00 00 00 00 8E 52 0A 3D 42 2E 8E 53 00 00 00 00 8E 54 00 00 00 00 80 30 34 47 04 03 09 24 39 16`
-
-`噪音指令:68 54 00 03 1B 3F 68 85 00 28 01 01 8E 50 00 00 00 00 8E 51 00 00 00 00 8E 52 00 00 00 00 8E 53 66 66 42 93 8E 54 00 00 00 00 80 30 36 53 09 14 03 25 AF 16`
\ No newline at end of file
+终端返回:68 37 01 01 68 37 65 43 21 CC 16 (数据不能包含00)
\ No newline at end of file