From b592cfa4df9c846995b2ca9c7686cf2ba570d930 Mon Sep 17 00:00:00 2001 From: xjl <2595686544@qq.com> Date: Sun, 27 Oct 2024 20:10:49 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Service/Cloud/Client/CloudClient.cs | 2 +- Service/Cloud/Client/CloudClientMgr.cs | 81 +- Service/Cloud/Common/CloudConst.cs | 14 +- Service/Cloud/Handler/SwapStartHandler.cs | 6 +- Service/Cloud/Msg/Host/Req/BatteryStatus.cs | 14 +- Service/Cloud/Msg/Host/Req/ReadyTopic.cs | 3 + Service/Cloud/Msg/Host/Req/RobotStatus.cs | 2 +- Service/Cloud/Msg/Host/Req/SwapFinish.cs | 24 +- Service/Cloud/Msg/Host/Req/VehicleInfo.cs | 5 +- Service/Execute/Api/CloudApi.cs | 3 +- .../Execute/Model/Tbox/HeartExpandBeatMsg.cs | 23 + .../Execute/Model/Tbox/TboxCarInfoModel.cs | 6 + Service/Init/StaticStationInfo.cs | 11 +- Service/MyTask/FanChangeTask.cs | 37 +- Service/MyTask/PlcHeartTask.cs | 12 - Service/Plc/Client/PlcClient.cs | 33 +- Service/Plc/Client/PlcMgr.cs | 13 +- Service/Plc/Msg/HostToPlc.cs | 4 +- Service/Plc/Msg/PlcToHost.cs | 4 +- .../BasicConfig/BaseConfigController.cs | 4 +- .../Controllers/SwapMonitorController.cs | 3 +- WebStarter/Controllers/Test/TestController.cs | 120 +- WebStarter/Program.cs | 15 +- WebStarter/appsettings.dev.json | 4 +- WebStarter/appsettings.prod.json | 4 +- WinFormStarter/FrmPlc.cs | 1 + WinFormStarter/FrmPlc.resx | 62 +- .../WinFormStarter.designer.deps.json | 4625 +++++++++++++---- ...WinFormStarter.designer.runtimeconfig.json | 7 +- 29 files changed, 4102 insertions(+), 1040 deletions(-) create mode 100644 Service/Execute/Model/Tbox/HeartExpandBeatMsg.cs diff --git a/Service/Cloud/Client/CloudClient.cs b/Service/Cloud/Client/CloudClient.cs index bde606d..8aaf79a 100644 --- a/Service/Cloud/Client/CloudClient.cs +++ b/Service/Cloud/Client/CloudClient.cs @@ -56,7 +56,7 @@ public class CloudClient : IMqttClientConnectedHandler, IMqttApplicationMessageR public string PubTopic { get; set; } public static readonly string SubTopic1 = "truck_topic_command_sub_find";//就绪 - public static readonly string SubTopic2 = "truck_topic_command_push_1";//启动换电 + public static readonly string SubTopic2 = "truck_topic_command_push_2";//启动换电 public static readonly string SubTopic3 = "truck_topic_command_sub_find";//换电完成 public static readonly string SubTopic4 = "truck_topic_battery_status";//电池实时状态 public static readonly string SubTopic5 = "truck_topic_battery_charging";//充电机状态 diff --git a/Service/Cloud/Client/CloudClientMgr.cs b/Service/Cloud/Client/CloudClientMgr.cs index 116d3ad..eccd255 100644 --- a/Service/Cloud/Client/CloudClientMgr.cs +++ b/Service/Cloud/Client/CloudClientMgr.cs @@ -3,7 +3,10 @@ using HybirdFrameworkCore.Autofac; using HybirdFrameworkCore.Autofac.Attribute; using HybirdFrameworkCore.Redis; using log4net; +using Newtonsoft.Json; using Repository.Station; +using Service.Cloud.Common; +using Service.Cloud.Msg.Host.Req; using Service.Init; namespace Service.Cloud.Client; @@ -24,9 +27,6 @@ public class CloudClientMgr CloudClient.ClientId = StaticStationInfo.CloudClientId; CloudClient.Username = StaticStationInfo.CloudUsername; CloudClient.Password = StaticStationInfo.CloudPassword; - // CloudClient.ServerIp = "127.0.0.1"; - // CloudClient.Username = "admin"; - // CloudClient.Password = "123456"; CloudClient.SubTopic = StaticStationInfo.CloudSubTopic; CloudClient.PubTopic = StaticStationInfo.CloudPubTopic; CloudClient.StationNo = StaticStationInfo.StationNo; @@ -40,6 +40,81 @@ public class CloudClientMgr RedisHelper? redisHelper = AppInfo.Container.Resolve(); BinInfoRepository binInfoRepository = AppInfo.Container.Resolve(); + SwapOrderBatteryRepository swapOrderBatteryRepository = AppInfo.Container.Resolve(); + redisHelper?.GetSubscriber().Subscribe("BatteryStatus", (channel, value) => + { + try + { + Log.Info($"receive BatteryStatus={value}"); + if (value.HasValue) + { + BatteryStatus? data = JsonConvert.DeserializeObject(value.ToString()); + if (data != null) + { + //BinInfo? binInfo = binInfoRepository.QueryByClause(it => it.ChargerNo == data.sn); + + var swapOrderBattery = swapOrderBatteryRepository.QueryListByClause(u => u.DownBatteryNo == data.sn || u.UpBatteryNo == data.sn); + + BatteryStatus batteryStatus = new BatteryStatus() + { + sn = data.sn, + soc = data.soc, + soh = data.soh, + energy = data.energy, + temperature = data.temperature, + voltage_min = data.voltage_max, + voltage_max = data.voltage_max, + network_status = data.network_status, + alarmCode = data.alarmCode, + status = data.status, + isVehicle = "2", + longitude = StaticStationInfo.Longitude, + latitude = StaticStationInfo.Latitude, + battery_no = swapOrderBattery.Count.ToString(), + + }; + + + + //if ((DateTime.Now - _dateTime).TotalSeconds <= 30) + //{ + // return; + //} + + //_dateTime = DateTime.Now; + string jsonString = JsonConvert.SerializeObject(batteryStatus, Formatting.Indented); + CloudClientMgr.Send(CloudConst.batteryInfo, jsonString); + } + } + } + catch (Exception e) + { + Log.Info("error", e); + } + }); + + redisHelper?.GetSubscriber().Subscribe("ChargeData", (channel, value) => + { + try + { + Log.Info($"receive ChargeData={value}"); + if (value.HasValue) + { + BatteryStatus? data = JsonConvert.DeserializeObject(value.ToString()); + if (data != null) + { + + + string jsonString = JsonConvert.SerializeObject(data, Formatting.Indented); + CloudClientMgr.Send(CloudConst.charging, jsonString); + } + } + } + catch (Exception e) + { + Log.Info("error", e); + } + }); } /// diff --git a/Service/Cloud/Common/CloudConst.cs b/Service/Cloud/Common/CloudConst.cs index 8ea53f1..a55bd71 100644 --- a/Service/Cloud/Common/CloudConst.cs +++ b/Service/Cloud/Common/CloudConst.cs @@ -20,29 +20,29 @@ public class CloudConst /// /// 换电完成指令主题 /// - public static readonly string CommandSubOver = "truck_topic_command_sub_over"; + public static readonly string CommandSubOver = "truck_topic_command_sub_find_2"; /// /// 电池实时状态主题 /// - public static readonly string batteryInfo = "truck_topic_battery_info"; + public static readonly string batteryInfo = "truck_topic_battery_status_2"; /// - /// 充电协议主题 (暂时没有用到) + /// 充电协议主题 /// - public static readonly string charging = "truck_topic_charging"; + public static readonly string charging = "truck_topic_battery_charging_2"; /// /// 告警通信主题 /// - public static readonly string stationAlarm = "truck_topic_station_alarm"; + public static readonly string stationAlarm = "truck_topic_station_alarm_2"; /// /// 车辆数据同步主题 /// - public static readonly string carInfo = "truck_topic_car_info"; + public static readonly string carInfo = "truck_topic_t-box_info_2"; /// /// 换电机器人状态主题 /// - public static readonly string robotInfo = "truck_topic_robot_info"; + public static readonly string robotInfo = "truck_topic_robot_info_2"; #endregion } \ No newline at end of file diff --git a/Service/Cloud/Handler/SwapStartHandler.cs b/Service/Cloud/Handler/SwapStartHandler.cs index 06194bf..727c46b 100644 --- a/Service/Cloud/Handler/SwapStartHandler.cs +++ b/Service/Cloud/Handler/SwapStartHandler.cs @@ -4,6 +4,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using HybirdFrameworkCore.Autofac.Attribute; +using log4net; using Newtonsoft.Json; using Service.Cloud.Client; using Service.Cloud.Msg.Cloud.Req; @@ -15,6 +16,7 @@ namespace Service.Cloud.Handler [Scope("InstancePerDependency")] public class SwapStartHandler : IBaseHandler { + private static readonly ILog Log = LogManager.GetLogger(typeof(SwapStartHandler)); public bool CanHandle(string cmd) { return CloudClient.SubTopic2 == cmd; @@ -24,12 +26,14 @@ namespace Service.Cloud.Handler { SwapStart? resp = JsonConvert.DeserializeObject(t); StationSoftMgr.SwappingStateMachine.swapStart = resp; + + Log.Info($"cloud receive {t}"); // CloudClientMgr.CloudClient.CarAuth.SetResp(resp); //if (resp.command == "start") //{ // PlcMgr.PLCBoolWrite("0.4",true); //} - + } } } diff --git a/Service/Cloud/Msg/Host/Req/BatteryStatus.cs b/Service/Cloud/Msg/Host/Req/BatteryStatus.cs index 3e4bacd..5190450 100644 --- a/Service/Cloud/Msg/Host/Req/BatteryStatus.cs +++ b/Service/Cloud/Msg/Host/Req/BatteryStatus.cs @@ -49,7 +49,13 @@ namespace Service.Cloud.Msg.Host.Req /// 电池状态,1:车载,2站内 /// public string isVehicle { get; set; } + /// + /// 经度 + /// public string longitude { get; set; } + /// + /// 纬度 + /// public string latitude { get; set; } /// /// 累计换电次数 @@ -57,9 +63,9 @@ namespace Service.Cloud.Msg.Host.Req public string battery_no { get; set; } - /// - /// 车牌 - /// - public string carNumber { get; set; } + ///// + ///// 车牌 + ///// + //public string carNumber { get; set; } } } diff --git a/Service/Cloud/Msg/Host/Req/ReadyTopic.cs b/Service/Cloud/Msg/Host/Req/ReadyTopic.cs index c0b2e88..5ed5611 100644 --- a/Service/Cloud/Msg/Host/Req/ReadyTopic.cs +++ b/Service/Cloud/Msg/Host/Req/ReadyTopic.cs @@ -15,6 +15,9 @@ public class ReadyTopic /// public string carNumber { get; set; } + /// + /// 换电就绪状态 1 就绪;2 未就绪 ;3 告警(带告警码) + /// public string status { get; set; } = "1"; /// /// 报警编码 diff --git a/Service/Cloud/Msg/Host/Req/RobotStatus.cs b/Service/Cloud/Msg/Host/Req/RobotStatus.cs index 1064767..d6dd861 100644 --- a/Service/Cloud/Msg/Host/Req/RobotStatus.cs +++ b/Service/Cloud/Msg/Host/Req/RobotStatus.cs @@ -9,7 +9,7 @@ namespace Service.Cloud.Msg.Host.Req /// /// 机器人状态 /// - public class Robot_info + public class RobotInfo { public string stationSn { get; set; } public string type { get; set; } diff --git a/Service/Cloud/Msg/Host/Req/SwapFinish.cs b/Service/Cloud/Msg/Host/Req/SwapFinish.cs index 107abda..260d9df 100644 --- a/Service/Cloud/Msg/Host/Req/SwapFinish.cs +++ b/Service/Cloud/Msg/Host/Req/SwapFinish.cs @@ -5,31 +5,35 @@ /// public class SwapFinish { - public string stationSn { get; set; } - public string type { get; set; } = "2"; + public string? stationSn { get; set; } + public string? type { get; set; } = "2"; /// /// 车牌 /// - public string carNumber { get; set; } + public string? carNumber { get; set; } public string status { get; set; } = "2"; /// /// 报警编码 /// - public string alarmCode { get; set; } + public string? alarmCode { get; set; } /// - /// 设备编号 + /// 换电前电池编码 /// - public string sn { get; set; } - public string orderID { get; set; } + public string? sn { get; set; } + /// + /// 换电后电池编码 + /// + public string? after_sn { get; set; } + public string? orderID { get; set; } - public string stationStatus { get; set; } + public string? stationStatus { get; set; } /// /// 换电前电量 /// - public string before_soc { get; set; } + public string? before_soc { get; set; } /// /// 换电后电量 /// - public string after_soc { get; set; } + public string? after_soc { get; set; } } \ No newline at end of file diff --git a/Service/Cloud/Msg/Host/Req/VehicleInfo.cs b/Service/Cloud/Msg/Host/Req/VehicleInfo.cs index 59f8b5d..2fe91da 100644 --- a/Service/Cloud/Msg/Host/Req/VehicleInfo.cs +++ b/Service/Cloud/Msg/Host/Req/VehicleInfo.cs @@ -16,10 +16,7 @@ namespace Service.Cloud.Msg.Host.Req /// type=1 业务类型是充电,type=2 业务类型是换电,type=3 业务类型是远程操作,type=4 业务类型是告警,type=5 业务类型是车辆数据 /// public string type { get; set; } - ///// - ///// mileage:累计里程,单位km - ///// - //public string mileage { get; set; } + /// /// 车牌 /// diff --git a/Service/Execute/Api/CloudApi.cs b/Service/Execute/Api/CloudApi.cs index 49b2f7e..3875523 100644 --- a/Service/Execute/Api/CloudApi.cs +++ b/Service/Execute/Api/CloudApi.cs @@ -24,6 +24,7 @@ public abstract class CloudApi /// public static bool UploadCloudReady(string carNumber) { + if (carNumber == null) { carNumber = ""; } ReadyTopic readyTopic = new ReadyTopic() { stationSn = StaticStationInfo.StationSn, @@ -54,7 +55,7 @@ public abstract class CloudApi }; string jsonString = JsonSerializer.Serialize(swapFinish); - return CloudClientMgr.Send("truck_topic_command_sub_find", jsonString); + return CloudClientMgr.Send(CloudConst.CommandSubOver, jsonString); } diff --git a/Service/Execute/Model/Tbox/HeartExpandBeatMsg.cs b/Service/Execute/Model/Tbox/HeartExpandBeatMsg.cs new file mode 100644 index 0000000..faf25ba --- /dev/null +++ b/Service/Execute/Model/Tbox/HeartExpandBeatMsg.cs @@ -0,0 +1,23 @@ + +namespace Service.Execute.Model; + +public class HeartExpandBeatMsg +{ + /// + /// 锁止IO状态1 + /// + + public byte LockIOStatus01 { get; set; } + /// + /// 锁止IO状态2 + /// + public byte LockIOStatus02 { get; set; } + /// + /// 充电连接器状态1 0 断开,1 连接 + /// + public byte ChargingConnectorStatus01 { get; set; } + /// + /// 充电连接器状态1 0 断开,1 连接 + /// + public byte ChargingConnectorStatus02 { get; set; } +} \ No newline at end of file diff --git a/Service/Execute/Model/Tbox/TboxCarInfoModel.cs b/Service/Execute/Model/Tbox/TboxCarInfoModel.cs index 0c99fa9..1875bd6 100644 --- a/Service/Execute/Model/Tbox/TboxCarInfoModel.cs +++ b/Service/Execute/Model/Tbox/TboxCarInfoModel.cs @@ -33,4 +33,10 @@ public class TboxCarInfoModel /// 车辆心跳数据 /// public HeartBeatMsg? HeartBeatMsg { get; set; } + + + /// + /// 状态拓展数据 + /// + public HeartExpandBeatMsg? HeartExpandBeatMsg { get; set; } } \ No newline at end of file diff --git a/Service/Init/StaticStationInfo.cs b/Service/Init/StaticStationInfo.cs index b9dea6c..4d590b1 100644 --- a/Service/Init/StaticStationInfo.cs +++ b/Service/Init/StaticStationInfo.cs @@ -69,7 +69,16 @@ public class StaticStationInfo get => Resolve(StationParamConst.StationSn); set => Set(StationParamConst.StationSn, value); } - + public static string Longitude + { + get => Resolve(StationParamConst.Longitude); + set => Set(StationParamConst.Longitude, value); + } + public static string Latitude + { + get => Resolve(StationParamConst.Latitude); + set => Set(StationParamConst.Latitude, value); + } public static int SwapFinishChargeTime { get => int.Parse(Resolve(StationParamConst.SwapFinishChargeTime)); diff --git a/Service/MyTask/FanChangeTask.cs b/Service/MyTask/FanChangeTask.cs index c40c450..44c6a6e 100644 --- a/Service/MyTask/FanChangeTask.cs +++ b/Service/MyTask/FanChangeTask.cs @@ -35,38 +35,37 @@ public class FanChangeTask : ITask } - /// 1000:打开右侧,关闭左侧 - /// 1001:打开左侧,关闭右侧 - /// 1002:全部打开 - /// 1003:全部关闭 + + /// 1000:全部打开 + /// 1010:全部关闭 public void Handle() { try { int countL = _binInfoRepository.GetCount(i => i.ChargeStatus == 1 && Convert.ToInt32(i.No) >= 1 && Convert.ToInt32(i.No) <= 8); - int countR = _binInfoRepository.GetCount(i => - i.ChargeStatus == 1 && Convert.ToInt32(i.No) >= 11 && Convert.ToInt32(i.No) <= 18); + //int countR = _binInfoRepository.GetCount(i => + // i.ChargeStatus == 1 && Convert.ToInt32(i.No) >= 11 && Convert.ToInt32(i.No) <= 18); - if (countL > 0 && countR <= 0) + if (countL > 0) { if (PlcMgr.ExhaustFanStatusRadar() != 1000) PlcMgr.AirBlowerControl(1000); } - else if (countL <= 0 && countR > 0) - { - if (PlcMgr.ExhaustFanStatusRadar() != 1001) - PlcMgr.AirBlowerControl(1001); - } - else if (countL > 0 && countR > 0) - { - if (PlcMgr.ExhaustFanStatusRadar() != 1002) - PlcMgr.AirBlowerControl(1002); - } + //else if (countL <= 0 && countR > 0) + //{ + // if (PlcMgr.ExhaustFanStatusRadar() != 1001) + // PlcMgr.AirBlowerControl(1001); + //} + //else if (countL > 0 && countR > 0) + //{ + // if (PlcMgr.ExhaustFanStatusRadar() != 1002) + // PlcMgr.AirBlowerControl(1002); + //} else { - if (PlcMgr.ExhaustFanStatusRadar() != 1003) - PlcMgr.AirBlowerControl(1003); + if (PlcMgr.ExhaustFanStatusRadar() != 1010) + PlcMgr.AirBlowerControl(1010); } } catch (Exception e) diff --git a/Service/MyTask/PlcHeartTask.cs b/Service/MyTask/PlcHeartTask.cs index 0abe9a6..fa025ac 100644 --- a/Service/MyTask/PlcHeartTask.cs +++ b/Service/MyTask/PlcHeartTask.cs @@ -58,19 +58,7 @@ public class PlcHeartTask : ITask (ushort)(lstBinInfo[6].ChargeStatus == 1 ? 1010 : 1000), (ushort)(lstBinInfo[7].ChargeStatus == 1 ? 1010 : 1000), }; - ushort[] lstUsort2 = new[] - { - (ushort)(lstBinInfo[10].ChargeStatus == 1 ? 1010 : 1000), - (ushort)(lstBinInfo[11].ChargeStatus == 1 ? 1010 : 1000), - (ushort)(lstBinInfo[12].ChargeStatus == 1 ? 1010 : 1000), - (ushort)(lstBinInfo[13].ChargeStatus == 1 ? 1010 : 1000), - (ushort)(lstBinInfo[14].ChargeStatus == 1 ? 1010 : 1000), - (ushort)(lstBinInfo[15].ChargeStatus == 1 ? 1010 : 1000), - (ushort)(lstBinInfo[16].ChargeStatus == 1 ? 1010 : 1000), - (ushort)(lstBinInfo[17].ChargeStatus == 1 ? 1010 : 1000), - }; PlcMgr.PlcClient.Write("x=3;21",lstUsort1); - PlcMgr.PlcClient.Write("x=3;41",lstUsort2); { //这里根据换电任务状态写车辆停车状态 diff --git a/Service/Plc/Client/PlcClient.cs b/Service/Plc/Client/PlcClient.cs index 1f4061e..b2c8289 100644 --- a/Service/Plc/Client/PlcClient.cs +++ b/Service/Plc/Client/PlcClient.cs @@ -45,7 +45,7 @@ public class PlcClient : ModbusTcpMaster public PlcClient() { ReadAction = BatchRead; - Ip = "172.0.20.40"; + Ip = "172.0.20.48"; Port = 502; Duration = 1000; AutoReConnect = true; @@ -76,26 +76,17 @@ public class PlcClient : ModbusTcpMaster ModbusDecoder.Decode(bytes02, PlcMgr.PlcToHostData, EndingConst.ByteSeq.AB, EndingConst.WordSeq.DC); - UpdateBinInfo(PlcMgr.PlcToHostData.MaterialDetec01.Value, "1"); - UpdateBinInfo(PlcMgr.PlcToHostData.MaterialDetec02.Value, "2"); - UpdateBinInfo(PlcMgr.PlcToHostData.MaterialDetec03.Value, "3"); - UpdateBinInfo(PlcMgr.PlcToHostData.MaterialDetec04.Value, "4"); - UpdateBinInfo(PlcMgr.PlcToHostData.MaterialDetec05.Value, "5"); - UpdateBinInfo(PlcMgr.PlcToHostData.MaterialDetec06.Value, "6"); - UpdateBinInfo(PlcMgr.PlcToHostData.MaterialDetec07.Value, "7"); - UpdateBinInfo(PlcMgr.PlcToHostData.MaterialDetec08.Value, "8"); - UpdateBinInfoCache(PlcMgr.PlcToHostData.MaterialDetec09.Value, "9"); - UpdateBinInfoCache(PlcMgr.PlcToHostData.MaterialDetec10.Value, "10"); - UpdateBinInfo(PlcMgr.PlcToHostData.MaterialDetec21.Value, "11"); - UpdateBinInfo(PlcMgr.PlcToHostData.MaterialDetec22.Value, "12"); - UpdateBinInfo(PlcMgr.PlcToHostData.MaterialDetec23.Value, "13"); - UpdateBinInfo(PlcMgr.PlcToHostData.MaterialDetec24.Value, "14"); - UpdateBinInfo(PlcMgr.PlcToHostData.MaterialDetec25.Value, "15"); - UpdateBinInfo(PlcMgr.PlcToHostData.MaterialDetec26.Value, "16"); - UpdateBinInfo(PlcMgr.PlcToHostData.MaterialDetec27.Value, "17"); - UpdateBinInfo(PlcMgr.PlcToHostData.MaterialDetec28.Value, "18"); - UpdateBinInfoCache(PlcMgr.PlcToHostData.MaterialDetec29.Value, "19"); - UpdateBinInfoCache(PlcMgr.PlcToHostData.MaterialDetec30.Value, "20"); + + + + UpdateBinInfoCache(PlcMgr.PlcToHostData.MaterialDetec21.Value, "1"); + UpdateBinInfo(PlcMgr.PlcToHostData.MaterialDetec22.Value, "2"); + UpdateBinInfo(PlcMgr.PlcToHostData.MaterialDetec23.Value, "3"); + UpdateBinInfo(PlcMgr.PlcToHostData.MaterialDetec24.Value, "4"); + UpdateBinInfo(PlcMgr.PlcToHostData.MaterialDetec25.Value, "5"); + UpdateBinInfo(PlcMgr.PlcToHostData.MaterialDetec26.Value, "6"); + UpdateBinInfo(PlcMgr.PlcToHostData.MaterialDetec27.Value, "7"); + UpdateBinInfo(PlcMgr.PlcToHostData.MaterialDetec28.Value, "8"); } var bytes03 = master.BatchReadHolderRegister(701, 32); diff --git a/Service/Plc/Client/PlcMgr.cs b/Service/Plc/Client/PlcMgr.cs index f638fd6..9888d4c 100644 --- a/Service/Plc/Client/PlcMgr.cs +++ b/Service/Plc/Client/PlcMgr.cs @@ -47,14 +47,14 @@ public class PlcMgr /// public static bool WriteEntranceLamp(ushort value) { - /*if (PlcClient != null) + if (PlcClient != null) { HostToPlcData.LightIn.Value = value; + + return PlcClient.WriteValue(HostToPlcData.LightIn); } - - return false;*/ - return true; + return false; } @@ -149,15 +149,14 @@ public class PlcMgr /// public static bool WriteExistLamp(int data) { - /*if (PlcClient != null) + if (PlcClient != null) { HostToPlc writeHostToPlc = new HostToPlc(); writeHostToPlc.LightOut.Value = (ushort)data; return PlcClient.WriteValue(writeHostToPlc.LightOut); } - return false;*/ - return true; + return false; } /// diff --git a/Service/Plc/Msg/HostToPlc.cs b/Service/Plc/Msg/HostToPlc.cs index 4b0ce7a..8ab7110 100644 --- a/Service/Plc/Msg/HostToPlc.cs +++ b/Service/Plc/Msg/HostToPlc.cs @@ -355,7 +355,7 @@ namespace Service.Plc.Msg /// public ModbusProperty VehicleParkingStatus { get; set; } = new(40102); /// - /// 三色灯控制整站状态(入口) + /// 三色灯控制整站状态(入口) (删除) /// 0:无效值 /// 1000:绿灯 /// 1010:绿灯闪烁 @@ -367,7 +367,7 @@ namespace Service.Plc.Msg /// public ModbusProperty LightIn2 { get; set; } = new(40103); /// - /// 三色灯控制整站状态(出口) + /// 三色灯控制整站状态(出口)(删除) /// 0:无效值 /// 1000:绿灯 /// 1010:绿灯闪烁 diff --git a/Service/Plc/Msg/PlcToHost.cs b/Service/Plc/Msg/PlcToHost.cs index c6e5170..bcdc91e 100644 --- a/Service/Plc/Msg/PlcToHost.cs +++ b/Service/Plc/Msg/PlcToHost.cs @@ -95,7 +95,7 @@ namespace Service.Plc.Msg #endregion 舱位状态 - #region 右仓电池在位状态 舱位状态 bit0:有料检测 Bit1:有料检测开关故障 + #region 左仓电池在位状态 舱位状态 bit0:有料检测 Bit1:有料检测开关故障 public ModbusProperty MaterialDetec21 { get; set; } = new(40261); @@ -264,7 +264,7 @@ namespace Service.Plc.Msg /// public ModbusProperty TaskType { get; set; } = new(40407); /// - /// 堆垛机任务状态 + /// 行车任务状态 /// 0:无效值 /// 1000:准备中(Not Ready) /// 1001:待机中(Ready) diff --git a/WebStarter/Controllers/BasicConfig/BaseConfigController.cs b/WebStarter/Controllers/BasicConfig/BaseConfigController.cs index 0321c90..328fb76 100644 --- a/WebStarter/Controllers/BasicConfig/BaseConfigController.cs +++ b/WebStarter/Controllers/BasicConfig/BaseConfigController.cs @@ -70,10 +70,12 @@ namespace WebStarter.Controllers.BasicConfig { StaticStationInfo.SwapSoc = input.SwapSoc; StaticStationInfo.StationStatus = input.StationStatus; + StaticStationInfo.StationWay = input.StationWay; + StaticStationInfo.SwapFinishChargeTime = input.SwapFinishChargeTime; StaticStationInfo.AutoChargeEnabled = input.AutoChargeEnabled; - + StaticStationInfo.ChargeSoc = input.ChargeSoc; return Result.Success(); } diff --git a/WebStarter/Controllers/SwapMonitorController.cs b/WebStarter/Controllers/SwapMonitorController.cs index ce6d873..9b7dd65 100644 --- a/WebStarter/Controllers/SwapMonitorController.cs +++ b/WebStarter/Controllers/SwapMonitorController.cs @@ -171,11 +171,12 @@ public class SwapMonitorController : ControllerBase /// 1040:黄灯 /// 1050:黄灯闪烁 /// 1100:所有灯亮 + /// 1200:所有灯灭 /// /// /// [HttpPost("OperateOutstationLamp")] - public async Task> OperateOutstationLamp(byte lampCmd) + public async Task> OperateOutstationLamp(UInt16 lampCmd) { return PlcMgr.WriteEntranceLamp(lampCmd) ? Result.Success(true) : Result.Fail(); } diff --git a/WebStarter/Controllers/Test/TestController.cs b/WebStarter/Controllers/Test/TestController.cs index f04d804..b47b826 100644 --- a/WebStarter/Controllers/Test/TestController.cs +++ b/WebStarter/Controllers/Test/TestController.cs @@ -4,6 +4,11 @@ using HybirdFrameworkCore.AutoTask; using Microsoft.AspNetCore.Mvc; using Service.Cloud.Client; using Service.Cloud.Msg.Host.Req; +using Newtonsoft.Json; +using Service.Init; +using Service.Cloud.Common; +using Org.BouncyCastle.Asn1.X509; +using Org.BouncyCastle.Crypto.Tls; namespace WebStarter.Controllers.System; @@ -35,20 +40,125 @@ public class TestController1 [HttpGet("/Cloud/UploadCloudReady")] public Result UploadCloudReady(ReadyTopic readyTopic) { - string jsonString = JsonSerializer.Serialize(readyTopic); + string jsonString = JsonConvert.SerializeObject(readyTopic, Formatting.Indented); CloudClientMgr.Send("truck_topic_command_sub_find", jsonString); return Result.Success(); } - + /// /// 上传云端换电完成 /// /// [HttpGet("/Cloud/UploadCloudSwapFinish")] - public Result UploadCloudSwapFinish(SwapFinish swapFinish) + public Result UploadCloudSwapFinish() { - string jsonString = JsonSerializer.Serialize(swapFinish); - CloudClientMgr.Send("truck_topic_command_sub_find", jsonString); + SwapFinish swapFinish = new SwapFinish() + { + stationSn = StaticStationInfo.StationSn, + type = "2", + carNumber = "沪AD84996", + status = "2", + alarmCode = "", + sn = "", + after_sn = "", + orderID = "123132123123", + stationStatus = "1", + before_soc = "45", + after_soc = "96", + + }; + + string jsonString = JsonConvert.SerializeObject(swapFinish, Formatting.Indented); + CloudClientMgr.Send("truck_topic_command_sub_find_2", jsonString); + return Result.Success(); + } + + + /// + /// 上传云端机器人状态 + /// + /// + [HttpGet("/Cloud/UploadCloudRobotInfo")] + public Result UploadCloudRobotInfo() + { + RobotInfo swapFinish = new RobotInfo() + { + stationSn = StaticStationInfo.StationSn, + type = "2", + sn="001", + status ="1", + network_status = "1", + startTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"), + alarm_code = "", + soc = "100", + spare = "", + }; + + string jsonString = JsonConvert.SerializeObject(swapFinish, Formatting.Indented); + CloudClientMgr.Send(CloudConst.robotInfo, jsonString); + return Result.Success(); + } + + /// + /// 上传云端告警信息 + /// + /// + [HttpGet("/Cloud/UploadCloudAlarm")] + public Result UploadCloudAlarm() + { + Alarm swapFinish = new Alarm() + { + stationSn = StaticStationInfo.StationSn, + type = "4", + carNumber = "", + status = "1", + alarmCode="18", + title= "充电机告警", + sn = "C2001", + alarmLevel="3", + alarmSuggestions="", + startTime=DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"), + endTime="", + deviceType="4", + content= "BMS通信故障", + deviceName="充电机01", + stationName= "城南换电站", + }; + + string jsonString = JsonConvert.SerializeObject(swapFinish, Formatting.Indented); + CloudClientMgr.Send(CloudConst.stationAlarm, jsonString); + return Result.Success(); + } + + + /// + /// 上传云端告警信息 + /// + /// + [HttpGet("/Cloud/UploadCloudBatteryStatus")] + public Result UploadCloudBatteryStatus() + { + BatteryStatus batteryStatus = new BatteryStatus() + { + sn = "001", + soc = "23", + soh="", + energy = "56", + temperature = "23", + voltage_min = "20", + voltage_max = "220", + network_status = "1", + alarmCode = "", + status = "1", + isVehicle = "2", + longitude = "121.231321", + latitude = "29.2334", + battery_no = "1242203B1964", + + }; + + string jsonString = JsonConvert.SerializeObject(batteryStatus, Formatting.Indented); + CloudClientMgr.Send(CloudConst.stationAlarm, jsonString); return Result.Success(); } } diff --git a/WebStarter/Program.cs b/WebStarter/Program.cs index 75cd8fe..fd86ec0 100644 --- a/WebStarter/Program.cs +++ b/WebStarter/Program.cs @@ -12,6 +12,7 @@ using log4net; using Mapster; using Microsoft.AspNetCore.Authentication.JwtBearer; using Microsoft.IdentityModel.Tokens; +using Service.Cloud.Client; using Service.Execute; using Service.FireControl.Client; using Service.Plc.Client; @@ -157,11 +158,11 @@ foreach (var s in list.Split(";")) AppInfo.Container = app.Services.GetAutofacRoot(); -////云平台 -//if (AppSettingsHelper.GetBool("cloud", "enable")) -//{ -// CloudClientMgr.Init(); -//} +//云平台 +if (AppSettingsHelper.GetBool("cloud", "enable")) +{ + //CloudClientMgr.Init(); +} //PLC if (AppSettingsHelper.GetBool("plc", "enable")) @@ -172,14 +173,14 @@ if (AppSettingsHelper.GetBool("plc", "enable")) //启动换电流程 if (AppSettingsHelper.GetBool("swap", "enable")) { - StationSoftMgr.SwappingStateMachineStart(); + //StationSoftMgr.SwappingStateMachineStart(); } //消防 if (AppSettingsHelper.GetBool("fire", "enable")) { - FireControlMgr.Init(); + // FireControlMgr.Init(); } TaskInit.Init(); diff --git a/WebStarter/appsettings.dev.json b/WebStarter/appsettings.dev.json index eaf30ab..c7ced2a 100644 --- a/WebStarter/appsettings.dev.json +++ b/WebStarter/appsettings.dev.json @@ -2,7 +2,7 @@ "ConnectionStrings": { "ConfigId": "master", "DbType": "MySql", - "SqlConnection": "server=127.0.0.1;Port=3306;Database=nhet_dev;Uid=root;Pwd=123456;Charset=utf8;" + "SqlConnection": "server=127.0.0.1;Port=3306;Database=nhet_cn_dev;Uid=root;Pwd=123456;Charset=utf8;" }, "Update": { "AutoUpdate": "false", @@ -80,7 +80,7 @@ "enable": false }, "plc": { - "enable": false + "enable": true }, "swap": { "enable": false diff --git a/WebStarter/appsettings.prod.json b/WebStarter/appsettings.prod.json index 421a651..7a3220e 100644 --- a/WebStarter/appsettings.prod.json +++ b/WebStarter/appsettings.prod.json @@ -2,7 +2,7 @@ "ConnectionStrings": { "ConfigId": "master", "DbType": "MySql", - "SqlConnection": "server=127.0.0.1;Port=3306;Database=nhet_dev;Uid=root;Pwd=anyixing2023!@#;Charset=utf8;" + "SqlConnection": "server=127.0.0.1;Port=3306;Database=nhet_cn_dev;Uid=root;Pwd=123456;Charset=utf8;" }, "Update": { "AutoUpdate": "false", @@ -10,7 +10,7 @@ "Url": "http://121.4.95.243:8090/Updates/AutoUpdaterStarter.xml" }, "Redis": { - "Connection": "127.0.0.1:6379,password=123456", + "Connection": "127.0.0.1:6379,password=lbblscy9", "InstanceName": "local", "DefaultDB": "8" }, diff --git a/WinFormStarter/FrmPlc.cs b/WinFormStarter/FrmPlc.cs index 95c1d9b..30f5166 100644 --- a/WinFormStarter/FrmPlc.cs +++ b/WinFormStarter/FrmPlc.cs @@ -7,6 +7,7 @@ namespace WinFormStarter public FrmPlc() { InitializeComponent(); + } ModbusTcpNet ModbusTcpNet; diff --git a/WinFormStarter/FrmPlc.resx b/WinFormStarter/FrmPlc.resx index f298a7b..af32865 100644 --- a/WinFormStarter/FrmPlc.resx +++ b/WinFormStarter/FrmPlc.resx @@ -1,4 +1,64 @@ - + + + diff --git a/WinFormStarter/obj/Debug/net6.0-windows/WinFormStarter.designer.deps.json b/WinFormStarter/obj/Debug/net6.0-windows/WinFormStarter.designer.deps.json index 9fefc19..df77b1e 100644 --- a/WinFormStarter/obj/Debug/net6.0-windows/WinFormStarter.designer.deps.json +++ b/WinFormStarter/obj/Debug/net6.0-windows/WinFormStarter.designer.deps.json @@ -6,6 +6,14 @@ "compilationOptions": {}, "targets": { ".NETCoreApp,Version=v6.0": { + "Aliyun.OSS.SDK.NetCore/2.13.0": { + "runtime": { + "lib/netstandard2.0/Aliyun.OSS.Core.dll": { + "assemblyVersion": "2.13.0.0", + "fileVersion": "2.13.0.0" + } + } + }, "Autofac/7.1.0": { "dependencies": { "System.Diagnostics.DiagnosticSource": "4.7.1" @@ -40,6 +48,36 @@ } } }, + "Ben.Demystifier/0.4.1": { + "dependencies": { + "System.Reflection.Metadata": "8.0.0" + }, + "runtime": { + "lib/netstandard2.1/Ben.Demystifier.dll": { + "assemblyVersion": "0.4.0.0", + "fileVersion": "0.4.0.2" + } + } + }, + "BouncyCastle/1.8.9": { + "runtime": { + "lib/BouncyCastle.Crypto.dll": { + "assemblyVersion": "1.8.9.0", + "fileVersion": "1.8.20343.1" + } + } + }, + "Crc32.NET/1.2.0": { + "dependencies": { + "NETStandard.Library": "2.0.0" + }, + "runtime": { + "lib/netstandard2.0/Crc32.NET.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.2.0.5" + } + } + }, "DotNetty.Buffers/0.7.5": { "dependencies": { "DotNetty.Common": "0.7.5", @@ -57,7 +95,7 @@ "DotNetty.Buffers": "0.7.5", "DotNetty.Common": "0.7.5", "DotNetty.Transport": "0.7.5", - "System.Collections.Immutable": "1.5.0" + "System.Collections.Immutable": "8.0.0" }, "runtime": { "lib/net6.0/DotNetty.Codecs.dll": { @@ -118,1048 +156,2718 @@ } } }, - "HslCommunication/11.1.1": { + "DynamicExpresso.Core/2.3.3": { "dependencies": { - "Newtonsoft.Json": "13.0.3", - "System.IO.Ports": "4.7.0" + "Microsoft.CSharp": "4.7.0" }, "runtime": { - "lib/netstandard2.1/HslCommunication.dll": { - "assemblyVersion": "11.1.1.0", - "fileVersion": "11.1.1.0" + "lib/netstandard2.0/DynamicExpresso.Core.dll": { + "assemblyVersion": "2.3.3.0", + "fileVersion": "2.3.3.0" } } }, - "log4net/2.0.15": { + "Furion.Extras.Authentication.JwtBearer/4.9.3.4": { "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" + "Microsoft.AspNetCore.Authentication.JwtBearer": "6.0.30" }, "runtime": { - "lib/netstandard2.0/log4net.dll": { - "assemblyVersion": "2.0.15.0", - "fileVersion": "2.0.15.0" + "lib/net6.0/Furion.Extras.Authentication.JwtBearer.dll": { + "assemblyVersion": "4.9.3.4", + "fileVersion": "4.9.3.4" } } }, - "Microsoft.CSharp/4.7.0": {}, - "Microsoft.Data.SqlClient/2.1.4": { + "Furion.Extras.ObjectMapper.Mapster/4.9.3.4": { "dependencies": { - "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1", - "Microsoft.Identity.Client": "4.21.1", - "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", - "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0", - "Microsoft.Win32.Registry": "4.7.0", - "System.Configuration.ConfigurationManager": "6.0.0", - "System.Diagnostics.DiagnosticSource": "4.7.1", - "System.Runtime.Caching": "4.7.0", - "System.Security.Principal.Windows": "4.7.0", - "System.Text.Encoding.CodePages": "5.0.0" + "Mapster": "7.4.0", + "Mapster.DependencyInjection": "1.0.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0" }, "runtime": { - "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { - "assemblyVersion": "2.0.20168.4", - "fileVersion": "2.0.20168.4" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "2.0.20168.4", - "fileVersion": "2.0.20168.4" - }, - "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "2.0.20168.4", - "fileVersion": "2.0.20168.4" - } - } - }, - "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { - "runtimeTargets": { - "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "2.1.1.0" - }, - "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "2.1.1.0" - }, - "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "2.1.1.0" - }, - "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "2.1.1.0" + "lib/net6.0/Furion.Extras.ObjectMapper.Mapster.dll": { + "assemblyVersion": "4.9.3.4", + "fileVersion": "4.9.3.4" } } }, - "Microsoft.Data.Sqlite/7.0.5": { + "Furion.Pure/4.9.3.4": { "dependencies": { - "Microsoft.Data.Sqlite.Core": "7.0.5", - "SQLitePCLRaw.bundle_e_sqlite3": "2.1.4" + "Furion.Pure.Extras.DependencyModel.CodeAnalysis": "4.9.3.4", + "MiniProfiler.AspNetCore.Mvc": "4.3.8", + "Swashbuckle.AspNetCore": "6.6.1" + }, + "runtime": { + "lib/net6.0/Furion.Pure.dll": { + "assemblyVersion": "4.9.3.4", + "fileVersion": "4.9.3.4" + } } }, - "Microsoft.Data.Sqlite.Core/7.0.5": { + "Furion.Pure.Extras.DependencyModel.CodeAnalysis/4.9.3.4": { "dependencies": { - "SQLitePCLRaw.core": "2.1.4" + "Ben.Demystifier": "0.4.1", + "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "6.0.30", + "Microsoft.AspNetCore.Razor.Language": "6.0.30", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.9.2", + "Microsoft.Extensions.DependencyModel": "6.0.0", + "System.Text.Json": "6.0.9", + "System.Text.RegularExpressions": "4.3.1" }, "runtime": { - "lib/net6.0/Microsoft.Data.Sqlite.dll": { - "assemblyVersion": "7.0.5.0", - "fileVersion": "7.0.523.16503" + "lib/net6.0/Furion.Pure.Extras.DependencyModel.CodeAnalysis.dll": { + "assemblyVersion": "4.9.3.4", + "fileVersion": "4.9.3.4" } } }, - "Microsoft.Extensions.ApiDescription.Server/6.0.5": {}, - "Microsoft.Extensions.Configuration/7.0.0": { + "HslCommunication/11.1.1": { "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "7.0.0", - "Microsoft.Extensions.Primitives": "7.0.0" + "Newtonsoft.Json": "13.0.3", + "System.IO.Ports": "4.7.0" }, "runtime": { - "lib/net6.0/Microsoft.Extensions.Configuration.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51805" + "lib/netstandard2.1/HslCommunication.dll": { + "assemblyVersion": "11.1.1.0", + "fileVersion": "11.1.1.0" } } }, - "Microsoft.Extensions.Configuration.Abstractions/7.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "7.0.0" - }, + "Humanizer.Core/2.14.1": { "runtime": { - "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51805" + "lib/net6.0/Humanizer.dll": { + "assemblyVersion": "2.14.0.0", + "fileVersion": "2.14.1.48190" } } }, - "Microsoft.Extensions.Configuration.FileExtensions/7.0.0": { + "Lazy.Captcha.Core/2.0.6": { "dependencies": { - "Microsoft.Extensions.Configuration": "7.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "7.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0", - "Microsoft.Extensions.FileProviders.Physical": "7.0.0", - "Microsoft.Extensions.Primitives": "7.0.0" + "Microsoft.Extensions.Caching.Abstractions": "6.0.0", + "Microsoft.Extensions.Caching.Memory": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0", + "SkiaSharp": "2.88.6" }, "runtime": { - "lib/net6.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51805" + "lib/netstandard2.0/Lazy.Captcha.Core.dll": { + "assemblyVersion": "2.0.6.0", + "fileVersion": "2.0.6.0" } } }, - "Microsoft.Extensions.Configuration.Json/7.0.0": { + "log4net/2.0.15": { "dependencies": { - "Microsoft.Extensions.Configuration": "7.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "7.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "7.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0", - "System.Text.Json": "7.0.0" + "System.Configuration.ConfigurationManager": "6.0.1" }, "runtime": { - "lib/net6.0/Microsoft.Extensions.Configuration.Json.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51805" + "lib/netstandard2.0/log4net.dll": { + "assemblyVersion": "2.0.15.0", + "fileVersion": "2.0.15.0" } } }, - "Microsoft.Extensions.DependencyInjection/5.0.0": { + "Magicodes.IE.Core/2.7.5.1": { "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0" + "Microsoft.Extensions.DependencyInjection": "6.0.1", + "Microsoft.Extensions.DependencyModel": "6.0.0", + "SixLabors.ImageSharp": "3.0.0", + "System.ComponentModel.Annotations": "4.7.0" }, "runtime": { - "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" + "lib/net6.0/Magicodes.IE.Core.dll": { + "assemblyVersion": "2.7.5.1", + "fileVersion": "2.7.5.1" + } + }, + "resources": { + "lib/net6.0/zh-Hans/Magicodes.IE.Core.resources.dll": { + "locale": "zh-Hans" } } }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "Magicodes.IE.EPPlus/2.7.5.1": { + "dependencies": { + "Microsoft.IO.RecyclableMemoryStream": "2.1.1", + "SixLabors.ImageSharp": "3.0.0", + "SkiaSharp": "2.88.6", + "System.Security.Cryptography.Pkcs": "6.0.1", + "System.Text.Encoding.CodePages": "6.0.0" + }, "runtime": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" + "lib/net6.0/Magicodes.IE.EPPlus.dll": { + "assemblyVersion": "2.7.5.1", + "fileVersion": "2.7.5.1" } } }, - "Microsoft.Extensions.FileProviders.Abstractions/7.0.0": { + "Magicodes.IE.Excel/2.7.5.1": { "dependencies": { - "Microsoft.Extensions.Primitives": "7.0.0" + "DynamicExpresso.Core": "2.3.3", + "Magicodes.IE.Core": "2.7.5.1", + "Magicodes.IE.EPPlus": "2.7.5.1", + "SkiaSharp.NativeAssets.Linux.NoDependencies": "2.88.6", + "System.Linq.Dynamic.Core": "1.2.6" }, "runtime": { - "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51805" + "lib/net6.0/Magicodes.IE.Excel.dll": { + "assemblyVersion": "2.7.5.1", + "fileVersion": "2.7.5.1" } } }, - "Microsoft.Extensions.FileProviders.Physical/7.0.0": { + "Mapster/7.4.0": { "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0", - "Microsoft.Extensions.FileSystemGlobbing": "7.0.0", - "Microsoft.Extensions.Primitives": "7.0.0" + "Mapster.Core": "1.2.1" }, "runtime": { - "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51805" + "lib/net6.0/Mapster.dll": { + "assemblyVersion": "7.4.0.0", + "fileVersion": "7.4.0.0" } } }, - "Microsoft.Extensions.FileSystemGlobbing/7.0.0": { + "Mapster.Core/1.2.1": { "runtime": { - "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51805" + "lib/net6.0/Mapster.Core.dll": { + "assemblyVersion": "1.2.1.0", + "fileVersion": "1.2.1.0" } } }, - "Microsoft.Extensions.Logging/5.0.0": { + "Mapster.DependencyInjection/1.0.1": { "dependencies": { - "Microsoft.Extensions.DependencyInjection": "5.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.0", - "Microsoft.Extensions.Options": "5.0.0" + "Mapster": "7.4.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0" }, "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" + "lib/net6.0/Mapster.DependencyInjection.dll": { + "assemblyVersion": "1.0.1.0", + "fileVersion": "1.0.1.0" } } }, - "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "Microsoft.AspNetCore.Authentication.JwtBearer/6.0.30": { + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.35.0" + }, "runtime": { - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" + "lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "assemblyVersion": "6.0.30.0", + "fileVersion": "6.0.3024.21619" } } }, - "Microsoft.Extensions.Options/5.0.0": { + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Primitives": "7.0.0" + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Hosting.Abstractions": "2.2.0" }, "runtime": { - "lib/net5.0/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" } } }, - "Microsoft.Extensions.Primitives/7.0.0": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" }, "runtime": { - "lib/net6.0/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51805" + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" } } }, - "Microsoft.Identity.Client/4.21.1": { + "Microsoft.AspNetCore.Http/2.1.34": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.WebUtilities": "2.1.1", + "Microsoft.Extensions.ObjectPool": "2.1.1", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Net.Http.Headers": "2.2.0" + }, "runtime": { - "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { - "assemblyVersion": "4.21.1.0", - "fileVersion": "4.21.1.0" + "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": { + "assemblyVersion": "2.1.34.0", + "fileVersion": "2.1.34.22128" } } }, - "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { "dependencies": { - "Microsoft.IdentityModel.Tokens": "6.8.0" + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.Text.Encodings.Web": "6.0.0" }, "runtime": { - "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "assemblyVersion": "6.8.0.0", - "fileVersion": "6.8.0.11012" + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" } } }, - "Microsoft.IdentityModel.Logging/6.8.0": { + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Buffers": "4.5.1" + }, "runtime": { - "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { - "assemblyVersion": "6.8.0.0", - "fileVersion": "6.8.0.11012" + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" } } }, - "Microsoft.IdentityModel.Protocols/6.8.0": { + "Microsoft.AspNetCore.Http.Features/2.2.0": { "dependencies": { - "Microsoft.IdentityModel.Logging": "6.8.0", - "Microsoft.IdentityModel.Tokens": "6.8.0" + "Microsoft.Extensions.Primitives": "6.0.0" }, "runtime": { - "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { - "assemblyVersion": "6.8.0.0", - "fileVersion": "6.8.0.11012" + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" } } }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "Microsoft.AspNetCore.JsonPatch/6.0.30": { "dependencies": { - "Microsoft.IdentityModel.Protocols": "6.8.0", - "System.IdentityModel.Tokens.Jwt": "6.8.0" + "Microsoft.CSharp": "4.7.0", + "Newtonsoft.Json": "13.0.3" }, "runtime": { - "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { - "assemblyVersion": "6.8.0.0", - "fileVersion": "6.8.0.11012" + "lib/net6.0/Microsoft.AspNetCore.JsonPatch.dll": { + "assemblyVersion": "6.0.30.0", + "fileVersion": "6.0.3024.21619" } } }, - "Microsoft.IdentityModel.Tokens/6.8.0": { + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/6.0.30": { "dependencies": { - "Microsoft.CSharp": "4.7.0", - "Microsoft.IdentityModel.Logging": "6.8.0", - "System.Security.Cryptography.Cng": "4.5.0" + "Microsoft.AspNetCore.JsonPatch": "6.0.30", + "Newtonsoft.Json": "13.0.3", + "Newtonsoft.Json.Bson": "1.0.2" }, "runtime": { - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { - "assemblyVersion": "6.8.0.0", - "fileVersion": "6.8.0.11012" + "lib/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { + "assemblyVersion": "6.0.30.0", + "fileVersion": "6.0.3024.21619" } } }, - "Microsoft.NETCore.Platforms/5.0.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "Microsoft.OpenApi/1.2.3": { + "Microsoft.AspNetCore.Razor.Language/6.0.30": { "runtime": { - "lib/netstandard2.0/Microsoft.OpenApi.dll": { - "assemblyVersion": "1.2.3.0", - "fileVersion": "1.2.3.0" + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": { + "assemblyVersion": "6.0.30.0", + "fileVersion": "6.0.3024.21619" } } }, - "Microsoft.Win32.Registry/4.7.0": { + "Microsoft.AspNetCore.StaticFiles/2.2.0": { "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Security.Principal.Windows": "4.7.0" + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.WebEncoders": "2.2.0" }, "runtime": { - "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { - "assemblyVersion": "4.1.3.0", - "fileVersion": "4.700.19.56404" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "4.1.3.0", - "fileVersion": "4.700.19.56404" - }, - "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.1.3.0", - "fileVersion": "4.700.19.56404" + "lib/netstandard2.0/Microsoft.AspNetCore.StaticFiles.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" } } }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "runtime": { - "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } + "Microsoft.AspNetCore.WebUtilities/2.1.1": { + "dependencies": { + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Text.Encodings.Web": "6.0.0" }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "MySqlConnector/2.2.5": { "runtime": { - "lib/net6.0/MySqlConnector.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.2.5.0" + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": { + "assemblyVersion": "2.1.1.0", + "fileVersion": "2.1.1.18157" } } }, - "Newtonsoft.Json/13.0.3": { + "Microsoft.CodeAnalysis.Analyzers/3.3.4": {}, + "Microsoft.CodeAnalysis.Common/4.9.2": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.4", + "System.Collections.Immutable": "8.0.0", + "System.Reflection.Metadata": "8.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, "runtime": { - "lib/net6.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.3.27908" + "lib/net6.0/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.224.12906" + } + }, + "resources": { + "lib/net6.0/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/net6.0/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/net6.0/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/net6.0/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/net6.0/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/net6.0/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/net6.0/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/net6.0/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/net6.0/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/net6.0/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" } } }, - "Npgsql/5.0.7": { + "Microsoft.CodeAnalysis.CSharp/4.9.2": { "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" + "Microsoft.CodeAnalysis.Common": "4.9.2" }, "runtime": { - "lib/net5.0/Npgsql.dll": { - "assemblyVersion": "5.0.7.0", - "fileVersion": "5.0.7.0" + "lib/net6.0/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.224.12906" + } + }, + "resources": { + "lib/net6.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/net6.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/net6.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/net6.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/net6.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/net6.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/net6.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/net6.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/net6.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/net6.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" } } }, - "Oracle.ManagedDataAccess.Core/3.21.100": { + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.9.2": { "dependencies": { - "System.Diagnostics.PerformanceCounter": "6.0.1", - "System.DirectoryServices": "6.0.1", - "System.DirectoryServices.Protocols": "6.0.1" + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.CSharp": "4.9.2", + "Microsoft.CodeAnalysis.Common": "4.9.2", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.9.2" }, "runtime": { - "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": { - "assemblyVersion": "3.1.21.1", - "fileVersion": "3.1.21.1" + "lib/net6.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.224.12906" + } + }, + "resources": { + "lib/net6.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net6.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net6.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net6.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net6.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net6.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net6.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net6.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net6.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net6.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hant" } } }, - "Pipelines.Sockets.Unofficial/2.2.8": { + "Microsoft.CodeAnalysis.Workspaces.Common/4.9.2": { "dependencies": { - "System.IO.Pipelines": "5.0.1" + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.Common": "4.9.2", + "System.Composition": "8.0.0", + "System.IO.Pipelines": "8.0.0", + "System.Threading.Channels": "8.0.0" }, "runtime": { - "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "2.2.8.1080" + "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.224.12906" } - } - }, - "runtime.linux-arm.runtime.native.System.IO.Ports/4.7.0": { + }, + "resources": { + "lib/net6.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net6.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net6.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net6.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net6.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net6.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net6.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net6.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net6.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net6.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.Data.SqlClient/2.1.4": { + "dependencies": { + "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1", + "Microsoft.Identity.Client": "4.21.1", + "Microsoft.IdentityModel.JsonWebTokens": "7.5.1", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.35.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "6.0.1", + "System.Diagnostics.DiagnosticSource": "4.7.1", + "System.Runtime.Caching": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "System.Text.Encoding.CodePages": "6.0.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + }, "runtimeTargets": { - "runtimes/linux-arm/native/System.IO.Ports.Native.so": { - "rid": "linux-arm", + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + }, + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm", "assetType": "native", - "fileVersion": "0.0.0.0" + "fileVersion": "2.1.1.0" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "2.1.1.0" + } + } + }, + "Microsoft.Data.Sqlite/7.0.5": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "7.0.5", + "SQLitePCLRaw.bundle_e_sqlite3": "2.1.4" + } + }, + "Microsoft.Data.Sqlite.Core/7.0.5": { + "dependencies": { + "SQLitePCLRaw.core": "2.1.4" + }, + "runtime": { + "lib/net6.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "7.0.5.0", + "fileVersion": "7.0.523.16503" + } + } + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": {}, + "Microsoft.Extensions.Caching.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Caching.Memory/6.0.1": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.222.6406" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.DependencyInjection/6.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.1022.47605" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.DependencyModel/6.0.0": { + "dependencies": { + "System.Buffers": "4.5.1", + "System.Memory": "4.5.4", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0", + "System.Text.Json": "6.0.9" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18315" + } + } + }, + "Microsoft.Extensions.Hosting.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.Extensions.Logging/5.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.ObjectPool/2.1.1": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": { + "assemblyVersion": "2.1.1.0", + "fileVersion": "2.1.1.18157" + } + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.WebEncoders/2.2.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.Identity.Client/4.21.1": { + "runtime": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { + "assemblyVersion": "4.21.1.0", + "fileVersion": "4.21.1.0" + } + } + }, + "Microsoft.IdentityModel.Abstractions/7.5.1": { + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { + "assemblyVersion": "7.5.1.0", + "fileVersion": "7.5.1.50405" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/7.5.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "7.5.1" + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "7.5.1.0", + "fileVersion": "7.5.1.50405" + } + } + }, + "Microsoft.IdentityModel.Logging/7.5.1": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "7.5.1" + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "7.5.1.0", + "fileVersion": "7.5.1.50405" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.35.0": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "7.5.1", + "Microsoft.IdentityModel.Tokens": "7.5.1" + }, + "runtime": { + "lib/net6.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": "7.5.1" + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "6.35.0.0", + "fileVersion": "6.35.0.41201" + } + } + }, + "Microsoft.IdentityModel.Tokens/7.5.1": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "7.5.1" + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "7.5.1.0", + "fileVersion": "7.5.1.50405" + } + } + }, + "Microsoft.IO.RecyclableMemoryStream/2.1.1": { + "runtime": { + "lib/net5.0/Microsoft.IO.RecyclableMemoryStream.dll": { + "assemblyVersion": "2.1.0.0", + "fileVersion": "2.1.0.0" + } + } + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0", + "System.Buffers": "4.5.1" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.NETCore.Platforms/1.1.1": {}, + "Microsoft.NETCore.Targets/1.1.3": {}, + "Microsoft.OpenApi/1.6.14": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.6.14.0", + "fileVersion": "1.6.14.0" + } + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assemblyVersion": "4.1.3.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.1.3.0", + "fileVersion": "4.700.19.56404" + }, + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.1.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Minio/4.0.5": { + "dependencies": { + "Crc32.NET": "1.2.0", + "Microsoft.CSharp": "4.7.0", + "Newtonsoft.Json": "13.0.3", + "System.Net.Http": "4.3.4", + "System.Net.Primitives": "4.3.1", + "System.Reactive.Linq": "5.0.0", + "System.ValueTuple": "4.4.0" + }, + "runtime": { + "lib/netstandard2.0/Minio.dll": { + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.0.5.0" + } + } + }, + "MiniProfiler.AspNetCore/4.3.8": { + "dependencies": { + "MiniProfiler.Shared": "4.3.8" + }, + "runtime": { + "lib/net6.0/MiniProfiler.AspNetCore.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.3.8.8209" + } + } + }, + "MiniProfiler.AspNetCore.Mvc/4.3.8": { + "dependencies": { + "MiniProfiler.AspNetCore": "4.3.8" + }, + "runtime": { + "lib/net6.0/MiniProfiler.AspNetCore.Mvc.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.3.8.8209" + } + } + }, + "MiniProfiler.Shared/4.3.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Newtonsoft.Json": "13.0.3", + "System.ComponentModel.Primitives": "4.3.0", + "System.Data.Common": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.7.1", + "System.Diagnostics.StackTrace": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.Threading.Tasks.Parallel": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/MiniProfiler.Shared.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.3.8.8209" + } + } + }, + "MQTTnet/3.1.2": { + "runtime": { + "lib/net5.0/MQTTnet.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.1.2.0" + } + } + }, + "MQTTnet.AspNetCore/3.1.2": { + "dependencies": { + "MQTTnet": "3.1.2" + }, + "runtime": { + "lib/net5.0/MQTTnet.AspNetCore.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.1.2.0" + } + } + }, + "MySqlConnector/2.2.5": { + "runtime": { + "lib/net6.0/MySqlConnector.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.2.5.0" + } + } + }, + "NETStandard.Library/2.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1" + } + }, + "NewLife.Core/10.9.2024.402": { + "runtime": { + "lib/net6.0-windows7.0/NewLife.Core.dll": { + "assemblyVersion": "10.9.2024.402", + "fileVersion": "10.9.2024.402" + } + } + }, + "NewLife.Redis/5.6.2024.402": { + "dependencies": { + "NewLife.Core": "10.9.2024.402" + }, + "runtime": { + "lib/netstandard2.1/NewLife.Redis.dll": { + "assemblyVersion": "5.6.2024.402", + "fileVersion": "5.6.2024.402" + } + } + }, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + } + }, + "Newtonsoft.Json.Bson/1.0.2": { + "dependencies": { + "Newtonsoft.Json": "13.0.3" + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.2.22727" + } + } + }, + "Npgsql/5.0.7": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net5.0/Npgsql.dll": { + "assemblyVersion": "5.0.7.0", + "fileVersion": "5.0.7.0" + } + } + }, + "OnceMi.AspNetCore.OSS/1.1.9": { + "dependencies": { + "Aliyun.OSS.SDK.NetCore": "2.13.0", + "Microsoft.AspNetCore.StaticFiles": "2.2.0", + "Microsoft.CSharp": "4.7.0", + "Microsoft.Extensions.Caching.Memory": "6.0.1", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.DependencyInjection": "6.0.1", + "Microsoft.Extensions.Options": "6.0.0", + "Minio": "4.0.5", + "Qiniu": "8.2.0", + "Tencent.QCloud.Cos.Sdk": "5.4.32" + }, + "runtime": { + "lib/netstandard2.1/OnceMi.AspNetCore.OSS.dll": { + "assemblyVersion": "1.1.9.0", + "fileVersion": "1.1.9.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" + }, + "runtime": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": { + "assemblyVersion": "3.1.21.1", + "fileVersion": "3.1.21.1" + } + } + }, + "Pipelines.Sockets.Unofficial/2.2.8": { + "dependencies": { + "System.IO.Pipelines": "8.0.0" + }, + "runtime": { + "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "2.2.8.1080" + } + } + }, + "Qiniu/8.2.0": { + "dependencies": { + "Newtonsoft.Json": "13.0.3" + }, + "runtime": { + "lib/netstandard2.0/Qiniu.dll": { + "assemblyVersion": "8.2.0.0", + "fileVersion": "8.2.0.0" + } + } + }, + "Quartz/3.8.1": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "System.Configuration.ConfigurationManager": "6.0.1" + }, + "runtime": { + "lib/net6.0/Quartz.dll": { + "assemblyVersion": "3.8.1.0", + "fileVersion": "3.8.1.0" + } + } + }, + "Quartz.Serialization.Json/3.8.1": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "Quartz": "3.8.1" + }, + "runtime": { + "lib/netstandard2.0/Quartz.Serialization.Json.dll": { + "assemblyVersion": "3.8.1.0", + "fileVersion": "3.8.1.0" + } + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "runtimeTargets": { + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "rid": "debian.8-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "runtimeTargets": { + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "rid": "fedora.23-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "runtimeTargets": { + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "rid": "fedora.24-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.linux-arm.runtime.native.System.IO.Ports/4.7.0": { + "runtimeTargets": { + "runtimes/linux-arm/native/System.IO.Ports.Native.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.linux-arm64.runtime.native.System.IO.Ports/4.7.0": { + "runtimeTargets": { + "runtimes/linux-arm64/native/System.IO.Ports.Native.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.linux-x64.runtime.native.System.IO.Ports/4.7.0": { + "runtimeTargets": { + "runtimes/linux-x64/native/System.IO.Ports.Native.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.3" + } + }, + "runtime.native.System.IO.Ports/4.7.0": { + "dependencies": { + "runtime.linux-arm.runtime.native.System.IO.Ports": "4.7.0", + "runtime.linux-arm64.runtime.native.System.IO.Ports": "4.7.0", + "runtime.linux-x64.runtime.native.System.IO.Ports": "4.7.0", + "runtime.osx-x64.runtime.native.System.IO.Ports": "4.7.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.3" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "runtimeTargets": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "rid": "opensuse.13.2-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "runtimeTargets": { + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "rid": "opensuse.42.1-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.osx-x64.runtime.native.System.IO.Ports/4.7.0": { + "runtimeTargets": { + "runtimes/osx-x64/native/System.IO.Ports.Native.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { + "rid": "osx.10.10-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { + "rid": "osx.10.10-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "runtimeTargets": { + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "rid": "rhel.7-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "runtimeTargets": { + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "rid": "ubuntu.14.04-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "runtimeTargets": { + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "rid": "ubuntu.16.04-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "runtimeTargets": { + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "rid": "ubuntu.16.10-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SixLabors.ImageSharp/3.0.0": { + "runtime": { + "lib/net6.0/SixLabors.ImageSharp.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.0.0.0" + } + } + }, + "SkiaSharp/2.88.6": { + "dependencies": { + "SkiaSharp.NativeAssets.Win32": "2.88.6", + "SkiaSharp.NativeAssets.macOS": "2.88.6" + }, + "runtime": { + "lib/net6.0/SkiaSharp.dll": { + "assemblyVersion": "2.88.0.0", + "fileVersion": "2.88.6.0" + } + } + }, + "SkiaSharp.NativeAssets.Linux.NoDependencies/2.88.6": { + "dependencies": { + "SkiaSharp": "2.88.6" + }, + "runtimeTargets": { + "runtimes/linux-arm/native/libSkiaSharp.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libSkiaSharp.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libSkiaSharp.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libSkiaSharp.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SkiaSharp.NativeAssets.macOS/2.88.6": { + "runtimeTargets": { + "runtimes/osx/native/libSkiaSharp.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SkiaSharp.NativeAssets.Win32/2.88.6": { + "runtimeTargets": { + "runtimes/win-arm64/native/libSkiaSharp.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/libSkiaSharp.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/libSkiaSharp.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.4": { + "dependencies": { + "SQLitePCLRaw.lib.e_sqlite3": "2.1.4", + "SQLitePCLRaw.provider.e_sqlite3": "2.1.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.1.4.1835", + "fileVersion": "2.1.4.1835" + } + } + }, + "SQLitePCLRaw.core/2.1.4": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.1.4.1835", + "fileVersion": "2.1.4.1835" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.4": { + "runtimeTargets": { + "runtimes/alpine-arm/native/libe_sqlite3.so": { + "rid": "alpine-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/alpine-arm64/native/libe_sqlite3.so": { + "rid": "alpine-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "rid": "alpine-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/browser-wasm/nativeassets/net6.0/e_sqlite3.a": { + "rid": "browser-wasm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-arm/native/libe_sqlite3.so": { + "rid": "linux-musl-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-arm64/native/libe_sqlite3.so": { + "rid": "linux-musl-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-ppc64le/native/libe_sqlite3.so": { + "rid": "linux-ppc64le", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-s390x/native/libe_sqlite3.so": { + "rid": "linux-s390x", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib": { + "rid": "maccatalyst-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib": { + "rid": "maccatalyst-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-arm64/native/libe_sqlite3.dylib": { + "rid": "osx-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.1.4" + }, + "runtime": { + "lib/net6.0-windows7.0/SQLitePCLRaw.provider.e_sqlite3.dll": { + "assemblyVersion": "2.1.4.1835", + "fileVersion": "2.1.4.1835" + } + } + }, + "SqlSugar.IOC/2.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "System.Runtime.Loader": "4.3.0" + }, + "runtime": { + "lib/netstandard2.1/SqlSugar.IOC.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "SqlSugarCore/5.1.4.115": { + "dependencies": { + "Microsoft.Data.SqlClient": "2.1.4", + "Microsoft.Data.Sqlite": "7.0.5", + "MySqlConnector": "2.2.5", + "Newtonsoft.Json": "13.0.3", + "Npgsql": "5.0.7", + "Oracle.ManagedDataAccess.Core": "3.21.100", + "SqlSugarCore.Dm": "1.2.0", + "SqlSugarCore.Kdbndp": "7.4.0", + "System.Data.Common": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0" + }, + "runtime": { + "lib/netstandard2.1/SqlSugar.dll": { + "assemblyVersion": "5.1.4.115", + "fileVersion": "5.1.4.115" + } + } + }, + "SqlSugarCore.Dm/1.2.0": { + "dependencies": { + "System.Text.Encoding.CodePages": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/DmProvider.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.16649" + } + } + }, + "SqlSugarCore.Kdbndp/7.4.0": { + "runtime": { + "lib/netstandard2.1/Kdbndp.dll": { + "assemblyVersion": "8.3.712.0", + "fileVersion": "8.3.712.0" + } + } + }, + "StackExchange.Redis/2.7.33": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Pipelines.Sockets.Unofficial": "2.2.8" + }, + "runtime": { + "lib/net6.0/StackExchange.Redis.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.7.33.41805" + } + } + }, + "Swashbuckle.AspNetCore/6.6.1": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "6.0.5", + "Swashbuckle.AspNetCore.Swagger": "6.6.1", + "Swashbuckle.AspNetCore.SwaggerGen": "6.6.1", + "Swashbuckle.AspNetCore.SwaggerUI": "6.6.1" + } + }, + "Swashbuckle.AspNetCore.Swagger/6.6.1": { + "dependencies": { + "Microsoft.OpenApi": "1.6.14" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "6.6.1.0", + "fileVersion": "6.6.1.327" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.6.1": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.6.1" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "6.6.1.0", + "fileVersion": "6.6.1.327" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.6.1": { + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "6.6.1.0", + "fileVersion": "6.6.1.327" + } + } + }, + "System.Buffers/4.5.1": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.1" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.1", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": { + "assemblyVersion": "4.0.13.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Collections.Immutable/8.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Collections.Immutable.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "System.ComponentModel/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.1" + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.ComponentModel.Annotations/4.7.0": { + "runtime": { + "lib/netstandard2.1/System.ComponentModel.Annotations.dll": { + "assemblyVersion": "4.3.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.1" + }, + "runtime": { + "lib/netstandard1.0/System.ComponentModel.Primitives.dll": { + "assemblyVersion": "4.1.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Composition/8.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "8.0.0", + "System.Composition.Convention": "8.0.0", + "System.Composition.Hosting": "8.0.0", + "System.Composition.Runtime": "8.0.0", + "System.Composition.TypedParts": "8.0.0" + } + }, + "System.Composition.AttributedModel/8.0.0": { + "runtime": { + "lib/net6.0/System.Composition.AttributedModel.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "System.Composition.Convention/8.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "8.0.0" + }, + "runtime": { + "lib/net6.0/System.Composition.Convention.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "System.Composition.Hosting/8.0.0": { + "dependencies": { + "System.Composition.Runtime": "8.0.0" + }, + "runtime": { + "lib/net6.0/System.Composition.Hosting.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "System.Composition.Runtime/8.0.0": { + "runtime": { + "lib/net6.0/System.Composition.Runtime.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "System.Composition.TypedParts/8.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "8.0.0", + "System.Composition.Hosting": "8.0.0", + "System.Composition.Runtime": "8.0.0" + }, + "runtime": { + "lib/net6.0/System.Composition.TypedParts.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "runtime": { + "lib/net6.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.0", + "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.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.1" + } + }, + "System.Diagnostics.DiagnosticSource/4.7.1": { + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.20.21406" + } + } + }, + "System.Diagnostics.PerformanceCounter/6.0.1": { + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.1" + }, + "runtime": { + "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.422.16404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.422.16404" + } + } + }, + "System.Diagnostics.StackTrace/4.3.0": { + "dependencies": { + "System.IO.FileSystem": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Metadata": "8.0.0", + "System.Runtime": "4.3.1" + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.StackTrace.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.1" + } + }, + "System.DirectoryServices/6.0.1": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.1423.7309" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.1423.7309" + } + } + }, + "System.DirectoryServices.Protocols/6.0.1": { + "runtime": { + "lib/net6.0/System.DirectoryServices.Protocols.dll": { + "assemblyVersion": "6.0.0.1", + "fileVersion": "6.0.222.6406" + } + }, + "runtimeTargets": { + "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "rid": "linux", + "assetType": "runtime", + "assemblyVersion": "6.0.0.1", + "fileVersion": "6.0.222.6406" + }, + "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "rid": "osx", + "assetType": "runtime", + "assemblyVersion": "6.0.0.1", + "fileVersion": "6.0.222.6406" + }, + "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.1", + "fileVersion": "6.0.222.6406" + } + } + }, + "System.Drawing.Common/6.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Dynamic.Runtime/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.1", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": { + "assemblyVersion": "4.0.12.0", + "fileVersion": "4.6.24705.1" } } }, - "runtime.linux-arm64.runtime.native.System.IO.Ports/4.7.0": { - "runtimeTargets": { - "runtimes/linux-arm64/native/System.IO.Ports.Native.so": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" + "System.Formats.Asn1/6.0.0": { + "runtime": { + "lib/net6.0/System.Formats.Asn1.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" } } }, - "runtime.linux-x64.runtime.native.System.IO.Ports/4.7.0": { - "runtimeTargets": { - "runtimes/linux-x64/native/System.IO.Ports.Native.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.1" } }, - "runtime.native.System.IO.Ports/4.7.0": { + "System.Globalization.Calendars/4.3.0": { "dependencies": { - "runtime.linux-arm.runtime.native.System.IO.Ports": "4.7.0", - "runtime.linux-arm64.runtime.native.System.IO.Ports": "4.7.0", - "runtime.linux-x64.runtime.native.System.IO.Ports": "4.7.0", - "runtime.osx-x64.runtime.native.System.IO.Ports": "4.7.0" + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.1" } }, - "runtime.osx-x64.runtime.native.System.IO.Ports/4.7.0": { + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.1", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, "runtimeTargets": { - "runtimes/osx-x64/native/System.IO.Ports.Native.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" } } }, - "SQLitePCLRaw.bundle_e_sqlite3/2.1.4": { + "System.IdentityModel.Tokens.Jwt/7.5.1": { "dependencies": { - "SQLitePCLRaw.lib.e_sqlite3": "2.1.4", - "SQLitePCLRaw.provider.e_sqlite3": "2.1.4" + "Microsoft.IdentityModel.JsonWebTokens": "7.5.1", + "Microsoft.IdentityModel.Tokens": "7.5.1" }, "runtime": { - "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": { - "assemblyVersion": "2.1.4.1835", - "fileVersion": "2.1.4.1835" + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "7.5.1.0", + "fileVersion": "7.5.1.50405" } } }, - "SQLitePCLRaw.core/2.1.4": { + "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/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.3", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.1", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { "dependencies": { - "System.Memory": "4.5.3" + "System.Runtime": "4.3.1" }, "runtime": { - "lib/netstandard2.0/SQLitePCLRaw.core.dll": { - "assemblyVersion": "2.1.4.1835", - "fileVersion": "2.1.4.1835" + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" } } }, - "SQLitePCLRaw.lib.e_sqlite3/2.1.4": { + "System.IO.Pipelines/8.0.0": { + "runtime": { + "lib/net6.0/System.IO.Pipelines.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "System.IO.Ports/4.7.0": { + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "runtime.native.System.IO.Ports": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.IO.Ports.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + }, "runtimeTargets": { - "runtimes/alpine-arm/native/libe_sqlite3.so": { - "rid": "alpine-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/alpine-arm64/native/libe_sqlite3.so": { - "rid": "alpine-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/alpine-x64/native/libe_sqlite3.so": { - "rid": "alpine-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/browser-wasm/nativeassets/net6.0/e_sqlite3.a": { - "rid": "browser-wasm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm/native/libe_sqlite3.so": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm64/native/libe_sqlite3.so": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-armel/native/libe_sqlite3.so": { - "rid": "linux-armel", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-mips64/native/libe_sqlite3.so": { - "rid": "linux-mips64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-arm/native/libe_sqlite3.so": { - "rid": "linux-musl-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-arm64/native/libe_sqlite3.so": { - "rid": "linux-musl-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-x64/native/libe_sqlite3.so": { - "rid": "linux-musl-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-ppc64le/native/libe_sqlite3.so": { - "rid": "linux-ppc64le", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-s390x/native/libe_sqlite3.so": { - "rid": "linux-s390x", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libe_sqlite3.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x86/native/libe_sqlite3.so": { - "rid": "linux-x86", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib": { - "rid": "maccatalyst-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib": { - "rid": "maccatalyst-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-arm64/native/libe_sqlite3.dylib": { - "rid": "osx-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libe_sqlite3.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-arm/native/e_sqlite3.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-arm64/native/e_sqlite3.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" + "runtimes/linux/lib/netstandard2.0/System.IO.Ports.dll": { + "rid": "linux", + "assetType": "runtime", + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" }, - "runtimes/win-x64/native/e_sqlite3.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" + "runtimes/osx/lib/netstandard2.0/System.IO.Ports.dll": { + "rid": "osx", + "assetType": "runtime", + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" }, - "runtimes/win-x86/native/e_sqlite3.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "0.0.0.0" + "runtimes/win/lib/netstandard2.0/System.IO.Ports.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" } } }, - "SQLitePCLRaw.provider.e_sqlite3/2.1.4": { + "System.Linq/4.3.0": { "dependencies": { - "SQLitePCLRaw.core": "2.1.4" + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.1", + "System.Runtime.Extensions": "4.3.0" + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": { + "assemblyVersion": "4.1.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Linq.Dynamic.Core/1.2.6": { + "runtime": { + "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "System.Linq.Expressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.1", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": { + "assemblyVersion": "4.1.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Memory/4.5.4": {}, + "System.Net.Http/4.3.4": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.7.1", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.1", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.1", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" }, - "runtime": { - "lib/net6.0-windows7.0/SQLitePCLRaw.provider.e_sqlite3.dll": { - "assemblyVersion": "2.1.4.1835", - "fileVersion": "2.1.4.1835" + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.1.1.3", + "fileVersion": "4.6.26907.1" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.1.1.3", + "fileVersion": "4.6.26907.1" } } }, - "SqlSugar.IOC/2.0.0": { + "System.Net.Primitives/4.3.1": { "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "System.Runtime.Loader": "4.3.0" - }, - "runtime": { - "lib/netstandard2.1/SqlSugar.IOC.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.0.0.0" - } + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.1", + "System.Runtime.Handles": "4.3.0" } }, - "SqlSugarCore/5.1.4.115": { + "System.Numerics.Vectors/4.5.0": {}, + "System.ObjectModel/4.3.0": { "dependencies": { - "Microsoft.Data.SqlClient": "2.1.4", - "Microsoft.Data.Sqlite": "7.0.5", - "MySqlConnector": "2.2.5", - "Newtonsoft.Json": "13.0.3", - "Npgsql": "5.0.7", - "Oracle.ManagedDataAccess.Core": "3.21.100", - "SqlSugarCore.Dm": "1.2.0", - "SqlSugarCore.Kdbndp": "7.4.0", - "System.Data.Common": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0" + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.1", + "System.Threading": "4.3.0" }, "runtime": { - "lib/netstandard2.1/SqlSugar.dll": { - "assemblyVersion": "5.1.4.115", - "fileVersion": "5.1.4.115" + "lib/netstandard1.3/System.ObjectModel.dll": { + "assemblyVersion": "4.0.13.0", + "fileVersion": "4.6.24705.1" } } }, - "SqlSugarCore.Dm/1.2.0": { + "System.Private.ServiceModel/4.8.1": { "dependencies": { - "System.Text.Encoding.CodePages": "5.0.0" + "System.Numerics.Vectors": "4.5.0", + "System.Reflection.DispatchProxy": "4.7.1", + "System.Security.Cryptography.Xml": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" }, "runtime": { - "lib/netstandard2.0/DmProvider.dll": { - "assemblyVersion": "1.1.0.0", - "fileVersion": "1.1.0.16649" + "lib/netstandard2.0/System.Private.ServiceModel.dll": { + "assemblyVersion": "4.8.1.0", + "fileVersion": "4.800.121.7802" } } }, - "SqlSugarCore.Kdbndp/7.4.0": { + "System.Reactive/5.0.0": { "runtime": { - "lib/netstandard2.1/Kdbndp.dll": { - "assemblyVersion": "8.3.712.0", - "fileVersion": "8.3.712.0" + "lib/net5.0/System.Reactive.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.1" } } }, - "StackExchange.Redis/2.7.33": { + "System.Reactive.Linq/5.0.0": { "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "6.0.0", - "Pipelines.Sockets.Unofficial": "2.2.8" + "System.Reactive": "5.0.0", + "System.Threading.Tasks.Extensions": "4.5.4" }, "runtime": { - "lib/net6.0/StackExchange.Redis.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.7.33.41805" + "lib/netstandard2.0/System.Reactive.Linq.dll": { + "assemblyVersion": "3.0.6000.0", + "fileVersion": "3.0.6000.0" } } }, - "Swashbuckle.AspNetCore/6.5.0": { + "System.Reflection/4.3.0": { "dependencies": { - "Microsoft.Extensions.ApiDescription.Server": "6.0.5", - "Swashbuckle.AspNetCore.Swagger": "6.5.0", - "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0", - "Swashbuckle.AspNetCore.SwaggerUI": "6.5.0" + "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.DispatchProxy/4.7.1": { + "runtime": { + "lib/netcoreapp2.0/System.Reflection.DispatchProxy.dll": { + "assemblyVersion": "4.0.6.0", + "fileVersion": "4.700.20.21406" + } } }, - "Swashbuckle.AspNetCore.Swagger/6.5.0": { + "System.Reflection.Emit/4.3.0": { "dependencies": { - "Microsoft.OpenApi": "1.2.3" + "System.IO": "4.3.0", + "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/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { - "assemblyVersion": "6.5.0.0", - "fileVersion": "6.5.0.0" + "lib/netstandard1.3/System.Reflection.Emit.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" } } }, - "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": { + "System.Reflection.Emit.ILGeneration/4.3.0": { "dependencies": { - "Swashbuckle.AspNetCore.Swagger": "6.5.0" + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.1" }, "runtime": { - "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { - "assemblyVersion": "6.5.0.0", - "fileVersion": "6.5.0.0" + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" } } }, - "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": { + "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/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { - "assemblyVersion": "6.5.0.0", - "fileVersion": "6.5.0.0" + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" } } }, - "System.Collections/4.3.0": { + "System.Reflection.Extensions/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.1" } }, - "System.Collections.Immutable/1.5.0": { + "System.Reflection.Metadata/8.0.0": { + "dependencies": { + "System.Collections.Immutable": "8.0.0" + }, "runtime": { - "lib/netstandard2.0/System.Collections.Immutable.dll": { - "assemblyVersion": "1.2.3.0", - "fileVersion": "4.6.26515.6" + "lib/net6.0/System.Reflection.Metadata.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" } } }, - "System.Configuration.ConfigurationManager/6.0.0": { + "System.Reflection.Primitives/4.3.0": { "dependencies": { - "System.Security.Cryptography.ProtectedData": "6.0.0", - "System.Security.Permissions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Configuration.ConfigurationManager.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.1" } }, - "System.Data.Common/4.3.0": { + "System.Reflection.TypeExtensions/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.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0" + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.1" }, "runtime": { - "lib/netstandard1.2/System.Data.Common.dll": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": { "assemblyVersion": "4.1.1.0", "fileVersion": "4.6.24705.1" } } }, - "System.Diagnostics.DiagnosticSource/4.7.1": { - "runtime": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": { - "assemblyVersion": "4.0.5.0", - "fileVersion": "4.700.20.21406" - } + "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.Diagnostics.PerformanceCounter/6.0.1": { + "System.Runtime/4.3.1": { "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.422.16404" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.422.16404" - } + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.3" } }, - "System.DirectoryServices/6.0.1": { + "System.Runtime.Caching/4.7.0": { "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Security.Permissions": "6.0.0" + "System.Configuration.ConfigurationManager": "6.0.1" }, "runtime": { - "lib/net6.0/System.DirectoryServices.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1423.7309" + "lib/netstandard2.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" } }, "runtimeTargets": { - "runtimes/win/lib/net6.0/System.DirectoryServices.dll": { + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { "rid": "win", "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1423.7309" + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" } } }, - "System.DirectoryServices.Protocols/6.0.1": { + "System.Runtime.CompilerServices.Unsafe/6.0.0": { "runtime": { - "lib/net6.0/System.DirectoryServices.Protocols.dll": { - "assemblyVersion": "6.0.0.1", - "fileVersion": "6.0.222.6406" - } - }, - "runtimeTargets": { - "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll": { - "rid": "linux", - "assetType": "runtime", - "assemblyVersion": "6.0.0.1", - "fileVersion": "6.0.222.6406" - }, - "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll": { - "rid": "osx", - "assetType": "runtime", - "assemblyVersion": "6.0.0.1", - "fileVersion": "6.0.222.6406" - }, - "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.1", - "fileVersion": "6.0.222.6406" + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" } } }, - "System.Drawing.Common/6.0.0": { + "System.Runtime.Extensions/4.3.0": { "dependencies": { - "Microsoft.Win32.SystemEvents": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Drawing.Common.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.1" } }, - "System.Globalization/4.3.0": { + "System.Runtime.Handles/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.1" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.1", + "System.Runtime.Handles": "4.3.0" } }, - "System.IdentityModel.Tokens.Jwt/6.8.0": { + "System.Runtime.Loader/4.3.0": { "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", - "Microsoft.IdentityModel.Tokens": "6.8.0" + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.1" }, "runtime": { - "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { - "assemblyVersion": "6.8.0.0", - "fileVersion": "6.8.0.11012" + "lib/netstandard1.5/System.Runtime.Loader.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.6.24705.1" } } }, - "System.IO/4.3.0": { + "System.Runtime.Numerics/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.Pipelines/5.0.1": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.1", + "System.Runtime.Extensions": "4.3.0" + }, "runtime": { - "lib/netcoreapp3.0/System.IO.Pipelines.dll": { - "assemblyVersion": "5.0.0.1", - "fileVersion": "5.0.120.57516" + "lib/netstandard1.3/System.Runtime.Numerics.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" } } }, - "System.IO.Ports/4.7.0": { + "System.Runtime.Serialization.Primitives/4.3.0": { "dependencies": { - "Microsoft.Win32.Registry": "4.7.0", - "runtime.native.System.IO.Ports": "4.7.0" + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.1" }, "runtime": { - "lib/netstandard2.0/System.IO.Ports.dll": { - "assemblyVersion": "4.0.3.0", - "fileVersion": "4.700.19.56404" + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": { + "assemblyVersion": "4.1.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Security.AccessControl/6.0.0": { + "runtime": { + "lib/net6.0/System.Security.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" } + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.1", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" }, "runtimeTargets": { - "runtimes/linux/lib/netstandard2.0/System.IO.Ports.dll": { - "rid": "linux", + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "rid": "osx", "assetType": "runtime", - "assemblyVersion": "4.0.3.0", - "fileVersion": "4.700.19.56404" + "assemblyVersion": "4.2.1.0", + "fileVersion": "4.6.24705.1" }, - "runtimes/osx/lib/netstandard2.0/System.IO.Ports.dll": { - "rid": "osx", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "rid": "unix", "assetType": "runtime", - "assemblyVersion": "4.0.3.0", - "fileVersion": "4.700.19.56404" + "assemblyVersion": "4.2.1.0", + "fileVersion": "4.6.24705.1" }, - "runtimes/win/lib/netstandard2.0/System.IO.Ports.dll": { + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { "rid": "win", "assetType": "runtime", - "assemblyVersion": "4.0.3.0", - "fileVersion": "4.700.19.56404" + "assemblyVersion": "4.2.1.0", + "fileVersion": "4.6.24705.1" } } }, - "System.Memory/4.5.3": {}, - "System.Reflection/4.3.0": { + "System.Security.Cryptography.Cng/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", + "Microsoft.NETCore.Platforms": "1.1.1", "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.1", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": { - "assemblyVersion": "4.0.2.0", + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.2.1.0", + "fileVersion": "4.6.24705.1" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.2.1.0", "fileVersion": "4.6.24705.1" } } }, - "System.Reflection.Emit.Lightweight/4.3.0": { + "System.Security.Cryptography.Csp/4.3.0": { "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.IO": "4.3.0", "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.1", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": { - "assemblyVersion": "4.0.2.0", + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.6.24705.1" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", "fileVersion": "4.6.24705.1" } } }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { + "System.Security.Cryptography.Encoding/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0" + "Microsoft.NETCore.Platforms": "1.1.1", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.1", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.6.24705.1" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.6.24705.1" + } } }, - "System.Runtime.Caching/4.7.0": { + "System.Security.Cryptography.OpenSsl/4.3.0": { "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.1", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" }, "runtime": { - "lib/netstandard2.0/System.Runtime.Caching.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.700.19.56404" + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "1.0.24212.1" } }, "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { - "rid": "win", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "rid": "unix", "assetType": "runtime", "assemblyVersion": "4.0.1.0", - "fileVersion": "4.700.19.56404" + "fileVersion": "4.6.24705.1" } } }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "System.Security.Cryptography.Pkcs/6.0.1": { + "dependencies": { + "System.Formats.Asn1": "6.0.0" + }, "runtime": { - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "lib/net6.0/System.Security.Cryptography.Pkcs.dll": { "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" + "fileVersion": "6.0.522.21309" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21309" } } }, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Loader/4.3.0": { + "System.Security.Cryptography.Primitives/4.3.0": { "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.1", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" }, "runtime": { - "lib/netstandard1.5/System.Runtime.Loader.dll": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": { "assemblyVersion": "4.0.1.0", "fileVersion": "4.6.24705.1" } } }, - "System.Security.AccessControl/6.0.0": { + "System.Security.Cryptography.ProtectedData/6.0.0": { "runtime": { - "lib/net6.0/System.Security.AccessControl.dll": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { "assemblyVersion": "6.0.0.0", "fileVersion": "6.0.21.52210" } }, "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { "rid": "win", "assetType": "runtime", "assemblyVersion": "6.0.0.0", @@ -1167,35 +2875,58 @@ } } }, - "System.Security.Cryptography.Cng/4.5.0": { - "runtime": { - "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { - "assemblyVersion": "4.3.1.0", - "fileVersion": "4.6.26515.6" - } + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.1", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" }, "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.1.1.0", + "fileVersion": "4.6.24705.1" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { "rid": "win", "assetType": "runtime", - "assemblyVersion": "4.3.1.0", - "fileVersion": "4.6.26515.6" + "assemblyVersion": "4.1.1.0", + "fileVersion": "4.6.24705.1" } } }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "runtime": { - "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } + "System.Security.Cryptography.Xml/4.7.0": { + "dependencies": { + "System.Security.Cryptography.Pkcs": "6.0.1", + "System.Security.Permissions": "6.0.0" }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.Xml.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" } } }, @@ -1233,81 +2964,184 @@ } } }, + "System.ServiceModel.Duplex/4.8.1": { + "dependencies": { + "System.Private.ServiceModel": "4.8.1", + "System.ServiceModel.Primitives": "4.8.1" + }, + "runtime": { + "lib/netstandard2.0/System.ServiceModel.Duplex.dll": { + "assemblyVersion": "4.8.1.0", + "fileVersion": "4.800.121.7802" + } + } + }, + "System.ServiceModel.Http/4.8.1": { + "dependencies": { + "System.Private.ServiceModel": "4.8.1", + "System.ServiceModel.Primitives": "4.8.1" + }, + "runtime": { + "lib/netstandard2.0/System.ServiceModel.Http.dll": { + "assemblyVersion": "4.8.1.0", + "fileVersion": "4.800.121.7802" + } + } + }, + "System.ServiceModel.NetTcp/4.8.1": { + "dependencies": { + "System.Private.ServiceModel": "4.8.1", + "System.ServiceModel.Primitives": "4.8.1" + }, + "runtime": { + "lib/netstandard2.0/System.ServiceModel.NetTcp.dll": { + "assemblyVersion": "4.8.1.0", + "fileVersion": "4.800.121.7802" + } + } + }, + "System.ServiceModel.Primitives/4.8.1": { + "dependencies": { + "System.Private.ServiceModel": "4.8.1" + }, + "runtime": { + "lib/netcoreapp2.1/System.ServiceModel.Primitives.dll": { + "assemblyVersion": "4.8.1.0", + "fileVersion": "4.800.121.7802" + }, + "lib/netcoreapp2.1/System.ServiceModel.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.800.121.7802" + } + } + }, + "System.ServiceModel.Security/4.8.1": { + "dependencies": { + "System.Private.ServiceModel": "4.8.1", + "System.ServiceModel.Primitives": "4.8.1" + }, + "runtime": { + "lib/netstandard2.0/System.ServiceModel.Security.dll": { + "assemblyVersion": "4.8.1.0", + "fileVersion": "4.800.121.7802" + } + } + }, "System.Text.Encoding/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.1" } }, - "System.Text.Encoding.CodePages/5.0.0": { + "System.Text.Encoding.CodePages/6.0.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0" + "System.Runtime.CompilerServices.Unsafe": "6.0.0" }, "runtime": { - "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" + "lib/net6.0/System.Text.Encoding.CodePages.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" } }, "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { + "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll": { "rid": "win", "assetType": "runtime", - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" } } }, - "System.Text.Encodings.Web/7.0.0": { + "System.Text.Encodings.Web/6.0.0": { "dependencies": { "System.Runtime.CompilerServices.Unsafe": "6.0.0" }, "runtime": { "lib/net6.0/System.Text.Encodings.Web.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51805" + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" } }, "runtimeTargets": { "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": { "rid": "browser", "assetType": "runtime", - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51805" + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" } } }, - "System.Text.Json/7.0.0": { + "System.Text.Json/6.0.9": { "dependencies": { "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encodings.Web": "7.0.0" + "System.Text.Encodings.Web": "6.0.0" }, "runtime": { "lib/net6.0/System.Text.Json.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51805" + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" } } }, - "System.Text.RegularExpressions/4.3.0": { + "System.Text.RegularExpressions/4.3.1": { "dependencies": { - "System.Runtime": "4.3.0" + "System.Runtime": "4.3.1" }, "runtime": { "lib/netstandard1.6/System.Text.RegularExpressions.dll": { - "assemblyVersion": "4.1.1.0", + "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/net6.0/System.Threading.Channels.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, "System.Threading.Tasks/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.1" + } + }, + "System.Threading.Tasks.Extensions/4.5.4": {}, + "System.Threading.Tasks.Parallel/4.3.0": { + "dependencies": { + "System.Collections.Concurrent": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.1", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } } }, + "System.ValueTuple/4.4.0": {}, "System.Windows.Extensions/6.0.0": { "dependencies": { "System.Drawing.Common": "6.0.0" @@ -1326,10 +3160,33 @@ "fileVersion": "6.0.21.52210" } } + }, + "Tencent.QCloud.Cos.Sdk/5.4.32": { + "runtime": { + "lib/netstandard2.0/COSXML.dll": { + "assemblyVersion": "5.4.32.0", + "fileVersion": "5.4.32.0" + } + } + }, + "Yitter.IdGenerator/1.0.14": { + "runtime": { + "lib/netstandard2.0/Yitter.IdGenerator.dll": { + "assemblyVersion": "1.0.14.0", + "fileVersion": "1.0.14.0" + } + } } } }, "libraries": { + "Aliyun.OSS.SDK.NetCore/2.13.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ElvJwTAdBqFmgb7K4PdxDXPFbOBCIUI5OvCOMfCoUoDL21aivtWMFUtU1v4Dxc2wcrN8XQdY1EKeGFhJK/zVyQ==", + "path": "aliyun.oss.sdk.netcore/2.13.0", + "hashPath": "aliyun.oss.sdk.netcore.2.13.0.nupkg.sha512" + }, "Autofac/7.1.0": { "type": "package", "serviceable": true, @@ -1340,16 +3197,37 @@ "Autofac.Extensions.DependencyInjection/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-nGrXNpQX2FiZpIBydK9cxZnnoqP/cUd3k/53uRERYEqLtWzKtE15R6L+j5q5ax5Rv/+3wAIkOaPePkahfqrwjg==", - "path": "autofac.extensions.dependencyinjection/8.0.0", - "hashPath": "autofac.extensions.dependencyinjection.8.0.0.nupkg.sha512" + "sha512": "sha512-nGrXNpQX2FiZpIBydK9cxZnnoqP/cUd3k/53uRERYEqLtWzKtE15R6L+j5q5ax5Rv/+3wAIkOaPePkahfqrwjg==", + "path": "autofac.extensions.dependencyinjection/8.0.0", + "hashPath": "autofac.extensions.dependencyinjection.8.0.0.nupkg.sha512" + }, + "AutoMapper/12.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hvV62vl6Hp/WfQ24yzo3Co9+OPl8wH8hApwVtgWpiAynVJkUcs7xvehnSftawL8Pe8FrPffBRM3hwzLQqWDNjA==", + "path": "automapper/12.0.1", + "hashPath": "automapper.12.0.1.nupkg.sha512" + }, + "Ben.Demystifier/0.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-axFeEMfmEORy3ipAzOXG/lE+KcNptRbei3F0C4kQCdeiQtW+qJW90K5iIovITGrdLt8AjhNCwk5qLSX9/rFpoA==", + "path": "ben.demystifier/0.4.1", + "hashPath": "ben.demystifier.0.4.1.nupkg.sha512" + }, + "BouncyCastle/1.8.9": { + "type": "package", + "serviceable": true, + "sha512": "sha512-axnBgvdD5n+FnEG6efk/tfKuMFru7R/EoISH9zjh319yb3HD24TEHSAbNN/lTRT2ulOGRxDgOsCjkuk08iwWPg==", + "path": "bouncycastle/1.8.9", + "hashPath": "bouncycastle.1.8.9.nupkg.sha512" }, - "AutoMapper/12.0.1": { + "Crc32.NET/1.2.0": { "type": "package", "serviceable": true, - "sha512": "sha512-hvV62vl6Hp/WfQ24yzo3Co9+OPl8wH8hApwVtgWpiAynVJkUcs7xvehnSftawL8Pe8FrPffBRM3hwzLQqWDNjA==", - "path": "automapper/12.0.1", - "hashPath": "automapper.12.0.1.nupkg.sha512" + "sha512": "sha512-wNW/huzolu8MNKUnwCVKxjfAlCFpeI8AZVfF46iAWJ1+P6bTU1AZct7VAkDDEjgeeTJCVTkGZaD6jSd/fOiUkA==", + "path": "crc32.net/1.2.0", + "hashPath": "crc32.net.1.2.0.nupkg.sha512" }, "DotNetty.Buffers/0.7.5": { "type": "package", @@ -1393,6 +3271,41 @@ "path": "dotnetty.transport/0.7.5", "hashPath": "dotnetty.transport.0.7.5.nupkg.sha512" }, + "DynamicExpresso.Core/2.3.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-p6GEP3BphaT9xa59VjpQeozkloXjcDmoL6aPXOInl5S5chWtB82H+GiirV3H1bP39ZeXX2e1UN0w7/pD1wCUlg==", + "path": "dynamicexpresso.core/2.3.3", + "hashPath": "dynamicexpresso.core.2.3.3.nupkg.sha512" + }, + "Furion.Extras.Authentication.JwtBearer/4.9.3.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CYmyHymTHRZ2sa9EyH/1keda0fX7MaZH0CUwfs0XQ3Sv8wzOGHHqHlDxF4xgahgdtnPJtMLf+wVzhYYcWHT6Lw==", + "path": "furion.extras.authentication.jwtbearer/4.9.3.4", + "hashPath": "furion.extras.authentication.jwtbearer.4.9.3.4.nupkg.sha512" + }, + "Furion.Extras.ObjectMapper.Mapster/4.9.3.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tDkH2TEaYk1UA0tsnBurg32pyEUYUtGFdv4T1tan7ZoFH5A0r7ZSa3KS2YTyaWwPvNuVq9hoqWZcknBuPUIpPA==", + "path": "furion.extras.objectmapper.mapster/4.9.3.4", + "hashPath": "furion.extras.objectmapper.mapster.4.9.3.4.nupkg.sha512" + }, + "Furion.Pure/4.9.3.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-S+iMhE0ooWaoriMc+9j9L1Ab4PIkLd3nr6qjJ6dM9uR4TDGOiO5825SyP4lo/YE42J5ZmGw6PDmXJB+ngzzjUw==", + "path": "furion.pure/4.9.3.4", + "hashPath": "furion.pure.4.9.3.4.nupkg.sha512" + }, + "Furion.Pure.Extras.DependencyModel.CodeAnalysis/4.9.3.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Oq9oyRkFndesTxFDCDbBz7cjSkiF3FxJru5mztwKPMdMRiy67G0HYOr4gNqD2KWChRlrNUkgImflM6KDea6S/A==", + "path": "furion.pure.extras.dependencymodel.codeanalysis/4.9.3.4", + "hashPath": "furion.pure.extras.dependencymodel.codeanalysis.4.9.3.4.nupkg.sha512" + }, "HslCommunication/11.1.1": { "type": "package", "serviceable": true, @@ -1400,6 +3313,20 @@ "path": "hslcommunication/11.1.1", "hashPath": "hslcommunication.11.1.1.nupkg.sha512" }, + "Humanizer.Core/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", + "path": "humanizer.core/2.14.1", + "hashPath": "humanizer.core.2.14.1.nupkg.sha512" + }, + "Lazy.Captcha.Core/2.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ObuvzWnZzb8Ix3iABXknggnSE4j+/06BpNRGO2rig60/8bWvnyRpnI0Ht5ubjz21JFpA35QczO+w1sx5Kd4DIg==", + "path": "lazy.captcha.core/2.0.6", + "hashPath": "lazy.captcha.core.2.0.6.nupkg.sha512" + }, "log4net/2.0.15": { "type": "package", "serviceable": true, @@ -1407,6 +3334,167 @@ "path": "log4net/2.0.15", "hashPath": "log4net.2.0.15.nupkg.sha512" }, + "Magicodes.IE.Core/2.7.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QokgLic4DJrqj5oDKHR+86+ZW1HfbJ4l/hzWUYIe3tPjPLsjH+dD7KvVBMiuZtvWCxwiUURF7j3rL/8Cpk+FqA==", + "path": "magicodes.ie.core/2.7.5.1", + "hashPath": "magicodes.ie.core.2.7.5.1.nupkg.sha512" + }, + "Magicodes.IE.EPPlus/2.7.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9VSY9Gy+E9VyIn/iDsrAhrJx4Xea0gB7BdyEIHsYUYYLJKWE/QK2HYa6tTi8Torltu828wSwZTwYkl59+XJWew==", + "path": "magicodes.ie.epplus/2.7.5.1", + "hashPath": "magicodes.ie.epplus.2.7.5.1.nupkg.sha512" + }, + "Magicodes.IE.Excel/2.7.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vfbicVe78YHlQ6RxWo62P5IDyRoJIRJkLMmB6U09TjJ6JDr/kVO9AOJRA+hHnrzXI6C75UQ3JOesHRtz4tTRTg==", + "path": "magicodes.ie.excel/2.7.5.1", + "hashPath": "magicodes.ie.excel.2.7.5.1.nupkg.sha512" + }, + "Mapster/7.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RYGoDqvS4WTKIq0HDyPBBVIj6N0mluOCXQ1Vk95JKseMHEsbCXSEGKSlP95oL+s42IXAXbqvHj7p0YaRBUcfqg==", + "path": "mapster/7.4.0", + "hashPath": "mapster.7.4.0.nupkg.sha512" + }, + "Mapster.Core/1.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-11lokmfliBEMMmjeqxFGNpqGXq6tN96zFqpBmfYeahr4Ybk63oDmeJmOflsATjobYkX248g5Y62oQ2NNnZaeww==", + "path": "mapster.core/1.2.1", + "hashPath": "mapster.core.1.2.1.nupkg.sha512" + }, + "Mapster.DependencyInjection/1.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LfjnRIwx6WAo3ssq8PFeaHFaUz00BfSG9BhWgXsiDa3H5lDhG0lpMGDF6w2ZnooS4eHYmAv4f77VxmzpvgorNg==", + "path": "mapster.dependencyinjection/1.0.1", + "hashPath": "mapster.dependencyinjection.1.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/6.0.30": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PPB0+6RD4V5mHlpd4K95S+IuOsfzmnrjKxOhUysF+/9gP6bPasahC3GxOfN/yGKBhuPoyyJVSx18uUrZ+9UeNw==", + "path": "microsoft.aspnetcore.authentication.jwtbearer/6.0.30", + "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.6.0.30.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==", + "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==", + "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http/2.1.34": { + "type": "package", + "serviceable": true, + "sha512": "sha512-d1U34fyniRrDW0SD7KryDhXq1KWEjeE1XuLgk/qcdFHUjkjY6XztmhEmQJicGlPYKEZOe+3UMWz5EZChLwnrvQ==", + "path": "microsoft.aspnetcore.http/2.1.34", + "hashPath": "microsoft.aspnetcore.http.2.1.34.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", + "path": "microsoft.aspnetcore.http.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==", + "path": "microsoft.aspnetcore.http.extensions/2.2.0", + "hashPath": "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.JsonPatch/6.0.30": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cntd2pwQKG3r5t4mjwlaeQ9NtLdakdvvjuCIjWLfhIMrN36d7VlsL9CN31Vn/Gfcj5xypoBIj+PiL2qNNrdfKQ==", + "path": "microsoft.aspnetcore.jsonpatch/6.0.30", + "hashPath": "microsoft.aspnetcore.jsonpatch.6.0.30.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/6.0.30": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M8e2HlWvaTKbIVPyWkOMD63LK1qO+Kt2cLbW64sGORLRpWljqwJGXpRemrfkegliaOyUFi+O5bBbxRagbcdDFg==", + "path": "microsoft.aspnetcore.mvc.newtonsoftjson/6.0.30", + "hashPath": "microsoft.aspnetcore.mvc.newtonsoftjson.6.0.30.nupkg.sha512" + }, + "Microsoft.AspNetCore.Razor.Language/6.0.30": { + "type": "package", + "serviceable": true, + "sha512": "sha512-A2eZq0TTffjmGl8kjTiFGA4mVBhO4OFuj2OOMd3hfeMfspK+donDH4kS2lNTi62eqBFiTVP7nEIqZrxb3eSD3Q==", + "path": "microsoft.aspnetcore.razor.language/6.0.30", + "hashPath": "microsoft.aspnetcore.razor.language.6.0.30.nupkg.sha512" + }, + "Microsoft.AspNetCore.StaticFiles/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-byZDrjir6Co5EoWbraQyG0qbPCUG6XgGYQstipMF9lucOAjq/mqnIyt8B8iMWnin/ghZoOln9Y01af4rUAwOhA==", + "path": "microsoft.aspnetcore.staticfiles/2.2.0", + "hashPath": "microsoft.aspnetcore.staticfiles.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.WebUtilities/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PGKIZt4+412Z/XPoSjvYu/QIbTxcAQuEFNoA1Pw8a9mgmO0ZhNBmfaNyhgXFf7Rq62kP0tT/2WXpxdcQhkFUPA==", + "path": "microsoft.aspnetcore.webutilities/2.1.1", + "hashPath": "microsoft.aspnetcore.webutilities.2.1.1.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AxkxcPR+rheX0SmvpLVIGLhOUXAKG56a64kV9VQZ4y9gR9ZmPXnqZvHJnmwLSwzrEP6junUF11vuc+aqo5r68g==", + "path": "microsoft.codeanalysis.analyzers/3.3.4", + "hashPath": "microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/4.9.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M5PThug7b2AdxL7xKmQs50KzAQTl9jENw5jMT3iUt16k+DAFlw1S87juU3UuPs3gvBm8trMBSOEvSFDr31c9Vw==", + "path": "microsoft.codeanalysis.common/4.9.2", + "hashPath": "microsoft.codeanalysis.common.4.9.2.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/4.9.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HGIo7E9Mf3exAJbUdYpDFfLoYkSVaHDJXPyusWTYUTBaOPCowGw+Gap5McE1w+K+ryIXre72oiqL88sQHmHBmg==", + "path": "microsoft.codeanalysis.csharp/4.9.2", + "hashPath": "microsoft.codeanalysis.csharp.4.9.2.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.9.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c74oxEil3fiZ3nXchnIgY6mXS4roHGiQBT6p3X6dMWokVqluHiqi3PNcXyxH8N/w28rQeXprF3mca83rPPNrMw==", + "path": "microsoft.codeanalysis.csharp.workspaces/4.9.2", + "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.9.2.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.9.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sgBlkBjKwUdpbtwM7SnBdOxvQxuaTtO9F8QgvKY5cH/OnlwDTZqmkK8hfDbhxv9wnN2wME10BL2vIv1fLJwFGA==", + "path": "microsoft.codeanalysis.workspaces.common/4.9.2", + "hashPath": "microsoft.codeanalysis.workspaces.common.4.9.2.nupkg.sha512" + }, "Microsoft.CSharp/4.7.0": { "type": "package", "serviceable": true, @@ -1449,40 +3537,40 @@ "path": "microsoft.extensions.apidescription.server/6.0.5", "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512" }, - "Microsoft.Extensions.Configuration/7.0.0": { + "Microsoft.Extensions.Caching.Abstractions/6.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-tldQUBWt/xeH2K7/hMPPo5g8zuLc3Ro9I5d4o/XrxvxOCA2EZBtW7bCHHTc49fcBtvB8tLAb/Qsmfrq+2SJ4vA==", - "path": "microsoft.extensions.configuration/7.0.0", - "hashPath": "microsoft.extensions.configuration.7.0.0.nupkg.sha512" + "sha512": "sha512-bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==", + "path": "microsoft.extensions.caching.abstractions/6.0.0", + "hashPath": "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512" }, - "Microsoft.Extensions.Configuration.Abstractions/7.0.0": { + "Microsoft.Extensions.Caching.Memory/6.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-f34u2eaqIjNO9YLHBz8rozVZ+TcFiFs0F3r7nUJd7FRkVSxk8u4OpoK226mi49MwexHOR2ibP9MFvRUaLilcQQ==", - "path": "microsoft.extensions.configuration.abstractions/7.0.0", - "hashPath": "microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512" + "sha512": "sha512-B4y+Cev05eMcjf1na0v9gza6GUtahXbtY1JCypIgx3B4Ea/KAgsWyXEmW4q6zMbmTMtKzmPVk09rvFJirvMwTg==", + "path": "microsoft.extensions.caching.memory/6.0.1", + "hashPath": "microsoft.extensions.caching.memory.6.0.1.nupkg.sha512" }, - "Microsoft.Extensions.Configuration.FileExtensions/7.0.0": { + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-xk2lRJ1RDuqe57BmgvRPyCt6zyePKUmvT6iuXqiHR+/OIIgWVR8Ff5k2p6DwmqY8a17hx/OnrekEhziEIeQP6Q==", - "path": "microsoft.extensions.configuration.fileextensions/7.0.0", - "hashPath": "microsoft.extensions.configuration.fileextensions.7.0.0.nupkg.sha512" + "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512" }, - "Microsoft.Extensions.Configuration.Json/7.0.0": { + "Microsoft.Extensions.Configuration.Binder/6.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-LDNYe3uw76W35Jci+be4LDf2lkQZe0A7EEYQVChFbc509CpZ4Iupod8li4PUXPBhEUOFI/rlQNf5xkzJRQGvtA==", - "path": "microsoft.extensions.configuration.json/7.0.0", - "hashPath": "microsoft.extensions.configuration.json.7.0.0.nupkg.sha512" + "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512" }, - "Microsoft.Extensions.DependencyInjection/5.0.0": { + "Microsoft.Extensions.DependencyInjection/6.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==", - "path": "microsoft.extensions.dependencyinjection/5.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512" + "sha512": "sha512-vWXPg3HJQIpZkENn1KWq8SfbqVujVD7S7vIAyFXXqK5xkf1Vho+vG0bLBCHxU36lD1cLLtmGpfYf0B3MYFi9tQ==", + "path": "microsoft.extensions.dependencyinjection/6.0.1", + "hashPath": "microsoft.extensions.dependencyinjection.6.0.1.nupkg.sha512" }, "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { "type": "package", @@ -1491,201 +3579,481 @@ "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" }, - "Microsoft.Extensions.FileProviders.Abstractions/7.0.0": { + "Microsoft.Extensions.DependencyModel/6.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-NyawiW9ZT/liQb34k9YqBSNPLuuPkrjMgQZ24Y/xXX1RoiBkLUdPMaQTmxhZ5TYu8ZKZ9qayzil75JX95vGQUg==", - "path": "microsoft.extensions.fileproviders.abstractions/7.0.0", - "hashPath": "microsoft.extensions.fileproviders.abstractions.7.0.0.nupkg.sha512" + "sha512": "sha512-TD5QHg98m3+QhgEV1YVoNMl5KtBw/4rjfxLHO0e/YV9bPUBDKntApP4xdrVtGgCeQZHVfC2EXIGsdpRNrr87Pg==", + "path": "microsoft.extensions.dependencymodel/6.0.0", + "hashPath": "microsoft.extensions.dependencymodel.6.0.0.nupkg.sha512" }, - "Microsoft.Extensions.FileProviders.Physical/7.0.0": { + "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { "type": "package", "serviceable": true, - "sha512": "sha512-K8D2MTR+EtzkbZ8z80LrG7Ur64R7ZZdRLt1J5cgpc/pUWl0C6IkAUapPuK28oionHueCPELUqq0oYEvZfalNdg==", - "path": "microsoft.extensions.fileproviders.physical/7.0.0", - "hashPath": "microsoft.extensions.fileproviders.physical.7.0.0.nupkg.sha512" + "sha512": "sha512-EcnaSsPTqx2MGnHrmWOD0ugbuuqVT8iICqSqPzi45V5/MA1LjUNb0kwgcxBGqizV1R+WeBK7/Gw25Jzkyk9bIw==", + "path": "microsoft.extensions.fileproviders.abstractions/2.2.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512" }, - "Microsoft.Extensions.FileSystemGlobbing/7.0.0": { + "Microsoft.Extensions.Hosting.Abstractions/2.2.0": { "type": "package", "serviceable": true, - "sha512": "sha512-2jONjKHiF+E92ynz2ZFcr9OvxIw+rTGMPEH+UZGeHTEComVav93jQUWGkso8yWwVBcEJGcNcZAaqY01FFJcj7w==", - "path": "microsoft.extensions.filesystemglobbing/7.0.0", - "hashPath": "microsoft.extensions.filesystemglobbing.7.0.0.nupkg.sha512" + "sha512": "sha512-+k4AEn68HOJat5gj1TWa6X28WlirNQO9sPIIeQbia+91n03esEtMSSoekSTpMjUzjqtJWQN3McVx0GvSPFHF/Q==", + "path": "microsoft.extensions.hosting.abstractions/2.2.0", + "hashPath": "microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512" }, "Microsoft.Extensions.Logging/5.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==", - "path": "microsoft.extensions.logging/5.0.0", - "hashPath": "microsoft.extensions.logging.5.0.0.nupkg.sha512" + "sha512": "sha512-MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==", + "path": "microsoft.extensions.logging/5.0.0", + "hashPath": "microsoft.extensions.logging.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", + "path": "microsoft.extensions.logging.abstractions/6.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.ObjectPool/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SErON45qh4ogDp6lr6UvVmFYW0FERihW+IQ+2JyFv1PUyWktcJytFaWH5zarufJvZwhci7Rf1IyGXr9pVEadTw==", + "path": "microsoft.extensions.objectpool/2.1.1", + "hashPath": "microsoft.extensions.objectpool.2.1.1.nupkg.sha512" + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "path": "microsoft.extensions.options/6.0.0", + "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bXWINbTn0vC0FYc9GaQTISbxhQLAMrvtbuvD9N6JelEaIS/Pr62wUCinrq5bf1WRBGczt1v4wDhxFtVFNcMdUQ==", + "path": "microsoft.extensions.options.configurationextensions/6.0.0", + "hashPath": "microsoft.extensions.options.configurationextensions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "path": "microsoft.extensions.primitives/6.0.0", + "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.WebEncoders/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V8XcqYcpcdBAxUhLeyYcuKmxu4CtNQA9IphTnARpQGhkop4A93v2XgM3AtaVVJo3H2cDWxWM6aeO8HxkifREqw==", + "path": "microsoft.extensions.webencoders/2.2.0", + "hashPath": "microsoft.extensions.webencoders.2.2.0.nupkg.sha512" + }, + "Microsoft.Identity.Client/4.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==", + "path": "microsoft.identity.client/4.21.1", + "hashPath": "microsoft.identity.client.4.21.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Abstractions/7.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PT16ZFbPIiMsYv07oy3zOjqUOJ7xutGBkJTOX0+IbNyU6+O6X7aIxjq9EaSSRLWbekRgamgtmfg8Xjw6A6Ua9g==", + "path": "microsoft.identitymodel.abstractions/7.5.1", + "hashPath": "microsoft.identitymodel.abstractions.7.5.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/7.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-93CGSa8RPdZU8zfvA3nf9NGKUqEnQrE12VzYlMqKh72ddhzusosqLNEUgH/YhFWBLRFOnY1RCgHMV7pR+sAx2w==", + "path": "microsoft.identitymodel.jsonwebtokens/7.5.1", + "hashPath": "microsoft.identitymodel.jsonwebtokens.7.5.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/7.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PnpAQX20BAiDIPYmWUyQSlEaWD8BLXzHpiDGTCT568Cs0ReOeyzNe401LzCeiv6ilug/KefVeV1CeqtCHTo8dw==", + "path": "microsoft.identitymodel.logging/7.5.1", + "hashPath": "microsoft.identitymodel.logging.7.5.1.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/7.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q3DKpyFViP84IUlTFKH/zIkswIrmSh2Vd/eFDo4wlOHy4DYxoweZEEw4kDEiKt9VCX6o7SddK3HK2xDYyFpexA==", + "path": "microsoft.identitymodel.tokens/7.5.1", + "hashPath": "microsoft.identitymodel.tokens.7.5.1.nupkg.sha512" + }, + "Microsoft.IO.RecyclableMemoryStream/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BTrXL3Ej17x+aze3xbso4xn16ajFaBU1YKQypzrirX4attETZnqCXLB+yRwo1hsZsP1U0O6mNCPuSdccTHCrBg==", + "path": "microsoft.io.recyclablememorystream/2.1.1", + "hashPath": "microsoft.io.recyclablememorystream.2.1.1.nupkg.sha512" + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==", + "path": "microsoft.net.http.headers/2.2.0", + "hashPath": "microsoft.net.http.headers.2.2.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.OpenApi/1.6.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tTaBT8qjk3xINfESyOPE2rIellPvB7qpVqiWiyA/lACVvz+xOGiXhFUfohcx82NLbi5avzLW0lx+s6oAqQijfw==", + "path": "microsoft.openapi/1.6.14", + "hashPath": "microsoft.openapi.1.6.14.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "path": "microsoft.win32.systemevents/6.0.0", + "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" + }, + "Minio/4.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4ObwKr/GQ1i1vvGroII2dWOhPWnfoWh9ZNPuaWcmG0Opr1vqKEqLOkz6xyUFpCU1y24od/xgFuFybzWeAv8q6A==", + "path": "minio/4.0.5", + "hashPath": "minio.4.0.5.nupkg.sha512" + }, + "MiniProfiler.AspNetCore/4.3.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dohMvXpjKDPv/edl7gwKhq80JBqRLLRSwVJB9bo0UYqsgEox7BZyYS/4vBty+UsZ59pYYYhMUpUKHVWLLj/PBw==", + "path": "miniprofiler.aspnetcore/4.3.8", + "hashPath": "miniprofiler.aspnetcore.4.3.8.nupkg.sha512" + }, + "MiniProfiler.AspNetCore.Mvc/4.3.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aJ6Kkw2zMy36cKDWTjQYo/pJ6bhPBRA8z4NO8REe+xDhv8+fk58P526Bi52gnvsDp4jIVk5AQ8nQDgPUS/K+7A==", + "path": "miniprofiler.aspnetcore.mvc/4.3.8", + "hashPath": "miniprofiler.aspnetcore.mvc.4.3.8.nupkg.sha512" + }, + "MiniProfiler.Shared/4.3.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SfXNX90fmDm373YAla0z06plTCj6YbByQJOm6G8/9kE6Hf4UALJxySyiMB9O4KYeTc6Ha1EFQDs6jLhio+bBFA==", + "path": "miniprofiler.shared/4.3.8", + "hashPath": "miniprofiler.shared.4.3.8.nupkg.sha512" + }, + "MQTTnet/3.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-074AmNXQSs6S3vKyWqYIVvVCeyydCYhOLqfTfRXTaOihQTLAeKRnZh8c3Xhsvct4Rn+tCORFpUdLE35lH4c5Aw==", + "path": "mqttnet/3.1.2", + "hashPath": "mqttnet.3.1.2.nupkg.sha512" + }, + "MQTTnet.AspNetCore/3.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZNRmoKqxyE7MbkNtSo8TRzi59K9JUv/7li7CzSlShiUxDdus823o3nhz0RnBl3kD2tlVn57Qlo4Ao4cWSyoAQg==", + "path": "mqttnet.aspnetcore/3.1.2", + "hashPath": "mqttnet.aspnetcore.3.1.2.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" + }, + "NETStandard.Library/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7jnbRU+L08FXKMxqUflxEXtVymWvNOrS8yHgu9s6EM8Anr6T/wIX4nZ08j/u3Asz+tCufp3YVwFSEvFTPYmBPA==", + "path": "netstandard.library/2.0.0", + "hashPath": "netstandard.library.2.0.0.nupkg.sha512" + }, + "NewLife.Core/10.9.2024.402": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NCFfgyL0AfYQCJYlkwPO8P00U9aANQlFqEV4+PXBZ0D8p3FfCHoUz+gj2ZvicAtNAAQzrmXh9IueZPewqdNnjA==", + "path": "newlife.core/10.9.2024.402", + "hashPath": "newlife.core.10.9.2024.402.nupkg.sha512" + }, + "NewLife.Redis/5.6.2024.402": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZFB+7+7D7MtZhJyMNJv6ujdclh/N4Gg1zNEtvrP4zdtJAGRj5K3ADF8BnedEcfys6XpHUksmevb1AGIj5MtMMw==", + "path": "newlife.redis/5.6.2024.402", + "hashPath": "newlife.redis.5.6.2024.402.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "path": "newtonsoft.json/13.0.3", + "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" + }, + "Newtonsoft.Json.Bson/1.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", + "path": "newtonsoft.json.bson/1.0.2", + "hashPath": "newtonsoft.json.bson.1.0.2.nupkg.sha512" + }, + "Npgsql/5.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", + "path": "npgsql/5.0.7", + "hashPath": "npgsql.5.0.7.nupkg.sha512" + }, + "OnceMi.AspNetCore.OSS/1.1.9": { + "type": "package", + "serviceable": true, + "sha512": "sha512-p7Irrka/wJfe8z91GnkYXbLfzU0uYyudRX9gGy7LOorye+FxVxp1dZaLRqsUxQgg/UBNbHtRXzsQtw9U0BfF+A==", + "path": "oncemi.aspnetcore.oss/1.1.9", + "hashPath": "oncemi.aspnetcore.oss.1.1.9.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" + }, + "Pipelines.Sockets.Unofficial/2.2.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zG2FApP5zxSx6OcdJQLbZDk2AVlN2BNQD6MorwIfV6gVj0RRxWPEp2LXAxqDGZqeNV1Zp0BNPcNaey/GXmTdvQ==", + "path": "pipelines.sockets.unofficial/2.2.8", + "hashPath": "pipelines.sockets.unofficial.2.2.8.nupkg.sha512" + }, + "Qiniu/8.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2M5f97N9alJMcl5SqmeyK+S2qY0hzKoONo4RvTd/NWuIXOdIqR2621sLfbIWLr59eXN1Y4YB3q9izRD6xdc/xg==", + "path": "qiniu/8.2.0", + "hashPath": "qiniu.8.2.0.nupkg.sha512" + }, + "Quartz/3.8.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HlKm+43iG8LmXfejL1kIijO107x8ozEShLT2PFIkOWNSHUj7O7yTl6icFrn6DocPvigudQ90a6h2gdFShOwyXw==", + "path": "quartz/3.8.1", + "hashPath": "quartz.3.8.1.nupkg.sha512" + }, + "Quartz.Serialization.Json/3.8.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lrQOeR/F61pZDFKzFbOcQblSIhzwY6501D/SGrUafiwWSQUItKKDnjbcbGodCTKSfWvshblP6hohzEKdOw57kw==", + "path": "quartz.serialization.json/3.8.1", + "hashPath": "quartz.serialization.json.3.8.1.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" }, - "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { "type": "package", "serviceable": true, - "sha512": "sha512-/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", - "path": "microsoft.extensions.logging.abstractions/6.0.0", - "hashPath": "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512" + "sha512": "sha512-0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" }, - "Microsoft.Extensions.Options/5.0.0": { + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { "type": "package", "serviceable": true, - "sha512": "sha512-CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==", - "path": "microsoft.extensions.options/5.0.0", - "hashPath": "microsoft.extensions.options.5.0.0.nupkg.sha512" + "sha512": "sha512-G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" }, - "Microsoft.Extensions.Primitives/7.0.0": { + "runtime.linux-arm.runtime.native.System.IO.Ports/4.7.0": { "type": "package", "serviceable": true, - "sha512": "sha512-um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==", - "path": "microsoft.extensions.primitives/7.0.0", - "hashPath": "microsoft.extensions.primitives.7.0.0.nupkg.sha512" + "sha512": "sha512-pCaX07mRrO11GfUb+whjn2AJgCofx26slw0sI3XC9v0pEZO8101iK6q4ymZOiI2M4a9sQxLr2LawAEDvF4RNXg==", + "path": "runtime.linux-arm.runtime.native.system.io.ports/4.7.0", + "hashPath": "runtime.linux-arm.runtime.native.system.io.ports.4.7.0.nupkg.sha512" }, - "Microsoft.Identity.Client/4.21.1": { + "runtime.linux-arm64.runtime.native.System.IO.Ports/4.7.0": { "type": "package", "serviceable": true, - "sha512": "sha512-vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==", - "path": "microsoft.identity.client/4.21.1", - "hashPath": "microsoft.identity.client.4.21.1.nupkg.sha512" + "sha512": "sha512-/J6A4bexUUJciGUwrhtzrFW4tIHqoJYlCsz5RudRmqUaqvuG2tjrbn6bEopOFs7CU4gZqAKWcU9pkp180c3DkQ==", + "path": "runtime.linux-arm64.runtime.native.system.io.ports/4.7.0", + "hashPath": "runtime.linux-arm64.runtime.native.system.io.ports.4.7.0.nupkg.sha512" }, - "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "runtime.linux-x64.runtime.native.System.IO.Ports/4.7.0": { "type": "package", "serviceable": true, - "sha512": "sha512-+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==", - "path": "microsoft.identitymodel.jsonwebtokens/6.8.0", - "hashPath": "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512" + "sha512": "sha512-aaaiH4ttfkLizo0OKf++5kPN0yxKbgzcyAD3w52Y3YP96aB/M79fm0r06SedXJGv86Iou6ipj3wUQBMFaL8LnQ==", + "path": "runtime.linux-x64.runtime.native.system.io.ports/4.7.0", + "hashPath": "runtime.linux-x64.runtime.native.system.io.ports.4.7.0.nupkg.sha512" }, - "Microsoft.IdentityModel.Logging/6.8.0": { + "runtime.native.System/4.3.0": { "type": "package", "serviceable": true, - "sha512": "sha512-Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==", - "path": "microsoft.identitymodel.logging/6.8.0", - "hashPath": "microsoft.identitymodel.logging.6.8.0.nupkg.sha512" + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" }, - "Microsoft.IdentityModel.Protocols/6.8.0": { + "runtime.native.System.IO.Ports/4.7.0": { "type": "package", "serviceable": true, - "sha512": "sha512-OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==", - "path": "microsoft.identitymodel.protocols/6.8.0", - "hashPath": "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512" + "sha512": "sha512-yidiZEGEIOyGnRkZvoV6XbeqzEBg9L47PyZNBymLIsu9HHseF98wiOxR6RnHmMqQMTBlc/EONfw4NT3pw0S6YQ==", + "path": "runtime.native.system.io.ports/4.7.0", + "hashPath": "runtime.native.system.io.ports.4.7.0.nupkg.sha512" }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "runtime.native.System.Net.Http/4.3.0": { "type": "package", "serviceable": true, - "sha512": "sha512-X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==", - "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0", - "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512" + "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" }, - "Microsoft.IdentityModel.Tokens/6.8.0": { + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { "type": "package", "serviceable": true, - "sha512": "sha512-gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==", - "path": "microsoft.identitymodel.tokens/6.8.0", - "hashPath": "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512" + "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" }, - "Microsoft.NETCore.Platforms/5.0.0": { + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { "type": "package", "serviceable": true, - "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", - "path": "microsoft.netcore.platforms/5.0.0", - "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512" + "sha512": "sha512-QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" }, - "Microsoft.NETCore.Targets/1.1.0": { + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { "type": "package", "serviceable": true, - "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + "sha512": "sha512-I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" }, - "Microsoft.OpenApi/1.2.3": { + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { "type": "package", "serviceable": true, - "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", - "path": "microsoft.openapi/1.2.3", - "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" + "sha512": "sha512-1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" }, - "Microsoft.Win32.Registry/4.7.0": { + "runtime.osx-x64.runtime.native.System.IO.Ports/4.7.0": { "type": "package", "serviceable": true, - "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", - "path": "microsoft.win32.registry/4.7.0", - "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + "sha512": "sha512-c1h87v6gopjfeAu3WhVGguUhzCdpZFqX8oXrevO1ciuH4g/mFrxnzlo5POlp+TtZdQ1i8yu0ZzBMKbmX2bJJ0g==", + "path": "runtime.osx-x64.runtime.native.system.io.ports/4.7.0", + "hashPath": "runtime.osx-x64.runtime.native.system.io.ports.4.7.0.nupkg.sha512" }, - "Microsoft.Win32.SystemEvents/6.0.0": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { "type": "package", "serviceable": true, - "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", - "path": "microsoft.win32.systemevents/6.0.0", - "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" + "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" }, - "MySqlConnector/2.2.5": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { "type": "package", "serviceable": true, - "sha512": "sha512-6sinY78RvryhHwpup3awdjYO7d5hhWahb5p/1VDODJhSxJggV/sBbYuKK5IQF9TuzXABiddqUbmRfM884tqA3Q==", - "path": "mysqlconnector/2.2.5", - "hashPath": "mysqlconnector.2.2.5.nupkg.sha512" + "sha512": "sha512-6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" }, - "Newtonsoft.Json/13.0.3": { + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { "type": "package", "serviceable": true, - "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", - "path": "newtonsoft.json/13.0.3", - "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" + "sha512": "sha512-vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" }, - "Npgsql/5.0.7": { + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { "type": "package", "serviceable": true, - "sha512": "sha512-EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", - "path": "npgsql/5.0.7", - "hashPath": "npgsql.5.0.7.nupkg.sha512" + "sha512": "sha512-7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" }, - "Oracle.ManagedDataAccess.Core/3.21.100": { + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { "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" + "sha512": "sha512-xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" }, - "Pipelines.Sockets.Unofficial/2.2.8": { + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { "type": "package", "serviceable": true, - "sha512": "sha512-zG2FApP5zxSx6OcdJQLbZDk2AVlN2BNQD6MorwIfV6gVj0RRxWPEp2LXAxqDGZqeNV1Zp0BNPcNaey/GXmTdvQ==", - "path": "pipelines.sockets.unofficial/2.2.8", - "hashPath": "pipelines.sockets.unofficial.2.2.8.nupkg.sha512" + "sha512": "sha512-leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" }, - "runtime.linux-arm.runtime.native.System.IO.Ports/4.7.0": { + "SixLabors.ImageSharp/3.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-pCaX07mRrO11GfUb+whjn2AJgCofx26slw0sI3XC9v0pEZO8101iK6q4ymZOiI2M4a9sQxLr2LawAEDvF4RNXg==", - "path": "runtime.linux-arm.runtime.native.system.io.ports/4.7.0", - "hashPath": "runtime.linux-arm.runtime.native.system.io.ports.4.7.0.nupkg.sha512" + "sha512": "sha512-ETEHRfUAn/rExqdmj2GDayPkW9zr3BruO9S4WF9ULpWmdydewIjoJqinbQc+o4DsM3X0wGZPyJLlj6N3uxV/aw==", + "path": "sixlabors.imagesharp/3.0.0", + "hashPath": "sixlabors.imagesharp.3.0.0.nupkg.sha512" }, - "runtime.linux-arm64.runtime.native.System.IO.Ports/4.7.0": { + "SkiaSharp/2.88.6": { "type": "package", "serviceable": true, - "sha512": "sha512-/J6A4bexUUJciGUwrhtzrFW4tIHqoJYlCsz5RudRmqUaqvuG2tjrbn6bEopOFs7CU4gZqAKWcU9pkp180c3DkQ==", - "path": "runtime.linux-arm64.runtime.native.system.io.ports/4.7.0", - "hashPath": "runtime.linux-arm64.runtime.native.system.io.ports.4.7.0.nupkg.sha512" + "sha512": "sha512-wdfeBAQrEQCbJIRgAiargzP1Uy+0grZiG4CSgBnhAgcJTsPzlifIaO73JRdwIlT3TyBoeU9jEqzwFUhl4hTYnQ==", + "path": "skiasharp/2.88.6", + "hashPath": "skiasharp.2.88.6.nupkg.sha512" }, - "runtime.linux-x64.runtime.native.System.IO.Ports/4.7.0": { + "SkiaSharp.NativeAssets.Linux.NoDependencies/2.88.6": { "type": "package", "serviceable": true, - "sha512": "sha512-aaaiH4ttfkLizo0OKf++5kPN0yxKbgzcyAD3w52Y3YP96aB/M79fm0r06SedXJGv86Iou6ipj3wUQBMFaL8LnQ==", - "path": "runtime.linux-x64.runtime.native.system.io.ports/4.7.0", - "hashPath": "runtime.linux-x64.runtime.native.system.io.ports.4.7.0.nupkg.sha512" + "sha512": "sha512-ecgMclPor+X1wi2dZSVDo1sV2Dm8gwEKNRtS+qiE9qfnQzGHbYWlbTBWalnZBaIl3BLC21b1QO8gMgabhSAh+g==", + "path": "skiasharp.nativeassets.linux.nodependencies/2.88.6", + "hashPath": "skiasharp.nativeassets.linux.nodependencies.2.88.6.nupkg.sha512" }, - "runtime.native.System.IO.Ports/4.7.0": { + "SkiaSharp.NativeAssets.macOS/2.88.6": { "type": "package", "serviceable": true, - "sha512": "sha512-yidiZEGEIOyGnRkZvoV6XbeqzEBg9L47PyZNBymLIsu9HHseF98wiOxR6RnHmMqQMTBlc/EONfw4NT3pw0S6YQ==", - "path": "runtime.native.system.io.ports/4.7.0", - "hashPath": "runtime.native.system.io.ports.4.7.0.nupkg.sha512" + "sha512": "sha512-Sko9LFxRXSjb3OGh5/RxrVRXxYo48tr5NKuuSy6jB85GrYt8WRqVY1iLOLwtjPiVAt4cp+pyD4i30azanS64dw==", + "path": "skiasharp.nativeassets.macos/2.88.6", + "hashPath": "skiasharp.nativeassets.macos.2.88.6.nupkg.sha512" }, - "runtime.osx-x64.runtime.native.System.IO.Ports/4.7.0": { + "SkiaSharp.NativeAssets.Win32/2.88.6": { "type": "package", "serviceable": true, - "sha512": "sha512-c1h87v6gopjfeAu3WhVGguUhzCdpZFqX8oXrevO1ciuH4g/mFrxnzlo5POlp+TtZdQ1i8yu0ZzBMKbmX2bJJ0g==", - "path": "runtime.osx-x64.runtime.native.system.io.ports/4.7.0", - "hashPath": "runtime.osx-x64.runtime.native.system.io.ports.4.7.0.nupkg.sha512" + "sha512": "sha512-7TzFO0u/g2MpQsTty4fyCDdMcfcWI+aLswwfnYXr3gtNS6VLKdMXPMeKpJa3pJSLnUBN6wD0JjuCe8OoLBQ6cQ==", + "path": "skiasharp.nativeassets.win32/2.88.6", + "hashPath": "skiasharp.nativeassets.win32.2.88.6.nupkg.sha512" }, "SQLitePCLRaw.bundle_e_sqlite3/2.1.4": { "type": "package", @@ -1750,33 +4118,40 @@ "path": "stackexchange.redis/2.7.33", "hashPath": "stackexchange.redis.2.7.33.nupkg.sha512" }, - "Swashbuckle.AspNetCore/6.5.0": { + "Swashbuckle.AspNetCore/6.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4mEIj8bEM2ChCioX6Yx4KjcFZwQuTzWYvjyzeavk0DMhP7bzx787aDCQFyMK9JMAcOnhri0mfrxRItpD6j4dcQ==", + "path": "swashbuckle.aspnetcore/6.6.1", + "hashPath": "swashbuckle.aspnetcore.6.6.1.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/6.6.1": { "type": "package", "serviceable": true, - "sha512": "sha512-FK05XokgjgwlCI6wCT+D4/abtQkL1X1/B9Oas6uIwHFmYrIO9WUD5aLC9IzMs9GnHfUXOtXZ2S43gN1mhs5+aA==", - "path": "swashbuckle.aspnetcore/6.5.0", - "hashPath": "swashbuckle.aspnetcore.6.5.0.nupkg.sha512" + "sha512": "sha512-99WcGbaHfLu26sPfWVqJvxXTmQaLE2qdCfceGwT0397X2kcuyD/nuegN2cLw6pQverijXks5LbV8vcA0xi0sSg==", + "path": "swashbuckle.aspnetcore.swagger/6.6.1", + "hashPath": "swashbuckle.aspnetcore.swagger.6.6.1.nupkg.sha512" }, - "Swashbuckle.AspNetCore.Swagger/6.5.0": { + "Swashbuckle.AspNetCore.SwaggerGen/6.6.1": { "type": "package", "serviceable": true, - "sha512": "sha512-XWmCmqyFmoItXKFsQSwQbEAsjDKcxlNf1l+/Ki42hcb6LjKL8m5Db69OTvz5vLonMSRntYO1XLqz0OP+n3vKnA==", - "path": "swashbuckle.aspnetcore.swagger/6.5.0", - "hashPath": "swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512" + "sha512": "sha512-Bw+cAg6EGSsbnT7aV13QXgd5pabDYH/GLNhlzB4Dq64IPEHaX2T51mVZ6yf8/aNHlS7vi31PH6qlWbfhaWqiqw==", + "path": "swashbuckle.aspnetcore.swaggergen/6.6.1", + "hashPath": "swashbuckle.aspnetcore.swaggergen.6.6.1.nupkg.sha512" }, - "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": { + "Swashbuckle.AspNetCore.SwaggerUI/6.6.1": { "type": "package", "serviceable": true, - "sha512": "sha512-Y/qW8Qdg9OEs7V013tt+94OdPxbRdbhcEbw4NiwGvf4YBcfhL/y7qp/Mjv/cENsQ2L3NqJ2AOu94weBy/h4KvA==", - "path": "swashbuckle.aspnetcore.swaggergen/6.5.0", - "hashPath": "swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512" + "sha512": "sha512-a+nN88DS6OuzaPqwFox8nvEuvsrJFXW4NgzeRBUdGqLbUb1yTcIkuzUS3gbzPXC8HQ+NmbydeMRFudnNX2NKag==", + "path": "swashbuckle.aspnetcore.swaggerui/6.6.1", + "hashPath": "swashbuckle.aspnetcore.swaggerui.6.6.1.nupkg.sha512" }, - "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": { + "System.Buffers/4.5.1": { "type": "package", "serviceable": true, - "sha512": "sha512-OvbvxX+wL8skxTBttcBsVxdh73Fag4xwqEU2edh4JMn7Ws/xJHnY/JB1e9RoCb6XpDxUF3hD9A0Z1lEUx40Pfw==", - "path": "swashbuckle.aspnetcore.swaggerui/6.5.0", - "hashPath": "swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512" + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" }, "System.Collections/4.3.0": { "type": "package", @@ -1785,19 +4160,89 @@ "path": "system.collections/4.3.0", "hashPath": "system.collections.4.3.0.nupkg.sha512" }, - "System.Collections.Immutable/1.5.0": { + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Collections.Immutable/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AurL6Y5BA1WotzlEvVaIDpqzpIPvYnnldxru8oXJU2yFxFUy3+pNXjXd1ymO+RA0rq0+590Q8gaz2l3Sr7fmqg==", + "path": "system.collections.immutable/8.0.0", + "hashPath": "system.collections.immutable.8.0.0.nupkg.sha512" + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", + "path": "system.componentmodel/4.3.0", + "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.Annotations/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==", + "path": "system.componentmodel.annotations/4.7.0", + "hashPath": "system.componentmodel.annotations.4.7.0.nupkg.sha512" + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "path": "system.componentmodel.primitives/4.3.0", + "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" + }, + "System.Composition/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-E9oO9olNNxA39J8CxQwf7ceIPm+j/B/PhYpyK9M4LhN/OLLRw6u5fNInkhVqaWueMB9iXxYqnwqwgz+W91loIA==", + "path": "system.composition/8.0.0", + "hashPath": "system.composition.8.0.0.nupkg.sha512" + }, + "System.Composition.AttributedModel/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NyElSuvmBMYdn2iPG0n29i7Igu0bq99izOP3MAtEwskY3OP9jqsavvVmPn9lesVaj/KT/o/QkNjA43dOJTsDQw==", + "path": "system.composition.attributedmodel/8.0.0", + "hashPath": "system.composition.attributedmodel.8.0.0.nupkg.sha512" + }, + "System.Composition.Convention/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UuVkc1B3vQU/LzEbWLMZ1aYVssv4rpShzf8wPEyrUqoGNqdYKREmB8bXR73heOMKkwS6ZnPz3PjGODT2MenukQ==", + "path": "system.composition.convention/8.0.0", + "hashPath": "system.composition.convention.8.0.0.nupkg.sha512" + }, + "System.Composition.Hosting/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qwbONqoxlazxcbiohvb3t1JWZgKIKcRdXS5uEeLbo5wtuBupIbAvdC3PYTAeBCZrZeERvrtAbhYHuuS43Zr1bQ==", + "path": "system.composition.hosting/8.0.0", + "hashPath": "system.composition.hosting.8.0.0.nupkg.sha512" + }, + "System.Composition.Runtime/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G+kRyB5/6+3ucRRQz+DF4uSHGqpkK8Q4ilVdbt4zvxpmvLVZNmSkyFAQpJLcbOyVF85aomJx0m+TGMDVlwx7ZQ==", + "path": "system.composition.runtime/8.0.0", + "hashPath": "system.composition.runtime.8.0.0.nupkg.sha512" + }, + "System.Composition.TypedParts/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-EXKiDFsChZW0RjrZ4FYHu9aW6+P4MCgEDCklsVseRfhoO0F+dXeMSsMRAlVXIo06kGJ/zv+2w1a2uc2+kxxSaQ==", - "path": "system.collections.immutable/1.5.0", - "hashPath": "system.collections.immutable.1.5.0.nupkg.sha512" + "sha512": "sha512-DsSklhuA+Dsgo3ZZrar8hjBFvq1wa1grrkNCTt+6SoX3vq0Vy+HXJnVXrU/nNH1BjlGH684A7h4hJQHZd/u5mA==", + "path": "system.composition.typedparts/8.0.0", + "hashPath": "system.composition.typedparts.8.0.0.nupkg.sha512" }, - "System.Configuration.ConfigurationManager/6.0.0": { + "System.Configuration.ConfigurationManager/6.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==", - "path": "system.configuration.configurationmanager/6.0.0", - "hashPath": "system.configuration.configurationmanager.6.0.0.nupkg.sha512" + "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", @@ -1806,6 +4251,13 @@ "path": "system.data.common/4.3.0", "hashPath": "system.data.common.4.3.0.nupkg.sha512" }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, "System.Diagnostics.DiagnosticSource/4.7.1": { "type": "package", "serviceable": true, @@ -1820,6 +4272,20 @@ "path": "system.diagnostics.performancecounter/6.0.1", "hashPath": "system.diagnostics.performancecounter.6.0.1.nupkg.sha512" }, + "System.Diagnostics.StackTrace/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==", + "path": "system.diagnostics.stacktrace/4.3.0", + "hashPath": "system.diagnostics.stacktrace.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, "System.DirectoryServices/6.0.1": { "type": "package", "serviceable": true, @@ -1841,6 +4307,20 @@ "path": "system.drawing.common/6.0.0", "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", + "path": "system.dynamic.runtime/4.3.0", + "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" + }, + "System.Formats.Asn1/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T6fD00dQ3NTbPDy31m4eQUwKW84s03z0N2C8HpOklyeaDgaJPa/TexP4/SkORMSOwc7WhKifnA6Ya33AkzmafA==", + "path": "system.formats.asn1/6.0.0", + "hashPath": "system.formats.asn1.6.0.0.nupkg.sha512" + }, "System.Globalization/4.3.0": { "type": "package", "serviceable": true, @@ -1848,12 +4328,26 @@ "path": "system.globalization/4.3.0", "hashPath": "system.globalization.4.3.0.nupkg.sha512" }, - "System.IdentityModel.Tokens.Jwt/6.8.0": { + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/7.5.1": { "type": "package", "serviceable": true, - "sha512": "sha512-5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==", - "path": "system.identitymodel.tokens.jwt/6.8.0", - "hashPath": "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512" + "sha512": "sha512-UUw+E0R73lZLlXgneYIJQxNs1kfbcxjVzw64JQyiwjqCd4HMpAbjn+xRo86QZT84uHq8/MkqvfH82tgjgPzpuw==", + "path": "system.identitymodel.tokens.jwt/7.5.1", + "hashPath": "system.identitymodel.tokens.jwt.7.5.1.nupkg.sha512" }, "System.IO/4.3.0": { "type": "package", @@ -1862,12 +4356,26 @@ "path": "system.io/4.3.0", "hashPath": "system.io.4.3.0.nupkg.sha512" }, - "System.IO.Pipelines/5.0.1": { + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { "type": "package", "serviceable": true, - "sha512": "sha512-qEePWsaq9LoEEIqhbGe6D5J8c9IqQOUuTzzV6wn1POlfdLkJliZY3OlB0j0f17uMWlqZYjH7txj+2YbyrIA8Yg==", - "path": "system.io.pipelines/5.0.1", - "hashPath": "system.io.pipelines.5.0.1.nupkg.sha512" + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.IO.Pipelines/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FHNOatmUq0sqJOkTx+UF/9YK1f180cnW5FVqnQMvYUN0elp6wFzbtPSiqbo1/ru8ICp43JM1i7kKkk6GsNGHlA==", + "path": "system.io.pipelines/8.0.0", + "hashPath": "system.io.pipelines.8.0.0.nupkg.sha512" }, "System.IO.Ports/4.7.0": { "type": "package", @@ -1876,12 +4384,82 @@ "path": "system.io.ports/4.7.0", "hashPath": "system.io.ports.4.7.0.nupkg.sha512" }, - "System.Memory/4.5.3": { + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Dynamic.Core/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-npaX0wSt/Q/b54m5yfDR5t7H2L68jP/iFBHYX/sfoQfEip2x1e9wi7qoV6A0UjXIiIVAW1AfpUae++FJth9GNw==", + "path": "system.linq.dynamic.core/1.2.6", + "hashPath": "system.linq.dynamic.core.1.2.6.nupkg.sha512" + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "path": "system.linq.expressions/4.3.0", + "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Net.Http/4.3.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==", + "path": "system.net.http/4.3.4", + "hashPath": "system.net.http.4.3.4.nupkg.sha512" + }, + "System.Net.Primitives/4.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OHzPhSme78BbmLe9UBxHM69ZYjClS5URuhce6Ta4ikiLgaUGiG/X84fZpI6zy7CsUH5R9cYzI2tv9dWPqdTkUg==", + "path": "system.net.primitives/4.3.1", + "hashPath": "system.net.primitives.4.3.1.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.ObjectModel/4.3.0": { "type": "package", "serviceable": true, - "sha512": "sha512-3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", - "path": "system.memory/4.5.3", - "hashPath": "system.memory.4.5.3.nupkg.sha512" + "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "path": "system.objectmodel/4.3.0", + "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" + }, + "System.Private.ServiceModel/4.8.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-neXeXhKIlCUBCg5rxKpYnae4vQSiMWjhqeTgsMedHvKKUTsmP98je+G8oPmDdY9uZVruvxqRGjcljn1XYNhC+w==", + "path": "system.private.servicemodel/4.8.1", + "hashPath": "system.private.servicemodel.4.8.1.nupkg.sha512" + }, + "System.Reactive/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-erBZjkQHWL9jpasCE/0qKAryzVBJFxGHVBAvgRN1bzM0q2s1S4oYREEEL0Vb+1kA/6BKb5FjUZMp5VXmy+gzkQ==", + "path": "system.reactive/5.0.0", + "hashPath": "system.reactive.5.0.0.nupkg.sha512" + }, + "System.Reactive.Linq/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IB4/qlV4T1WhZvM11RVoFUSZXPow9VWVeQ1uDkSKgz6bAO+gCf65H/vjrYlwyXmojSSxvfHndF9qdH43P/IuAw==", + "path": "system.reactive.linq/5.0.0", + "hashPath": "system.reactive.linq.5.0.0.nupkg.sha512" }, "System.Reflection/4.3.0": { "type": "package", @@ -1890,6 +4468,20 @@ "path": "system.reflection/4.3.0", "hashPath": "system.reflection.4.3.0.nupkg.sha512" }, + "System.Reflection.DispatchProxy/4.7.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-C1sMLwIG6ILQ2bmOT4gh62V6oJlyF4BlHcVMrOoor49p0Ji2tA8QAoqyMcIhAdH6OHKJ8m7BU+r4LK2CUEOKqw==", + "path": "system.reflection.dispatchproxy/4.7.1", + "hashPath": "system.reflection.dispatchproxy.4.7.1.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, "System.Reflection.Emit.ILGeneration/4.3.0": { "type": "package", "serviceable": true, @@ -1904,6 +4496,20 @@ "path": "system.reflection.emit.lightweight/4.3.0", "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Metadata/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ptvgrFh7PvWI8bcVqG5rsA/weWM09EnthFHR5SCnS6IN+P4mj6rE1lBDC4U8HL9/57htKAqy4KQ3bBj84cfYyQ==", + "path": "system.reflection.metadata/8.0.0", + "hashPath": "system.reflection.metadata.8.0.0.nupkg.sha512" + }, "System.Reflection.Primitives/4.3.0": { "type": "package", "serviceable": true, @@ -1911,6 +4517,13 @@ "path": "system.reflection.primitives/4.3.0", "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "path": "system.reflection.typeextensions/4.3.0", + "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" + }, "System.Resources.ResourceManager/4.3.0": { "type": "package", "serviceable": true, @@ -1918,12 +4531,12 @@ "path": "system.resources.resourcemanager/4.3.0", "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" }, - "System.Runtime/4.3.0": { + "System.Runtime/4.3.1": { "type": "package", "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" + "sha512": "sha512-abhfv1dTK6NXOmu4bgHIONxHyEqFjW8HwXPmpY9gmll+ix9UNo4XDcmzJn6oLooftxNssVHdJC1pGT9jkSynQg==", + "path": "system.runtime/4.3.1", + "hashPath": "system.runtime.4.3.1.nupkg.sha512" }, "System.Runtime.Caching/4.7.0": { "type": "package", @@ -1946,6 +4559,20 @@ "path": "system.runtime.extensions/4.3.0", "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, "System.Runtime.Loader/4.3.0": { "type": "package", "serviceable": true, @@ -1953,6 +4580,20 @@ "path": "system.runtime.loader/4.3.0", "hashPath": "system.runtime.loader.4.3.0.nupkg.sha512" }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==", + "path": "system.runtime.serialization.primitives/4.3.0", + "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512" + }, "System.Security.AccessControl/6.0.0": { "type": "package", "serviceable": true, @@ -1960,12 +4601,54 @@ "path": "system.security.accesscontrol/6.0.0", "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" }, - "System.Security.Cryptography.Cng/4.5.0": { + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "path": "system.security.cryptography.cng/4.3.0", + "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { "type": "package", "serviceable": true, - "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", - "path": "system.security.cryptography.cng/4.5.0", - "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Pkcs/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ynmbW2GjIGg9K1wXmVIRs4IlyDolf0JXNpzFQ8JCVgwM+myUC2JeUggl2PwQig2PNVMegKmN1aAx7WPQ8tI3vA==", + "path": "system.security.cryptography.pkcs/6.0.1", + "hashPath": "system.security.cryptography.pkcs.6.0.1.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" }, "System.Security.Cryptography.ProtectedData/6.0.0": { "type": "package", @@ -1974,6 +4657,20 @@ "path": "system.security.cryptography.protecteddata/6.0.0", "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Xml/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-B6pAyxMvXGbZemb+ER877KSr6OKis+qAdxhhKKK36I6sgj2js8mbcEVviZEHYV8XRTWjbKsAq8Z/zoaegA30dA==", + "path": "system.security.cryptography.xml/4.7.0", + "hashPath": "system.security.cryptography.xml.4.7.0.nupkg.sha512" + }, "System.Security.Permissions/6.0.0": { "type": "package", "serviceable": true, @@ -1988,6 +4685,41 @@ "path": "system.security.principal.windows/4.7.0", "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" }, + "System.ServiceModel.Duplex/4.8.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-htdZ/71tGUl+Yj/URS2dzK7v4hRR/o1/pH2Vnse9vlqZnChJTz7dV3Wk6GsHDUOuYzcufyCMuM79W6aHmL9v8w==", + "path": "system.servicemodel.duplex/4.8.1", + "hashPath": "system.servicemodel.duplex.4.8.1.nupkg.sha512" + }, + "System.ServiceModel.Http/4.8.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yrfGQJ5joGXnZx3G340KDfgpmOSYzRMHP3zJkcwiV3CP750AEsvesVIXc+PXYFzU7v3JKLEw6GLrH7kPiZJa/g==", + "path": "system.servicemodel.http/4.8.1", + "hashPath": "system.servicemodel.http.4.8.1.nupkg.sha512" + }, + "System.ServiceModel.NetTcp/4.8.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2h2Wq1wr/aBj8BwydO8h8AV5HvE7lEhgRyE6sDsftGTOr1rg5us9zxcJGT+WMlJ7pSTPXSTYCOEM/FfqHe0SEQ==", + "path": "system.servicemodel.nettcp/4.8.1", + "hashPath": "system.servicemodel.nettcp.4.8.1.nupkg.sha512" + }, + "System.ServiceModel.Primitives/4.8.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XjzGCqvWZBHnw2ym8t9PVeTm5Tsp7lSDKEwhDZAU4Jnw+6+zEDu/2ZQYQbRqBR0t/KpfNA4Aya/5aONKJnuyEw==", + "path": "system.servicemodel.primitives/4.8.1", + "hashPath": "system.servicemodel.primitives.4.8.1.nupkg.sha512" + }, + "System.ServiceModel.Security/4.8.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vCBnopz067lS+7Tn+dvpWPH9Yn5CYvSMd5StRzqa7cFDX4O7jkChRSoFWeMaNNqJCwQjafphaQn9IViwqufHZQ==", + "path": "system.servicemodel.security/4.8.1", + "hashPath": "system.servicemodel.security.4.8.1.nupkg.sha512" + }, "System.Text.Encoding/4.3.0": { "type": "package", "serviceable": true, @@ -1995,33 +4727,47 @@ "path": "system.text.encoding/4.3.0", "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" }, - "System.Text.Encoding.CodePages/5.0.0": { + "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/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "path": "system.text.encodings.web/6.0.0", + "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" + }, + "System.Text.Json/6.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==", - "path": "system.text.encoding.codepages/5.0.0", - "hashPath": "system.text.encoding.codepages.5.0.0.nupkg.sha512" + "sha512": "sha512-2j16oUgtIzl7Xtk7demG0i/v5aU/ZvULcAnJvPb63U3ZhXJ494UYcxuEj5Fs49i3XDrk5kU/8I+6l9zRCw3cJw==", + "path": "system.text.json/6.0.9", + "hashPath": "system.text.json.6.0.9.nupkg.sha512" }, - "System.Text.Encodings.Web/7.0.0": { + "System.Text.RegularExpressions/4.3.1": { "type": "package", "serviceable": true, - "sha512": "sha512-OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==", - "path": "system.text.encodings.web/7.0.0", - "hashPath": "system.text.encodings.web.7.0.0.nupkg.sha512" + "sha512": "sha512-N0kNRrWe4+nXOWlpLT4LAY5brb8caNFlUuIRpraCVMDLYutKkol1aV079rQjLuSxKMJT2SpBQsYX9xbcTMmzwg==", + "path": "system.text.regularexpressions/4.3.1", + "hashPath": "system.text.regularexpressions.4.3.1.nupkg.sha512" }, - "System.Text.Json/7.0.0": { + "System.Threading/4.3.0": { "type": "package", "serviceable": true, - "sha512": "sha512-DaGSsVqKsn/ia6RG8frjwmJonfos0srquhw09TlT8KRw5I43E+4gs+/bZj4K0vShJ5H9imCuXupb4RmS+dBy3w==", - "path": "system.text.json/7.0.0", - "hashPath": "system.text.json.7.0.0.nupkg.sha512" + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" }, - "System.Text.RegularExpressions/4.3.0": { + "System.Threading.Channels/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "path": "system.text.regularexpressions/4.3.0", - "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + "sha512": "sha512-CMaFr7v+57RW7uZfZkPExsPB6ljwzhjACWW1gfU35Y56rk72B/Wu+sTqxVmGSk4SFUlPc3cjeKND0zktziyjBA==", + "path": "system.threading.channels/8.0.0", + "hashPath": "system.threading.channels.8.0.0.nupkg.sha512" }, "System.Threading.Tasks/4.3.0": { "type": "package", @@ -2030,12 +4776,47 @@ "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, + "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "path": "system.threading.tasks.extensions/4.5.4", + "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" + }, + "System.Threading.Tasks.Parallel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cbjBNZHf/vQCfcdhzx7knsiygoCKgxL8mZOeocXZn5gWhCdzHIq6bYNKWX0LAJCWYP7bds4yBK8p06YkP0oa0g==", + "path": "system.threading.tasks.parallel/4.3.0", + "hashPath": "system.threading.tasks.parallel.4.3.0.nupkg.sha512" + }, + "System.ValueTuple/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BahUww/+mdP4ARCAh2RQhQTg13wYLVrBb9SYVgW8ZlrwjraGCXHGjo0oIiUfZ34LUZkMMR+RAzR7dEY4S1HeQQ==", + "path": "system.valuetuple/4.4.0", + "hashPath": "system.valuetuple.4.4.0.nupkg.sha512" + }, "System.Windows.Extensions/6.0.0": { "type": "package", "serviceable": true, "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", "path": "system.windows.extensions/6.0.0", "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" + }, + "Tencent.QCloud.Cos.Sdk/5.4.32": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NpP+I3KHNUYofjeDixn8nLX6D/m9S3kbz0Tky/oKbkdsZJrKmqYsPUhKMOTRbIumEy8rGz3WrRwQaXjeX82nVg==", + "path": "tencent.qcloud.cos.sdk/5.4.32", + "hashPath": "tencent.qcloud.cos.sdk.5.4.32.nupkg.sha512" + }, + "Yitter.IdGenerator/1.0.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-F4nOJ7Geq41vgNWX9E6/vkxRzFInACGpDp4Kad2mA2WIKhEwgPyE9FpulBAuEmDByrfHHz6mOII3IIeLJAh91g==", + "path": "yitter.idgenerator/1.0.14", + "hashPath": "yitter.idgenerator.1.0.14.nupkg.sha512" } } } \ No newline at end of file diff --git a/WinFormStarter/obj/Debug/net6.0-windows/WinFormStarter.designer.runtimeconfig.json b/WinFormStarter/obj/Debug/net6.0-windows/WinFormStarter.designer.runtimeconfig.json index d29738c..6c71db5 100644 --- a/WinFormStarter/obj/Debug/net6.0-windows/WinFormStarter.designer.runtimeconfig.json +++ b/WinFormStarter/obj/Debug/net6.0-windows/WinFormStarter.designer.runtimeconfig.json @@ -16,9 +16,10 @@ } ], "additionalProbingPaths": [ - "C:\\Users\\CZ\\.dotnet\\store\\|arch|\\|tfm|", - "C:\\Users\\CZ\\.nuget\\packages", - "D:\\vs2019\\共享组件\\NuGetPackages" + "C:\\Users\\dell\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\dell\\.nuget\\packages", + "D:\\vs 2019\\Shared\\NuGetPackages", + "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet" ], "configProperties": { "Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true