commit 98d129582dc00a1e2d765b1be04ba8400bf85d5f Author: icewint Date: Wed Jan 8 15:43:26 2025 +0800 初版 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bb5c3c1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +bin +.vs +.idea diff --git a/WmsMobileServe.sln b/WmsMobileServe.sln new file mode 100644 index 0000000..3fd65f3 --- /dev/null +++ b/WmsMobileServe.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.11.35327.3 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WmsMobileServe", "WmsMobileServe\WmsMobileServe.csproj", "{EDF77B93-3209-4D19-9BC5-789FBB0960FA}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {EDF77B93-3209-4D19-9BC5-789FBB0960FA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {EDF77B93-3209-4D19-9BC5-789FBB0960FA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {EDF77B93-3209-4D19-9BC5-789FBB0960FA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {EDF77B93-3209-4D19-9BC5-789FBB0960FA}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {E875D27A-E9B8-4F84-A79E-89D977D22178} + EndGlobalSection +EndGlobal diff --git a/WmsMobileServe.sln.DotSettings.user b/WmsMobileServe.sln.DotSettings.user new file mode 100644 index 0000000..df87d7e --- /dev/null +++ b/WmsMobileServe.sln.DotSettings.user @@ -0,0 +1,2 @@ + + ForceIncluded \ No newline at end of file diff --git a/WmsMobileServe/.config/dotnet-tools.json b/WmsMobileServe/.config/dotnet-tools.json new file mode 100644 index 0000000..4f48799 --- /dev/null +++ b/WmsMobileServe/.config/dotnet-tools.json @@ -0,0 +1,13 @@ +{ + "version": 1, + "isRoot": true, + "tools": { + "dotnet-ef": { + "version": "9.0.0", + "commands": [ + "dotnet-ef" + ], + "rollForward": false + } + } +} \ No newline at end of file diff --git a/WmsMobileServe/Annotation/Component.cs b/WmsMobileServe/Annotation/Component.cs new file mode 100644 index 0000000..61fa89c --- /dev/null +++ b/WmsMobileServe/Annotation/Component.cs @@ -0,0 +1,9 @@ +namespace WmsMobileServe.Annotation; + +/// +/// 特性,标记一个类需要被注入 +/// +[AttributeUsage(AttributeTargets.Class)] +public class ComponentAttribute : Attribute +{ +} diff --git a/WmsMobileServe/ApiClient/ApiClientResponseEvent.cs b/WmsMobileServe/ApiClient/ApiClientResponseEvent.cs new file mode 100644 index 0000000..3c6c757 --- /dev/null +++ b/WmsMobileServe/ApiClient/ApiClientResponseEvent.cs @@ -0,0 +1,44 @@ +using WmsMobileServe.Utils.HttpUtils.Entity; + +namespace WmsMobileServe.ApiClient; + +/// +/// 客户端请求的响应后事件 +/// +public class ApiClientResponseEvent +{ + + /// + /// 当请求其他系统时触发本方法 + /// + /// + public static void ApiResponse(ApiResponseInfo responseInfo) + { + //try + //{ + // // 写日志 + // //WcsLog.Instance().WriteApiRequestLog(responseInfo.ToString()); + // // 存库 + // AppApiRequest insertData = new() + // { + // RequestId = dataBaseData.GetNewUUID(), + // RequestUrl = responseInfo.RequestUrl, + // RequestMethod = responseInfo.RequestMethod, + // IsSuccess = responseInfo.IsSend ? 1 : 0, + // RequestMsg = responseInfo.RequestMsg, + // ResponseMsg = responseInfo.ResponseMsg, + // RequestTime = responseInfo.RequestTime, + // ResponseTime = responseInfo.ResponseTime, + // UseTime = responseInfo.UseTime, + // ErrMsg = responseInfo.RequestException?.Message, + // }; + // apiRequestDao.Insert(insertData); + //} + //catch (Exception ex) + //{ + // ConsoleLog.Error($"【异常】写接口日志发生异常,信息:{ex}"); + //} + } + + +} diff --git a/WmsMobileServe/ApiClient/Mes/Dto/EmptyVehicleInReq.cs b/WmsMobileServe/ApiClient/Mes/Dto/EmptyVehicleInReq.cs new file mode 100644 index 0000000..daa4cb1 --- /dev/null +++ b/WmsMobileServe/ApiClient/Mes/Dto/EmptyVehicleInReq.cs @@ -0,0 +1,17 @@ +using System.Text.Json.Serialization; + +namespace WmsMobileServe.ApiClient.Mes.Dto; + +/// +/// 空箱入库 +/// +public class EmptyVehicleInReq +{ + /// + /// 载具号 + /// + [JsonPropertyName("vehicleNo")] + public string? VehicleNo { get; set; } + + +} diff --git a/WmsMobileServe/ApiClient/Mes/Dto/GetOutBoxInfoResp.cs b/WmsMobileServe/ApiClient/Mes/Dto/GetOutBoxInfoResp.cs new file mode 100644 index 0000000..3c05d30 --- /dev/null +++ b/WmsMobileServe/ApiClient/Mes/Dto/GetOutBoxInfoResp.cs @@ -0,0 +1,14 @@ +using System.Xml.Serialization; + +namespace WmsMobileServe.ApiClient.Mes.Dto; + +/// +/// 请求MES获取箱号的返回值 +/// +[XmlRoot("string", Namespace = "http://tempuri.org/")] +public class GetOutBoxInfoResp +{ + [XmlText] + public string? Data { get; set; } + +} diff --git a/WmsMobileServe/ApiClient/Mes/MesApiClient.cs b/WmsMobileServe/ApiClient/Mes/MesApiClient.cs new file mode 100644 index 0000000..e760217 --- /dev/null +++ b/WmsMobileServe/ApiClient/Mes/MesApiClient.cs @@ -0,0 +1,37 @@ +using Microsoft.IdentityModel.Tokens; +using WmsMobileServe.Annotation; +using WmsMobileServe.Utils.HttpUtils; +using WmsMobileServe.Utils.HttpUtils.Entity; + +namespace WmsMobileServe.ApiClient.Mes; + +/// +/// 访问 Mes 的 api 客户端 +/// +[Component] +public class MesApiClient : WebApiClient +{ + public MesApiClient() + { + SetBaseUrl("http://ip:port"); + SetResponseAction(ApiClientResponseEvent.ApiResponse); + } + + + /// + /// 获取箱子信息 + /// + /// + /// + public ApiResponseInfo GetOutBoxInfo(string boxNo) + { + Dictionary request = []; + request.Add("pSN", boxNo); + return HttpGet(request, "/Camstar/PackStock.asmx/getOutBoxInf"); + } + + + + + +} diff --git a/WmsMobileServe/ApiServe/Mobile/Controllers/PickController.cs b/WmsMobileServe/ApiServe/Mobile/Controllers/PickController.cs new file mode 100644 index 0000000..5eb66a0 --- /dev/null +++ b/WmsMobileServe/ApiServe/Mobile/Controllers/PickController.cs @@ -0,0 +1,34 @@ +using Microsoft.AspNetCore.Mvc; +using WmsMobileServe.ApiServe.Mobile.Dto; +using WmsMobileServe.ApiServe.Mobile.Service; +using WmsMobileServe.ApiServe.Mobile.Vo; +using WmsMobileServe.DataBase.Base.Po; + +namespace WmsMobileServe.ApiServe.Mobile.Controllers; + +// 拣货专用控制器 + +[Route("api/mobile/pick")] +[ApiController] +public class PickController(PickService pickService) : ControllerBase +{ + + + /// + /// 获取拣货任务 + /// + /// + /// + [HttpGet("getPickTask")] + public MobileApiResponse> GetPickTask([FromQuery] string? vehicleNo) => pickService.GetPickTask(vehicleNo); + + /// + /// 拣货完成 + /// + /// + /// + [HttpPost("pickComplete")] + public MobileApiResponse PickComplete([FromBody] List request) => pickService.PickComplete(request); + + +} diff --git a/WmsMobileServe/ApiServe/Mobile/Controllers/StockInController.cs b/WmsMobileServe/ApiServe/Mobile/Controllers/StockInController.cs new file mode 100644 index 0000000..6eb1d9e --- /dev/null +++ b/WmsMobileServe/ApiServe/Mobile/Controllers/StockInController.cs @@ -0,0 +1,102 @@ +using Microsoft.AspNetCore.Mvc; +using WmsMobileServe.ApiClient.Mes.Dto; +using WmsMobileServe.ApiServe.Mobile.Dto; +using WmsMobileServe.ApiServe.Mobile.Service; +using WmsMobileServe.ApiServe.Mobile.Vo; +using WmsMobileServe.DataBase.Base.Po; + + +namespace WmsMobileServe.ApiServe.Mobile.Controllers; + +// 入库专用 API + +[Route("api/mobile/stockIn")] +[ApiController] +public class StockInController(StockInService stockInService) : ControllerBase +{ + /// + /// 接口测试 + /// + /// + [HttpGet("test")] + public string ApiTest() => "OK"; + + /************************************* 单机入库流程相关 ********************************************/ + + /// + /// 空箱入库接口 + /// + /// + /// + [HttpPost("emptyVehicleIn")] + public MobileApiResponse EmptyVehicleIn([FromBody] EmptyVehicleInReq request) => stockInService.EmptyVehicleIn(request); + + /// + /// 码盘入库 ---- 单机直接解析条码生成入库任务 + /// + /// + [HttpPost("bindingVehicleIn")] + public MobileApiResponse BindingVehicleIn([FromBody] BindingVehicleInRequest request) => stockInService.BindingVehicleIn(request); + + + + /************************************* EBS入库相关 **********************************************/ + + /// + /// 获取EBS码盘信息 ---- EBS 任务表内的 所有 信息 + /// + /// + [HttpGet("getCuxData")] + public MobileApiResponse> GetCuxData() => stockInService.GetCuxData(); + + /// + /// EBS 入库拉取 EBS 入库任务表内的信息 + /// + /// + /// + [HttpPost("getCanUseGoods")] + public MobileApiResponse GetCanUseGoods([FromBody] GetCanUseGoodsRequest request) => stockInService.GetCanUseGoods(request); + + + + /************************************* MES入库相关 *************************************************/ + + + + /// + /// 传入箱号获取箱号详细信息 + /// + /// + /// + [HttpGet("getGoodsDetail")] + public MobileApiResponse GetGoodsDetail([FromQuery] string? boxNo) => stockInService.GetGoodsDetail(boxNo); + + /// + /// MES码盘入库 + /// + /// + [HttpPost("bindingVehicleInMes")] + public MobileApiResponse BindingVehicleInMes([FromBody] BindingVehicleInReq request) => stockInService.BindingVehicleInMes(request); + + + + /************************************** 其他 **********************************************/ + + + + + /// + /// Ebs码盘入库 + /// + /// + [HttpPost("bindingVehicleInEbsOld")] + public MobileApiResponse BindingVehicleInEbsOld([FromBody] BindingVehicleInEbsOldReq request) => stockInService.BindingVehicleInEbsOld(request); + + /// + /// Ebs码盘入库 + /// + /// + [HttpPost("bindingVehicleInEbs")] + public MobileApiResponse BindingVehicleInEbs([FromBody] BindingVehicleInEbsReq request) => stockInService.BindingVehicleInEbs(request); + +} diff --git a/WmsMobileServe/ApiServe/Mobile/Dto/BindingVehicleInEbsOldReq.cs b/WmsMobileServe/ApiServe/Mobile/Dto/BindingVehicleInEbsOldReq.cs new file mode 100644 index 0000000..7a91962 --- /dev/null +++ b/WmsMobileServe/ApiServe/Mobile/Dto/BindingVehicleInEbsOldReq.cs @@ -0,0 +1,126 @@ +using System.Text.Json.Serialization; + +namespace WmsMobileServe.ApiServe.Mobile.Dto; + +public class BindingVehicleInEbsOldReq +{ + /// + /// 载具号 + /// + [JsonPropertyName("vehicleNo")] + public string? VehicleNo { get; set; } + + /// + /// 入库模式 + /// + /// + /// 1 -- 直接入库 + /// 2 -- 去往站台 + /// + [JsonPropertyName("taskType")] + public int? TaskType { get; set; } + + /// + /// 绑定的物料 + /// + [JsonPropertyName("bindingGoods")] + public List? BindingGoodsDetails { get; set; } +} + + + +/// +/// 绑定的物品名称 +/// +public class BindingGoodsEbsDetails +{ + /// + /// 箱号 + /// + [JsonPropertyName("boxNo")] + public string? BoxNo { get; set; } + + /// + /// 每包数量 + /// + [JsonPropertyName("numPerBox")] + public decimal? NumPerBox { get; set; } + + /// + /// 包装数量 + /// + [JsonPropertyName("goodsNum")] + public decimal? GoodsNum { get; set; } + + /// + /// 包数量 + /// + [JsonPropertyName("picketNum")] + public decimal? PacketNum { get; set; } + + /// + /// 零包数量 + /// + [JsonPropertyName("otherNum")] + public decimal? OtherNum { get; set; } + + /// + /// 产品编码 + /// + [JsonPropertyName("goodsId")] + public string? GoodsId { get; set; } + + /// + /// 销售订单 + /// + [JsonPropertyName("saleOrderNo")] + public string? SaleOrderNo { get; set; } + + /// + /// 包装层级 + /// + [JsonPropertyName("packetLevel")] + public string? PacketLevel { get; set; } + + /// + /// 周期 + /// + [JsonPropertyName("cycle")] + public string? Cycle { get; set; } + + /// + /// 客户销售订单 + /// + [JsonPropertyName("customSaleOrderNo")] + public string? CustomSaleOrderNo { get; set; } + + /// + /// 子库 + /// + [JsonPropertyName("minorWarehouseId")] + public string? MinorWarehouseId { get; set; } + + /// + /// 产品描述 + /// + [JsonPropertyName("goodsDesc")] + public string? GoodsDesc { get; set; } + + /// + /// 订单头主键 + /// + [JsonPropertyName("poHeaderId")] + public string? PoHeaderId { get; set; } + + /// + /// 订单行主键 + /// + [JsonPropertyName("poLineId")] + public string? PoLineId { get; set; } + + /// + /// 发运行主键 + /// + [JsonPropertyName("lineLocationId")] + public string? LineLocationId { get; set; } +} diff --git a/WmsMobileServe/ApiServe/Mobile/Dto/BindingVehicleInEbsReq.cs b/WmsMobileServe/ApiServe/Mobile/Dto/BindingVehicleInEbsReq.cs new file mode 100644 index 0000000..30ff2ff --- /dev/null +++ b/WmsMobileServe/ApiServe/Mobile/Dto/BindingVehicleInEbsReq.cs @@ -0,0 +1,62 @@ +using System.Text.Json.Serialization; + +namespace WmsMobileServe.ApiServe.Mobile.Dto; + +public class BindingVehicleInEbsReq +{ + /// 载具号 + /// + [JsonPropertyName("vehicleNo")] + public string? VehicleNo { get; set; } + + /// + /// 入库模式 + /// + /// + /// 1 -- 直接入库 + /// 2 -- 去往站台 + /// + [JsonPropertyName("taskType")] + public int? TaskType { get; set; } + + /// + /// 绑定的物料 + /// + [JsonPropertyName("bindingGoods")] + public List? BindingGoodsDetails { get; set; } +} + + +public class BindingGoods +{ + + /// + /// 采购单号 + /// + [JsonPropertyName("poHeaderId")] + public string? PoHeaderId { get; set; } + + /// + /// 物料号 + /// + [JsonPropertyName("itemId")] + public string? ItemId { get; set; } + + /// + /// 批次号 + /// + [JsonPropertyName("batch")] + public string? Batch { get; set; } + + + /// + /// 数量 + /// + [JsonPropertyName("quantity")] + public string? Quantity { get; set; } + + + + + +} diff --git a/WmsMobileServe/ApiServe/Mobile/Dto/BindingVehicleInReq.cs b/WmsMobileServe/ApiServe/Mobile/Dto/BindingVehicleInReq.cs new file mode 100644 index 0000000..24bbdca --- /dev/null +++ b/WmsMobileServe/ApiServe/Mobile/Dto/BindingVehicleInReq.cs @@ -0,0 +1,112 @@ +using System.Text.Json.Serialization; + +namespace WmsMobileServe.ApiServe.Mobile.Dto; + + + +/// +/// 码盘完成请求入库的参数 +/// +public class BindingVehicleInReq +{ + /// + /// 载具号 + /// + [JsonPropertyName("vehicleNo")] + public string? VehicleNo { get; set; } + + /// + /// 入库模式 + /// + /// + /// 1 -- 直接入库 + /// 2 -- 去往站台 + /// + [JsonPropertyName("taskType")] + public int? TaskType { get; set; } + + /// + /// 绑定的物料 + /// + [JsonPropertyName("bindingGoods")] + public List? BindingGoodsDetails { get; set; } + +} + +/// +/// 绑定的物品名称 +/// +public class BindingGoodsDetails +{ + /// + /// 箱号 + /// + [JsonPropertyName("boxNo")] + public string? BoxNo { get; set; } + + /// + /// 每包数量 + /// + [JsonPropertyName("numPerBox")] + public decimal? NumPerBox { get; set; } + + /// + /// 包装数量 + /// + [JsonPropertyName("goodsNum")] + public decimal? GoodsNum { get; set; } + + /// + /// 包数量 + /// + [JsonPropertyName("picketNum")] + public decimal? PacketNum { get; set; } + + /// + /// 零包数量 + /// + [JsonPropertyName("otherNum")] + public decimal? OtherNum { get; set; } + + /// + /// 产品编码 + /// + [JsonPropertyName("goodsId")] + public string? GoodsId { get; set; } + + /// + /// 销售订单 + /// + [JsonPropertyName("saleOrderNo")] + public string? SaleOrderNo { get; set; } + + /// + /// 包装层级 + /// + [JsonPropertyName("packetLevel")] + public string? PacketLevel { get; set; } + + /// + /// 周期 + /// + [JsonPropertyName("cycle")] + public string? Cycle { get; set; } + + /// + /// 客户销售订单 + /// + [JsonPropertyName("customSaleOrderNo")] + public string? CustomSaleOrderNo { get; set; } + + /// + /// 子库 + /// + [JsonPropertyName("minorWarehouseId")] + public string? MinorWarehouseId { get; set; } + + /// + /// 产品描述 + /// + [JsonPropertyName("goodsDesc")] + public string? GoodsDesc { get; set; } +} diff --git a/WmsMobileServe/ApiServe/Mobile/Dto/BindingVehicleInRequest.cs b/WmsMobileServe/ApiServe/Mobile/Dto/BindingVehicleInRequest.cs new file mode 100644 index 0000000..770348b --- /dev/null +++ b/WmsMobileServe/ApiServe/Mobile/Dto/BindingVehicleInRequest.cs @@ -0,0 +1,128 @@ +using System.Text.Json.Serialization; + +namespace WmsMobileServe.ApiServe.Mobile.Dto; + +public class BindingVehicleInRequest +{ + + /// + /// 载具号 + /// + [JsonPropertyName("vehicleNo")] + public string? VehicleNo { get; set; } + + /// + /// 入库区域 + /// + [JsonPropertyName("inArea")] + public string? InArea { get; set; } + + /// + /// 绑定的物料 + /// + [JsonPropertyName("goods")] + public List? Goods { get; set; } + +} + + +public class BindingVehicleInRequestBindingGoods +{ + /// + /// 编号 + /// + [JsonPropertyName("id")] + public string? Id { get; set; } + + /// + /// 采购单号 + /// + [JsonPropertyName("segment1")] + public string? Segment1 { get; set; } + + /// + /// 物料号 + /// + [JsonPropertyName("itemId")] + public string? ItemId { get; set; } + + /// + /// 批次号 + /// + [JsonPropertyName("batch")] + public string? Batch { get; set; } + + /// + /// 数量 + /// + [JsonPropertyName("quantity")] + public string? Quantity { get; set; } + + + [JsonPropertyName("goodsTypeId")] + public string? GoodsTypeId { get; set; } + + /// + /// 重量 + /// + [JsonPropertyName("weight")] + public string? Weight { get; set; } + + /// + /// 生产日期 + /// + [JsonPropertyName("productData")] + public string? ProductData { get; set; } + + /// + /// 库区 + /// + [JsonPropertyName("area")] + public string? Area { get; set; } + + /// + /// 送货单号 + /// + [JsonPropertyName("sendOrderId")] + public string? SendOrderId { get; set; } + + /// + /// 供应商批次 + /// + [JsonPropertyName("pruBatch")] + public string? PruBatch { get; set; } + + /// + /// 物料描述 + /// + [JsonPropertyName("goodsName")] + public string? GoodsName { get; set; } + + /// + /// 单位 + /// + [JsonPropertyName("unit")] + public string? Unit { get; set; } + + /// + /// 订单头主键 + /// + [JsonPropertyName("poHeaderId")] + public string? PoHeaderId { get; set; } + + /// + /// 订单行主键 + /// + [JsonPropertyName("poLineId")] + public string? PoLineId { get; set; } + + /// + /// 发运行主键 + /// + [JsonPropertyName("lineLocationId")] + public string? LineLocationId { get; set; } + + + + +} diff --git a/WmsMobileServe/ApiServe/Mobile/Dto/GetCanUseGoodsRequest.cs b/WmsMobileServe/ApiServe/Mobile/Dto/GetCanUseGoodsRequest.cs new file mode 100644 index 0000000..cbefd98 --- /dev/null +++ b/WmsMobileServe/ApiServe/Mobile/Dto/GetCanUseGoodsRequest.cs @@ -0,0 +1,20 @@ +using System.Text.Json.Serialization; + +namespace WmsMobileServe.ApiServe.Mobile.Dto; + +public class GetCanUseGoodsRequest +{ + /// + /// 采购单号 + /// + [JsonPropertyName("orderId")] + public string? OrderId { get; set; } + + /// + /// 物料号 + /// + [JsonPropertyName("goodsId")] + public string? GoodsId { get; set; } + + +} diff --git a/WmsMobileServe/ApiServe/Mobile/Dto/GetGoodsDetailResp.cs b/WmsMobileServe/ApiServe/Mobile/Dto/GetGoodsDetailResp.cs new file mode 100644 index 0000000..207e7bd --- /dev/null +++ b/WmsMobileServe/ApiServe/Mobile/Dto/GetGoodsDetailResp.cs @@ -0,0 +1,81 @@ +using System.Text.Json.Serialization; + +namespace WmsMobileServe.ApiServe.Mobile.Dto; + +/// +/// Mes 返回的物料信息 +/// +public class GetGoodsDetailResp +{ + /// + /// 箱号 + /// + [JsonPropertyName("boxNo")] + public string? BoxNo { get; set; } + + /// + /// 每包数量 + /// + [JsonPropertyName("numPerBox")] + public decimal? NumPerBox { get; set; } + + /// + /// 包装数量 + /// + [JsonPropertyName("goodsNum")] + public decimal? GoodsNum { get; set; } + + /// + /// 包数量 + /// + [JsonPropertyName("picketNum")] + public decimal? PacketNum { get; set; } + + /// + /// 零包数量 + /// + [JsonPropertyName("otherNum")] + public decimal? OtherNum { get; set; } + + /// + /// 产品编码 + /// + [JsonPropertyName("goodsId")] + public string? GoodsId { get; set; } + + /// + /// 销售订单 + /// + [JsonPropertyName("saleOrderNo")] + public string? SaleOrderNo { get; set; } + + /// + /// 包装层级 + /// + [JsonPropertyName("packetLevel")] + public string? PacketLevel { get; set; } + + /// + /// 周期 + /// + [JsonPropertyName("cycle")] + public string? Cycle { get; set; } + + /// + /// 客户销售订单 + /// + [JsonPropertyName("customSaleOrderNo")] + public string? CustomSaleOrderNo { get; set; } + + /// + /// 字库 + /// + [JsonPropertyName("minorWarehouseId")] + public string? MinorWarehouseId { get; set; } + + /// + /// 产品描述 + /// + [JsonPropertyName("goodsDesc")] + public string? GoodsDesc { get; set; } +} diff --git a/WmsMobileServe/ApiServe/Mobile/Dto/PickCompleteDto.cs b/WmsMobileServe/ApiServe/Mobile/Dto/PickCompleteDto.cs new file mode 100644 index 0000000..0f161fc --- /dev/null +++ b/WmsMobileServe/ApiServe/Mobile/Dto/PickCompleteDto.cs @@ -0,0 +1,32 @@ +using System.Text.Json.Serialization; + +namespace WmsMobileServe.ApiServe.Mobile.Dto; + +public class PickCompleteDto +{ + /// + /// 拣货ID + /// + [JsonPropertyName("pickingId")] + public string? PickingId { get; set; } + + /// + /// 载具号 + /// + [JsonPropertyName("vehicleNo")] + public string? VehicleNo { get; set; } + + /// + /// 物料号 + /// + [JsonPropertyName("goodsId")] + public string? GoodsId { get; set; } + + /// + /// 拣货数量 + /// + [JsonPropertyName("pickingNum")] + public string? PickingNum { get; set; } + + +} diff --git a/WmsMobileServe/ApiServe/Mobile/Service/PickService.cs b/WmsMobileServe/ApiServe/Mobile/Service/PickService.cs new file mode 100644 index 0000000..110256f --- /dev/null +++ b/WmsMobileServe/ApiServe/Mobile/Service/PickService.cs @@ -0,0 +1,41 @@ +using WmsMobileServe.Annotation; +using WmsMobileServe.ApiServe.Mobile.Dto; +using WmsMobileServe.ApiServe.Mobile.Vo; +using WmsMobileServe.DataBase.Base.Dao; +using WmsMobileServe.DataBase.Base.Po; +using WmsMobileServe.Utils; + +namespace WmsMobileServe.ApiServe.Mobile.Service; + + +[Component] +public class PickService(TPickingGoodsDao pickingGoodsDao) +{ + + public MobileApiResponse> GetPickTask(string? vehicleNo) + { + if (string.IsNullOrWhiteSpace(vehicleNo)) return MobileApiResponse>.Fail("请求参数错误"); + List? result = pickingGoodsDao.SelectPickTask(vehicleNo); + if(result == default) return MobileApiResponse>.Fail("数据服务异常"); + if(result.Count < 1) return MobileApiResponse>.Fail("该托盘没有待检货物"); + return MobileApiResponse>.Success("成功", result); + } + + + + public MobileApiResponse PickComplete(List request) + { + if (request.Count < 1) return MobileApiResponse.Fail("请求参数错误"); + List<(string? vehicleNo, string? goodsId, decimal? pickingNum)> pickData = []; + foreach (PickCompleteDto pickCompleteDto in request) + { + var pickNum = pickCompleteDto.PickingNum; + if(!pickNum.IsNumber()) pickNum = "0"; + pickData.Add((pickCompleteDto.VehicleNo, pickCompleteDto.GoodsId, Convert.ToDecimal(pickNum))); + } + bool updateResult = pickingGoodsDao.PickComplete(pickData); + return updateResult ? MobileApiResponse.Success("完成") : MobileApiResponse.Fail("数据服务异常"); + } + + +} diff --git a/WmsMobileServe/ApiServe/Mobile/Service/StockInService.cs b/WmsMobileServe/ApiServe/Mobile/Service/StockInService.cs new file mode 100644 index 0000000..e373ce8 --- /dev/null +++ b/WmsMobileServe/ApiServe/Mobile/Service/StockInService.cs @@ -0,0 +1,427 @@ +using WmsMobileServe.Annotation; +using WmsMobileServe.ApiClient.Mes; +using WmsMobileServe.ApiClient.Mes.Dto; +using WmsMobileServe.ApiServe.Mobile.Dto; +using WmsMobileServe.ApiServe.Mobile.Vo; +using WmsMobileServe.DataBase.Base.Dao; +using WmsMobileServe.DataBase.Base.Po; +using WmsMobileServe.Utils; + +namespace WmsMobileServe.ApiServe.Mobile.Service; + + +[Component] +public class StockInService(MesApiClient mesApiClient, TOnGoodsShelfDao onGoodsShelfDao, TMiStockDao miStockDao, CuxWmsPoLinesItfDao cuxWmsPoLinesItfDao, + TRKWareNOticeTabDao wareNoticeTabDao) +{ + /// + /// 空载具入库 + /// + /// + /// + public MobileApiResponse EmptyVehicleIn(EmptyVehicleInReq request) + { + if (string.IsNullOrEmpty(request.VehicleNo)) return MobileApiResponse.Fail("传入的载具号为空"); + /* 检验载具是否有入库任务 */ + var stackInRasks = onGoodsShelfDao.SelectWithVehicleNo(request.VehicleNo); + if(stackInRasks == default) return MobileApiResponse.Fail("数据服务异常,请稍后再试"); + if(stackInRasks.Count > 0) return MobileApiResponse.Fail(string.Format("该载具号:{0} 存在入库任务,请核实后再试", request.VehicleNo)); + /* 检验载具是否在库存中 */ + var stocks = miStockDao.SelectWithVehicleNo(request.VehicleNo); + if (stocks == default) return MobileApiResponse.Fail("数据服务异常,请稍后再试"); + if (stocks.Count > 0) return MobileApiResponse.Fail(string.Format("该载具号:{0} 仍在库中,请核实后再试", request.VehicleNo)); + /* 构建空载具信息插入数据库 */ + TOnGoodsShelf onGoodsShelf = new() + { + LotId = UUIDUtils.GetNewUUID2(), + GoodsId = "000000", + ProviderId = "景旺", + LocationId = "", + StoNum = 1, + AccNum = 1, + ShelfNum = 1, + StockNum = 0, + OnDate = DateTime.Now, + OnShelfUserId = "Mobile_Android", + StorageId = "-", + StorageAreaId = "-", + UpGoodsId = UUIDUtils.GetNewUUID2(), + GoodsTypeId = "0", + StorageMode = "空托入库", + ProdictionDate = DateTime.Now, + Ctl = request.VehicleNo, + BarCode = "-", + CustomerId = "景旺", + GoodsName = "空载具", + Status = "0", + Unit = "-", + TaskType = "1", + GoodsMeasureId = UUIDUtils.GetNewUUID2(), + PackingNum = 1, + DamageNum = 1, + Remark = "" + }; + var insertResult = onGoodsShelfDao.Insert(onGoodsShelf); + if (insertResult > 0) return MobileApiResponse.Success(string.Format("空载具:{0} 产生入库任务成功", request.VehicleNo)); + return MobileApiResponse.Fail(string.Format("空载具:{0} 产生入库任务失败,数据无法插入", request.VehicleNo)); + } + + + + /// + /// 获取箱子号对应的信息 + /// + /// + /// + public MobileApiResponse GetGoodsDetail(string? boxNo) + { + if (string.IsNullOrEmpty(boxNo)) return MobileApiResponse.Fail("无法识别的箱子号"); + /* -------------- 测试 --------------------------- */ + //GetGoodsDetailResp mesGoodsDetailTest = new() + //{ + // BoxNo = boxNo, + // NumPerBox = 1, + // GoodsNum = 23, + // PacketNum = 44, + // OtherNum = 12, + // GoodsId = "000", + // SaleOrderNo = "sa123", + // PacketLevel = "1", + // Cycle = "20天", + // CustomSaleOrderNo = "Csale1122", + // MinorWarehouseId = "99", + // GoodsDesc = "测试物料", + //}; + //return MobileApiResponse.Success(data: mesGoodsDetailTest); + /* -------------- 测试结束 --------------------------- */ + var response = mesApiClient.GetOutBoxInfo(boxNo); + if (!response.IsSend) return MobileApiResponse.Fail(string.Format("请求MES货物物料信息失败,异常信息:{0}", response.Exception?.Message)); + string? responseData = response.ResponseMsg; + if (string.IsNullOrEmpty(responseData)) return MobileApiResponse.Fail(string.Format("MES返回的信息无法识别,信息:{0}", responseData)); + var responseDto = XmlUtils.Deserialize(responseData); + if (responseDto == null) return MobileApiResponse.Fail(string.Format("MES返回的信息无法解析,信息:{0}", responseData)); + string mesData = responseDto.Data ?? ""; + string[] dataDetail = mesData.Split(':'); + if (dataDetail.Length < 2) return MobileApiResponse.Fail(string.Format("MES返回的信息格式不正确,信息:{0}", responseData)); + if (dataDetail[0] != "Succ") return MobileApiResponse.Fail(string.Format("MES返回箱子错误,信息:{0}", responseData)); + string goodsInfo = dataDetail[1]; + string[] goodsDetails = goodsInfo.Split("|"); + if (goodsDetails.Length < 12) return MobileApiResponse.Fail(string.Format("MES返回的箱子信息参数数量不足,信息:{0}", goodsDetails)); + if(goodsDetails[0] != boxNo) return MobileApiResponse.Fail(string.Format("MES返回的箱子号和扫描的箱子号不一致,返回的箱号:{0}", goodsDetails[0])); + string numPerBox = goodsDetails[1]; // 每包数量 + string goodsNum = goodsDetails[2]; // 包装数量 + string packetNum = goodsDetails[3]; // 包数量 + string otherNum = goodsDetails[4]; // 零包数量 + if(numPerBox.IsNotDecimal() || goodsNum.IsNotDecimal() || packetNum.IsNotDecimal() || otherNum.IsNotDecimal()) + return MobileApiResponse.Fail(string.Format("MES返回的箱子信息内的数量存在不是数字情况,信息:{0}", goodsDetails)); + GetGoodsDetailResp mesGoodsDetail = new() + { + BoxNo = dataDetail[0], + NumPerBox = numPerBox.ToDecimal(), + GoodsNum = goodsNum.ToDecimal(), + PacketNum = packetNum.ToDecimal(), + OtherNum = otherNum.ToDecimal(), + GoodsId = dataDetail[5], + SaleOrderNo = dataDetail[6], + PacketLevel = dataDetail[7], + Cycle = dataDetail[8], + CustomSaleOrderNo = dataDetail[9], + MinorWarehouseId = dataDetail[10], + GoodsDesc = dataDetail[11], + }; + return MobileApiResponse.Success(data: mesGoodsDetail); + } + + + /// + /// 根据订单行和物料号 + /// + /// + /// + public MobileApiResponse GetCanUseGoods(GetCanUseGoodsRequest request) + { + if (string.IsNullOrEmpty(request.OrderId) || string.IsNullOrEmpty(request.GoodsId) || !request.GoodsId.IsNumber()) + return MobileApiResponse.Fail("传入的参数不正确"); + var wareNoticeTabs = cuxWmsPoLinesItfDao.SelectCanUse(request.OrderId, Convert.ToInt64(request.GoodsId)); + if(wareNoticeTabs == null) return MobileApiResponse.Fail("数据服务异常,请稍后再试"); + if(wareNoticeTabs.Count < 1) return MobileApiResponse.Fail("该入库单行和物料无入库单数据"); + foreach(var cus in wareNoticeTabs) + { + if(cus.Quantity - cus.QuantityReceives > 0) return MobileApiResponse.Success("查询成功", cus); + } + return MobileApiResponse.Fail("无可入库的数量或数量不足,请检查采购单可入库数量"); + } + + + /// + /// 码盘入库 + /// + /// + /// + public MobileApiResponse BindingVehicleIn(BindingVehicleInRequest request) + { + if(string.IsNullOrEmpty(request.VehicleNo)) return MobileApiResponse.Fail("载具号为空"); + var goods = request.Goods; + if (goods == null || goods.Count < 1) return MobileApiResponse.Fail("传入的数据为空"); + List onGoodsShelfs = []; + foreach (var item in goods) + { + if (string.IsNullOrEmpty(item.ProductData)) item.ProductData = "19970102"; + /* 构建空载具信息插入数据库 */ + TOnGoodsShelf onGoodsShelf = new() + { + LotId = UUIDUtils.GetNewUUID2(), + GoodsId = item.ItemId, + ProviderId = item.Segment1, + LocationId = "", + StoNum = 1, + AccNum = 1, + ShelfNum = Convert.ToInt32(item.Quantity), + StockNum = 0, + OnDate = DateTime.Now, + OnShelfUserId = "Mobile_Android", + StorageId = "-", + StorageAreaId = item.Area, + UpGoodsId = UUIDUtils.GetNewUUID2(), + GoodsTypeId = item.GoodsTypeId, + StorageMode = "码盘入库", + ProdictionDate = new DateTime(Convert.ToInt32(item.ProductData.Substring(0, 4)), Convert.ToInt32(item.ProductData.Substring(4, 2)), Convert.ToInt32(item.ProductData.Substring(6, 2))), + Ctl = request.VehicleNo, + BarCode = item.SendOrderId, + CustomerId = item.PruBatch, + GoodsName = item.GoodsName, + WGH = item.Weight, + BAOZHIQI = "", + Status = "0", + PRODUCLOTID = item.LineLocationId, + Unit = item.Unit, + TaskType = request.InArea, + GoodsMeasureId = item.Batch, + PackingNum = 1, + DamageNum = 1, + Remark = "", + PoHeaderId = item.PoHeaderId, + PoLineId = item.PoLineId, + }; + onGoodsShelfs.Add(onGoodsShelf); + } + //bool createTask = wareNoticeTabDao.UpdateStatusAndInsertInTask("1", onGoodsShelfs, request.VehicleNo); + var insertResult = onGoodsShelfDao.Insert([.. onGoodsShelfs]); + if (insertResult > 0) return MobileApiResponse.Success(string.Format("空载具:{0} 产生入库任务成功", request.VehicleNo)); + return MobileApiResponse.Fail(string.Format("空载具:{0} 产生入库任务失败,数据无法插入", request.VehicleNo)); + } + + + + + + + /// + /// MES 码盘入库 + /// + /// + /// + public MobileApiResponse BindingVehicleInMes(BindingVehicleInReq request) + { + if (string.IsNullOrEmpty(request.VehicleNo) || request.BindingGoodsDetails == null) return MobileApiResponse.Fail("传入的数据无法识别"); + if (request.BindingGoodsDetails.Count < 1) return MobileApiResponse.Fail("传入的数据为空"); + /* 检验载具是否有入库任务 */ + var stackInRasks = onGoodsShelfDao.SelectWithVehicleNo(request.VehicleNo); + if (stackInRasks == null) return MobileApiResponse.Fail("数据服务异常,请稍后再试"); + if (stackInRasks.Count > 0) return MobileApiResponse.Fail(string.Format("该载具号:{0} 存在入库任务,请核实后再试", request.VehicleNo)); + /* 检验载具是否在库存中 */ + var stocks = miStockDao.SelectWithVehicleNo(request.VehicleNo); + if (stocks == null) return MobileApiResponse.Fail("数据服务异常,请稍后再试"); + if (stocks.Count > 0) return MobileApiResponse.Fail(string.Format("该载具号:{0} 仍在库中,请核实后再试", request.VehicleNo)); + /* 构建入库任务 */ + List onGoodsShelves = []; // 需要入库的任务 + foreach (var item in request.BindingGoodsDetails) + { + onGoodsShelves.Add(new() + { + LotId = UUIDUtils.GetNewUUID2(), + GoodsId = item.GoodsId, + ProviderId = item.SaleOrderNo, + LocationId = "", + StoNum = item.OtherNum, + AccNum = item.NumPerBox, + ShelfNum = item.GoodsNum, + StockNum = item.PacketNum, + OnDate = DateTime.Now, + OnShelfUserId = "Mobile_Android", + StorageId = "-", + StorageAreaId = item.MinorWarehouseId, + UpGoodsId = UUIDUtils.GetNewUUID2(), + GoodsTypeId = item.PacketLevel, + StorageMode = "MES码盘入库", + ProdictionDate = DateTime.Now, + Ctl = request.VehicleNo, + BarCode = item.BoxNo, + CustomerId = item.CustomSaleOrderNo, + GoodsName = item.GoodsDesc, + Status = "0", + Unit = "-", + TaskType = request.TaskType.ToString(), + GoodsMeasureId = item.SaleOrderNo, + PackingNum = 1, + DamageNum = 1, + ScaleUnit = item.Cycle, + Remark = "" + }); + } + var insertResult = onGoodsShelfDao.Insert([.. onGoodsShelves]); + if (insertResult > 0) return MobileApiResponse.Success(string.Format("载具:{0} 产生入库任务成功", request.VehicleNo)); + return MobileApiResponse.Fail(string.Format("载具:{0} 产生入库任务失败,数据无法插入", request.VehicleNo)); + } + + + /// + /// 获取EBS待码盘信息 + /// + /// + public MobileApiResponse> GetCuxData() + { + List? cuxWmsPoLinesItfs = cuxWmsPoLinesItfDao.SelectWithStatus(0); + if (cuxWmsPoLinesItfs == default) return MobileApiResponse>.Fail(); + return MobileApiResponse>.Success(data: cuxWmsPoLinesItfs); + } + + /// + /// Ebs 码盘入库 + /// + /// + /// + public MobileApiResponse BindingVehicleInEbsOld(BindingVehicleInEbsOldReq request) + { + if (string.IsNullOrEmpty(request.VehicleNo) || request.BindingGoodsDetails == null) return MobileApiResponse.Fail("传入的数据无法识别"); + if (request.BindingGoodsDetails.Count < 1) return MobileApiResponse.Fail("传入的数据为空"); + /* 检验载具是否有入库任务 */ + var stackInRasks = onGoodsShelfDao.SelectWithVehicleNo(request.VehicleNo); + if (stackInRasks == null) return MobileApiResponse.Fail("数据服务异常,请稍后再试"); + if (stackInRasks.Count > 0) return MobileApiResponse.Fail(string.Format("该载具号:{0} 存在入库任务,请核实后再试", request.VehicleNo)); + /* 检验载具是否在库存中 */ + var stocks = miStockDao.SelectWithVehicleNo(request.VehicleNo); + if (stocks == null) return MobileApiResponse.Fail("数据服务异常,请稍后再试"); + if (stocks.Count > 0) return MobileApiResponse.Fail(string.Format("该载具号:{0} 仍在库中,请核实后再试", request.VehicleNo)); + /* 构建入库任务 */ + List onGoodsShelves = []; // 需要入库的任务 + List<(string? PoHeaderId, string? PoLineId, string? LineLocationId)> orders = []; + foreach (var item in request.BindingGoodsDetails) + { + onGoodsShelves.Add(new() + { + LotId = UUIDUtils.GetNewUUID2(), + GoodsId = item.GoodsId, + ProviderId = item.SaleOrderNo, + LocationId = "", + StoNum = item.OtherNum, + AccNum = item.NumPerBox, + ShelfNum = item.GoodsNum, + StockNum = item.PacketNum, + OnDate = DateTime.Now, + OnShelfUserId = "Mobile_Android", + StorageId = "-", + StorageAreaId = item.MinorWarehouseId, + UpGoodsId = UUIDUtils.GetNewUUID2(), + GoodsTypeId = item.PacketLevel, + StorageMode = "EBS码盘入库", + ProdictionDate = DateTime.Now, + Ctl = request.VehicleNo, + BarCode = item.BoxNo, + CustomerId = item.CustomSaleOrderNo, + GoodsName = item.GoodsDesc, + Status = "0", + Unit = "-", + TaskType = request.TaskType.ToString(), + GoodsMeasureId = item.SaleOrderNo, + PackingNum = 1, + DamageNum = 1, + ScaleUnit = item.Cycle, + Remark = "" + }); + orders.Add((item.PoHeaderId, item.PoLineId, item.LineLocationId)); + } + // 插入数据,更新状态 + var insertResult = onGoodsShelfDao.InsertWithCux(onGoodsShelves, orders); + if (insertResult) return MobileApiResponse.Success(string.Format("载具:{0} 产生入库任务成功", request.VehicleNo)); + return MobileApiResponse.Fail(string.Format("载具:{0} 产生入库任务失败,数据无法插入", request.VehicleNo)); + } + + /// + /// Ebs 码盘入库 + /// + /// + /// + public MobileApiResponse BindingVehicleInEbs(BindingVehicleInEbsReq request) + { + if (string.IsNullOrEmpty(request.VehicleNo) || request.BindingGoodsDetails == default) return MobileApiResponse.Fail("传入的数据无法识别"); + if (request.BindingGoodsDetails.Count < 1) return MobileApiResponse.Fail("传入的数据为空"); + /* 检验载具是否有入库任务 */ + var stackInRasks = onGoodsShelfDao.SelectWithVehicleNo(request.VehicleNo); + if (stackInRasks == default) return MobileApiResponse.Fail("数据服务异常,请稍后再试"); + if (stackInRasks.Count > 0) return MobileApiResponse.Fail(string.Format("该载具号:{0} 存在入库任务,请核实后再试", request.VehicleNo)); + /* 检验载具是否在库存中 */ + var stocks = miStockDao.SelectWithVehicleNo(request.VehicleNo); + if (stocks == default) return MobileApiResponse.Fail("数据服务异常,请稍后再试"); + if (stocks.Count > 0) return MobileApiResponse.Fail(string.Format("该载具号:{0} 仍在库中,请核实后再试", request.VehicleNo)); + /* 检查入库单中是否有该任务 */ + //foreach (var item in request.BindingGoodsDetails) + //{ + // List cuxWmsPos = cuxWmsPoLinesItfDao. + + + + + + //} + + + + + + + + // /* 构建入库任务 */ + // List onGoodsShelves = []; // 需要入库的任务 + //List<(string? PoHeaderId, string? PoLineId, string? LineLocationId)> orders = []; + //foreach (var item in request.BindingGoodsDetails) + //{ + // onGoodsShelves.Add(new() + // { + // LotId = UUIDUtils.GetNewUUID2(), + // GoodsId = item.GoodsId, + // ProviderId = item.SaleOrderNo, + // LocationId = "", + // StoNum = item.OtherNum, + // AccNum = item.NumPerBox, + // ShelfNum = item.GoodsNum, + // StockNum = item.PacketNum, + // OnDate = DateTime.Now, + // OnShelfUserId = "Mobile_Android", + // StorageId = "-", + // StorageAreaId = item.MinorWarehouseId, + // UpGoodsId = UUIDUtils.GetNewUUID2(), + // GoodsTypeId = item.PacketLevel, + // StorageMode = "EBS码盘入库", + // ProdictionDate = DateTime.Now, + // Ctl = request.VehicleNo, + // BarCode = item.BoxNo, + // CustomerId = item.CustomSaleOrderNo, + // GoodsName = item.GoodsDesc, + // Status = "0", + // Unit = "-", + // TaskType = request.TaskType.ToString(), + // GoodsMeasureId = item.SaleOrderNo, + // PackingNum = 1, + // DamageNum = 1, + // ScaleUnit = item.Cycle, + // Remark = "" + // }); + // orders.Add((item.PoHeaderId, item.PoLineId, item.LineLocationId)); + //} + // 插入数据,更新状态 + //var insertResult = onGoodsShelfDao.InsertWithCux(onGoodsShelves, orders); + //if (insertResult) return MobileApiResponse.Success(string.Format("载具:{0} 产生入库任务成功", request.VehicleNo)); + return MobileApiResponse.Fail(string.Format("载具:{0} 产生入库任务失败,数据无法插入", request.VehicleNo)); + } +} diff --git a/WmsMobileServe/ApiServe/Mobile/Vo/CuxWmsPoLinesItfView.cs b/WmsMobileServe/ApiServe/Mobile/Vo/CuxWmsPoLinesItfView.cs new file mode 100644 index 0000000..d2158ae --- /dev/null +++ b/WmsMobileServe/ApiServe/Mobile/Vo/CuxWmsPoLinesItfView.cs @@ -0,0 +1,190 @@ +using System.Text.Json.Serialization; +using SqlSugar; + +namespace WmsMobileServe.ApiServe.Mobile.Vo; + + +/// +/// 采购订单表 +/// +[SugarTable("CUX_WMS_PO_LINES_ITF_ZH")] +public class CuxWmsPoLinesItfView +{ + + /// + /// 订单头主键 + /// + [SugarColumn(ColumnName = "PO_HEADER_ID")] + [JsonPropertyName("poHeaderId")] + public int? PoHeaderId { get; set; } + + /// + /// 订单行主键 + /// + [SugarColumn(ColumnName = "PO_LINE_ID")] + [JsonPropertyName("poLineId")] + public int? PoLineId { get; set; } + + /// + /// 发运行主键 + /// + [SugarColumn(ColumnName = "LINE_LOCATION_ID")] + [JsonPropertyName("lineLocationId")] + public int? LineLocationId { get; set; } + + /// + /// 收货组织代码 + /// + [SugarColumn(ColumnName = "SHIP_TO_ORGANIZATION_CODE")] + [JsonPropertyName("shipToOrganization")] + public string? ShipToOrganization { get; set;} + + /// + /// 订单行号 + /// + [SugarColumn(ColumnName = "LINE_NUM")] + [JsonPropertyName("lineNum")] + public int? LineNum { get; set; } + + /// + /// 物料ID + /// + [SugarColumn(ColumnName = "ITEM_ID")] + [JsonPropertyName("itemId")] + public long? ItemId { get; set; } + + /// + /// 订单行 + /// + [SugarColumn(ColumnName = "SEGMENT")] + [JsonPropertyName("segment1")] + public string? Segment1 { get; set; } + + /// + /// 物料描述 + /// + [SugarColumn(ColumnName = "ITEM_DESCRIPTION")] + [JsonPropertyName("itemDesc")] + public string? ItemDesc { get; set; } + + /// + /// 采购单位 + /// + [SugarColumn(ColumnName = "PUR_UOM_CODE")] + [JsonPropertyName("purUomCode")] + public string? PurUomCode { get; set; } + + /// + /// 库存单位 + /// + [SugarColumn(ColumnName = "INV_UOM_CODE")] + [JsonPropertyName("invUomCode")] + public string? InvUomCode { get; set; } + + /// + /// 单位转换率 + /// + [SugarColumn(ColumnName = "CONVERSION_RATE")] + [JsonPropertyName("conversionRate")] + public int? ConversionRate { get; set; } + + /// + /// 型号 测试架用 + /// + [SugarColumn(ColumnName = "ITEM_TYPE")] + [JsonPropertyName("itemType")] + public string? ItemType { get; set; } + + /// + /// 发运行号 + /// + [SugarColumn(ColumnName = "SHIPMENT_NUM")] + [JsonPropertyName("shipmentNum")] + public int? ShipmentNum { get; set; } + + /// + /// 发运行接收人附注 + /// + [SugarColumn(ColumnName = "NOTE_TO_RECEIVER")] + [JsonPropertyName("noteToReceicer")] + public string? NoteToReceicer { get; set; } + + /// + /// 分配ID + /// + [SugarColumn(ColumnName = "PO_DISTRIBUTION_ID")] + [JsonPropertyName("poDistributionId")] + public int? PoDistributionId { get; set; } + + /// + /// 分配行号 + /// + [SugarColumn(ColumnName = "DISTRIBUTION_NUM")] + [JsonPropertyName("disTributionNum")] + public int? DisTributionNum { get; set; } + + /// + /// 数量 + /// + [SugarColumn(ColumnName = "QUANTITY")] + [JsonPropertyName("quantity")] + public int? Quantity { get; set; } + + /// + /// 已接收数量 + /// + [SugarColumn(ColumnName = "QUANTITY_RECEIVED")] + [JsonPropertyName("quantityReceives")] + public int? QuantityReceives { get; set; } + + /// + /// 取消数量 + /// + [SugarColumn(ColumnName = "QUANTITY_CANCELLED")] + [JsonPropertyName("quantityCancelled")] + public int? QuantityCancelled { get; set; } + + ///// + ///// 承诺日期 + ///// + //[SugarColumn(ColumnName = "PROMISED_DATE")] + //[JsonPropertyName("promisdeDate")] + //public DateTime? PromisdeDate { get; set; } + + ///// + ///// 需要日期 + ///// + //[SugarColumn(ColumnName = "NEED_BY_DATE")] + //[JsonPropertyName("needByDate")] + //public DateTime? NeedByDate { get; set; } + + /// + /// 关闭模式 + /// + [SugarColumn(ColumnName = "CLOSED_CODE")] + [JsonPropertyName("closedCode")] + public string? ClosedCode { get; set; } + + /// + /// 最后更新日期 + /// + [SugarColumn(ColumnName = "LAST_UPDATE_DATE")] + [JsonPropertyName("lastUpdateDate")] + public DateTime? LastUpdateDate { get; set; } + + /// + /// 最后更新人 + /// + [SugarColumn(ColumnName = "LAST_UPDATED_BY")] + [JsonPropertyName("lastUpdatedBy")] + public int? LastUpdatedBy { get; set; } + + /// + /// 状态(1:未处理;2:错误;3:成功) + /// + [SugarColumn(ColumnName = "STATUS")] + [JsonPropertyName("status")] + public int? Status { get; set; } + + +} diff --git a/WmsMobileServe/ApiServe/Mobile/Vo/MobileApiResponse.cs b/WmsMobileServe/ApiServe/Mobile/Vo/MobileApiResponse.cs new file mode 100644 index 0000000..11b5264 --- /dev/null +++ b/WmsMobileServe/ApiServe/Mobile/Vo/MobileApiResponse.cs @@ -0,0 +1,79 @@ +using System.Text.Json.Serialization; + +namespace WmsMobileServe.ApiServe.Mobile.Vo; + +/// +/// 移动端接口的响应基础返回类 +/// +public class MobileApiResponse +{ + + /// + /// 响应码 + /// + [JsonPropertyName("code")] + public int? Code { get; set; } + + /// + /// 响应消息 + /// + [JsonPropertyName("message")] + public string? Message { get; set; } + + /// + /// 成功的响应 + /// + /// + /// + public static MobileApiResponse Success(string message = "SUCCESS") => new() { Code = 200, Message = message }; + + /// + /// 数据重复的响应 + /// + /// + /// + public static MobileApiResponse Repeat(string message = "DATA_REPEAT") => new() { Code = 201, Message = message }; + + /// + /// 失败的响应 + /// + /// + /// + public static MobileApiResponse Fail(string message = "ERROR") => new() { Code = 400, Message = message }; + +} + +/// +/// 移动端接口的响应带数据返回类 +/// +public class MobileApiResponse : MobileApiResponse +{ + + /// + /// 返回数据 + /// + [JsonPropertyName("data")] + public T? Data { get; set; } + + /// + /// 成功的响应 + /// + /// + /// + public static MobileApiResponse Success(string message = "SUCCESS", T? data = default) => new() { Code = 200, Message = message, Data = data }; + + /// + /// 数据重复的响应 + /// + /// + /// + public static MobileApiResponse Repeat(string message = "DATA_REPEAT", T? data = default) => new() { Code = 201, Message = message, Data = data }; + + /// + /// 失败的响应 + /// + /// + /// + public static MobileApiResponse Fail(string message = "ERROR", T? data = default) => new() { Code = 400, Message = message, Data = data }; + +} diff --git a/WmsMobileServe/AppRunning/AutofacModule.cs b/WmsMobileServe/AppRunning/AutofacModule.cs new file mode 100644 index 0000000..2de09e5 --- /dev/null +++ b/WmsMobileServe/AppRunning/AutofacModule.cs @@ -0,0 +1,20 @@ +using Autofac; +using System.Reflection; +using WmsMobileServe.Annotation; + +namespace WmsMobileServe.AppRunning; + +/// +/// 依赖注入的相关 +/// +public class AutofacModule : Autofac.Module +{ + protected override void Load(ContainerBuilder builder) + { + var assembly = Assembly.GetExecutingAssembly(); + // 注册 Component + builder.RegisterAssemblyTypes(assembly) + .Where(w => w.GetCustomAttribute(typeof(ComponentAttribute)) != default) + .SingleInstance(); // 注入单例 + } +} diff --git a/WmsMobileServe/AppRunning/HostService.cs b/WmsMobileServe/AppRunning/HostService.cs new file mode 100644 index 0000000..669ec3c --- /dev/null +++ b/WmsMobileServe/AppRunning/HostService.cs @@ -0,0 +1,39 @@ + +namespace WmsMobileServe.AppRunning; + + +/// +/// 程序生命周期 +/// +public class HostService : IHostedLifecycleService +{ + public Task StartAsync(CancellationToken cancellationToken) + { + return Task.CompletedTask; + } + + public Task StartedAsync(CancellationToken cancellationToken) + { + return Task.CompletedTask; + } + + public Task StartingAsync(CancellationToken cancellationToken) + { + return Task.CompletedTask; + } + + public Task StopAsync(CancellationToken cancellationToken) + { + return Task.CompletedTask; + } + + public Task StoppedAsync(CancellationToken cancellationToken) + { + return Task.CompletedTask; + } + + public Task StoppingAsync(CancellationToken cancellationToken) + { + return Task.CompletedTask; + } +} diff --git a/WmsMobileServe/DataBase/Base/Dao/BaseDao.cs b/WmsMobileServe/DataBase/Base/Dao/BaseDao.cs new file mode 100644 index 0000000..1c84cfc --- /dev/null +++ b/WmsMobileServe/DataBase/Base/Dao/BaseDao.cs @@ -0,0 +1,15 @@ +using WmsMobileServe.Annotation; + +namespace WmsMobileServe.DataBase.Base.Dao; + +[Component] +public class BaseDao(DataBaseClient client) +{ + + + public DataBaseClient dataBaseClient() + { + return client; + } + +} diff --git a/WmsMobileServe/DataBase/Base/Dao/CuxWmsPoLinesItfDao.cs b/WmsMobileServe/DataBase/Base/Dao/CuxWmsPoLinesItfDao.cs new file mode 100644 index 0000000..4399919 --- /dev/null +++ b/WmsMobileServe/DataBase/Base/Dao/CuxWmsPoLinesItfDao.cs @@ -0,0 +1,84 @@ +using WmsMobileServe.Annotation; +using WmsMobileServe.ApiServe.Mobile.Vo; +using WmsMobileServe.DataBase.Base.Po; + +namespace WmsMobileServe.DataBase.Base.Dao; + +[Component] +public class CuxWmsPoLinesItfDao(DataBaseClient client) +{ + + /// + /// 根据状态查询 + /// + /// + /// + public List? SelectWithStatus(int? status) + { + if (status == default) return default; + try + { + var sqlFuc = client.Instance().Queryable() + .Where(x => x.Status == status); + return sqlFuc.ToList(); + } + catch (Exception ex) + { + _ = ex; + return default; + } + } + + + public List? Select(CuxWmsPoLinesItf cuxWmsPoLinesItf) + { + try + { + var sqlFuc = client.Instance().Queryable() + .WhereIF(cuxWmsPoLinesItf.PoHeaderId == default, w => w.PoHeaderId == cuxWmsPoLinesItf.PoHeaderId) + .WhereIF(cuxWmsPoLinesItf.PoLineId == default, w => w.PoLineId == cuxWmsPoLinesItf.PoLineId) + .WhereIF(cuxWmsPoLinesItf.LineLocationId == default, w => w.LineLocationId == cuxWmsPoLinesItf.LineLocationId) + .WhereIF(cuxWmsPoLinesItf.ShipToOrganization == default, w => w.ShipToOrganization == cuxWmsPoLinesItf.ShipToOrganization) + .WhereIF(cuxWmsPoLinesItf.LineNum == default, w => w.LineNum == cuxWmsPoLinesItf.LineNum) + .WhereIF(cuxWmsPoLinesItf.ItemId == default, w => w.ItemId == cuxWmsPoLinesItf.ItemId) + .WhereIF(cuxWmsPoLinesItf.Segment1 == default, w => w.Segment1 == cuxWmsPoLinesItf.Segment1) + .WhereIF(cuxWmsPoLinesItf.ItemDesc == default, w => w.ItemDesc == cuxWmsPoLinesItf.ItemDesc) + .WhereIF(cuxWmsPoLinesItf.PurUomCode == default, w => w.PurUomCode == cuxWmsPoLinesItf.PurUomCode) + .WhereIF(cuxWmsPoLinesItf.Quantity == default, w => w.Quantity == cuxWmsPoLinesItf.Quantity) + .WhereIF(cuxWmsPoLinesItf.QuantityReceives == default, w => w.QuantityReceives == cuxWmsPoLinesItf.QuantityReceives) + .WhereIF(cuxWmsPoLinesItf.Status == default, w => w.Status == cuxWmsPoLinesItf.Status); + return sqlFuc.ToList(); + } + catch (Exception ex) + { + _ = ex; + return default; + } + } + + /// + /// 查询可用的物料 + /// + /// + /// + /// + public List? SelectCanUse(string? orderId, long? goodId) + { + try + { + var sqlFuc = client.Instance().SqlQueryable($@" + SELECT a.*, b.SEGMENT1 AS SEGMENT FROM CUX_WMS_PO_LINES_ITF_ZH a +RIGHT JOIN CUX_WMS_PO_HEADES_ITF_ZH b ON a.PO_HEADER_ID = b.PO_HEADER_ID WHERE a.SEGMENT1 = '{orderId}' AND a.ITEM_ID = '{goodId}' AND (a.CLOSED_CODE = 'OPEN' OR a.CLOSED_CODE = 'CLOSED_FOR_INVOICE') + ").Select(); + return sqlFuc.ToList(); + } + catch (Exception ex) + { + _ = ex; + return null; + } + + } + + +} diff --git a/WmsMobileServe/DataBase/Base/Dao/TMiStockDao.cs b/WmsMobileServe/DataBase/Base/Dao/TMiStockDao.cs new file mode 100644 index 0000000..21b1e52 --- /dev/null +++ b/WmsMobileServe/DataBase/Base/Dao/TMiStockDao.cs @@ -0,0 +1,33 @@ +using WmsMobileServe.Annotation; +using WmsMobileServe.DataBase.Base.Po; + +namespace WmsMobileServe.DataBase.Base.Dao; + +/// +/// 库存表操作 +/// +[Component] +public class TMiStockDao(DataBaseClient client) +{ + + /// + /// 根据载具号查询库存 + /// + /// + /// + public List? SelectWithVehicleNo(string vehicleNo) + { + try + { + return client.Instance().Queryable() + .Where(w => w.Ctl == vehicleNo).ToList(); + } + catch (Exception ex) + { + _ = ex; + return default; + } + } + + +} diff --git a/WmsMobileServe/DataBase/Base/Dao/TOnGoodsShelfDao.cs b/WmsMobileServe/DataBase/Base/Dao/TOnGoodsShelfDao.cs new file mode 100644 index 0000000..79db2ad --- /dev/null +++ b/WmsMobileServe/DataBase/Base/Dao/TOnGoodsShelfDao.cs @@ -0,0 +1,81 @@ +using System.DirectoryServices.Protocols; +using WmsMobileServe.Annotation; +using WmsMobileServe.DataBase.Base.Po; + +namespace WmsMobileServe.DataBase.Base.Dao; + +/// +/// 入库任务表操作类 +/// +[Component] +public class TOnGoodsShelfDao(DataBaseClient client) +{ + + /// + /// 插入数据 + /// + /// + /// + public int Insert(params TOnGoodsShelf[] onGoodsShelfs) + { + try + { + return client.Instance().Insertable(onGoodsShelfs).ExecuteCommand(); + } + catch (Exception ex) + { + _ = ex; + return 0; + } + } + + + public bool InsertWithCux(List onGoodsShelfs, List<(string? PoHeaderId, string? PoLineId, string? LineLocationId)> values) + { + try + { + var tranResult = client.Instance().UseTran(() => + { + client.Instance().Insertable(onGoodsShelfs).ExecuteCommand(); // 插入任务 + foreach (var item in values) + { + client.Instance().Updateable().SetColumns(s => s.Status == 1) + .Where(w => w.PoHeaderId.ToString() == item.PoHeaderId && w.PoLineId.ToString() == item.PoLineId && w.LineLocationId.ToString() == item.LineLocationId).ExecuteCommand(); + } + }); + + return tranResult.IsSuccess; + } + catch (Exception ex) + { + _ = ex; + return false; + } + } + + + /// + /// 根据载具号查询任务 + /// + /// + /// + public List? SelectWithVehicleNo(string vehicleNo) + { + try + { + return client.Instance().Queryable() + .Where(w => w.Ctl == vehicleNo).ToList(); + } + catch (Exception ex) + { + _ = ex; + return default; + } + } + + + + + + +} diff --git a/WmsMobileServe/DataBase/Base/Dao/TPickingGoodsDao.cs b/WmsMobileServe/DataBase/Base/Dao/TPickingGoodsDao.cs new file mode 100644 index 0000000..6973472 --- /dev/null +++ b/WmsMobileServe/DataBase/Base/Dao/TPickingGoodsDao.cs @@ -0,0 +1,57 @@ +using WmsMobileServe.Annotation; +using WmsMobileServe.DataBase.Base.Po; + +namespace WmsMobileServe.DataBase.Base.Dao; + +/// +/// 出库任务表操作类 +/// +/// +[Component] +public class TPickingGoodsDao(DataBaseClient client) +{ + + public List? SelectPickTask(string? vehicleNo) + { + try + { + var sqlFuc = client.Instance().Queryable() + .Where(w => w.VehicleNo == vehicleNo && w.Status == "2"); + return sqlFuc.ToList(); + } + catch (Exception ex) + { + _ = ex; + return null; + } + } + + + public bool PickComplete(List<(string? vehicleNo, string? goodsId, decimal? pickingNum)> pickData) + { + try + { + var sqlFuc = client.Instance().UseTran(() => + { + foreach ((string? vehicleNo, string? goodsId, decimal? pickingNum) in pickData) + { + client.Instance().Updateable() + .SetColumns(s => s.Status == "3") + .SetColumns(s => s.GoodsNumSj == pickingNum) + .Where(w => w.VehicleNo == vehicleNo && w.GoodsId == goodsId).ExecuteCommand(); + } + }); + return sqlFuc.IsSuccess; + } + catch (Exception ex) + { + _ = ex; + return false; + } + } + + + + + +} diff --git a/WmsMobileServe/DataBase/Base/Dao/TRKWareNOticeTabDao.cs b/WmsMobileServe/DataBase/Base/Dao/TRKWareNOticeTabDao.cs new file mode 100644 index 0000000..9100363 --- /dev/null +++ b/WmsMobileServe/DataBase/Base/Dao/TRKWareNOticeTabDao.cs @@ -0,0 +1,64 @@ +using WmsMobileServe.Annotation; +using WmsMobileServe.DataBase.Base.Po; + +namespace WmsMobileServe.DataBase.Base.Dao; + +/// +/// 入库单操作 +/// +[Component] +public class TRKWareNOticeTabDao(DataBaseClient client) +{ + + + public List? SelectWithOrderIdAndGoodsId(string? orderId, string? goodsId) + { + try + { + var sqlFuc = client.Instance().Queryable() + .Where(w => w.PurchaseId == orderId && w.GoodsId == goodsId) + .OrderBy(o => o.PoLineId); + return sqlFuc.ToList(); + } + catch (Exception ex) + { + _ = ex; + return default; + + } + } + + + public bool UpdateStatusAndInsertInTask(string? status, List? goodsShelves, string? vehicleNo) + { + if (goodsShelves == null || goodsShelves.Count < 1) return false; + try + { + var sqlFuc = client.Instance().UseTran(() => + { + foreach(var goodsShelf in goodsShelves) + { + client.Instance().Updateable() + .SetColumns(s => s.PrintSts == status) + .SetColumns(s => s.PackageId == vehicleNo) + .SetColumns(s => s.ArrAmount == goodsShelf.ShelfNum) + .Where(w => w.PurchaseId == goodsShelf.ProviderId && w.GoodsId == goodsShelf.GoodsId && w.PoLineId == Convert.ToInt32(goodsShelf.PoLineId)).ExecuteCommand(); + + client.Instance().Insertable(goodsShelf).ExecuteCommand(); + } + }); + return sqlFuc.IsSuccess; + } + catch (Exception ex) + { + _ = ex; + return false; + + } + } + + + + + +} diff --git a/WmsMobileServe/DataBase/Base/DataBaseClient.cs b/WmsMobileServe/DataBase/Base/DataBaseClient.cs new file mode 100644 index 0000000..7f5b7ae --- /dev/null +++ b/WmsMobileServe/DataBase/Base/DataBaseClient.cs @@ -0,0 +1,32 @@ +using SqlSugar; +using WmsMobileServe.Annotation; + +namespace WmsMobileServe.DataBase.Base; + +/// +/// 基础数据库操作类 +/// +[Component] +public class DataBaseClient +{ + + private static SqlSugarScope? _instance; + + public SqlSugarScope Instance() + { + _instance ??= new SqlSugarScope(new ConnectionConfig() + { + IsAutoCloseConnection = true, + ConfigId = "0", + DbType = DbType.Oracle, + ConnectionString = "Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.63.179)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=OMS)));User Id=WMS_BW;Password=Q12.U. +/// 采购订单表 +/// +[SugarTable("CUX_WMS_PO_LINES_ITF_ZH")] +public class CuxWmsPoLinesItf +{ + /// + /// 订单头主键 + /// + [SugarColumn(ColumnName = "PO_HEADER_ID")] + [JsonPropertyName("poHeaderId")] + public int? PoHeaderId { get; set; } + + /// + /// 订单行主键 + /// + [SugarColumn(ColumnName = "PO_LINE_ID")] + [JsonPropertyName("poLineId")] + public int? PoLineId { get; set; } + + /// + /// 发运行主键 + /// + [SugarColumn(ColumnName = "LINE_LOCATION_ID")] + [JsonPropertyName("lineLocationId")] + public int? LineLocationId { get; set; } + + /// + /// 收货组织代码 + /// + [SugarColumn(ColumnName = "SHIP_TO_ORGANIZATION_CODE")] + [JsonPropertyName("shipToOrganization")] + public string? ShipToOrganization { get; set; + + + } + + /// + /// 订单行号 + /// + [SugarColumn(ColumnName = "LINE_NUM")] + [JsonPropertyName("lineNum")] + public int? LineNum { get; set; } + + /// + /// 物料ID + /// + [SugarColumn(ColumnName = "ITEM_ID")] + [JsonPropertyName("itemId")] + public long? ItemId { get; set; } + + /// + /// 订单行 + /// + [SugarColumn(ColumnName = "SEGMENT1")] + [JsonPropertyName("segment1")] + public string? Segment1 { get; set; } + + /// + /// 物料描述 + /// + [SugarColumn(ColumnName = "ITEM_DESCRIPTION")] + [JsonPropertyName("itemDesc")] + public string? ItemDesc { get; set; } + + /// + /// 采购单位 + /// + [SugarColumn(ColumnName = "PUR_UOM_CODE")] + [JsonPropertyName("purUomCode")] + public string? PurUomCode { get; set; } + + /// + /// 库存单位 + /// + [SugarColumn(ColumnName = "INV_UOM_CODE")] + [JsonPropertyName("invUomCode")] + public string? InvUomCode { get; set; } + + /// + /// 单位转换率 + /// + [SugarColumn(ColumnName = "CONVERSION_RATE")] + [JsonPropertyName("conversionRate")] + public int? ConversionRate { get; set; } + + /// + /// 型号 测试架用 + /// + [SugarColumn(ColumnName = "ITEM_TYPE")] + [JsonPropertyName("itemType")] + public string? ItemType { get; set; } + + /// + /// 发运行号 + /// + [SugarColumn(ColumnName = "SHIPMENT_NUM")] + [JsonPropertyName("shipmentNum")] + public int? ShipmentNum { get; set; } + + /// + /// 发运行接收人附注 + /// + [SugarColumn(ColumnName = "NOTE_TO_RECEIVER")] + [JsonPropertyName("noteToReceicer")] + public string? NoteToReceicer { get; set; } + + /// + /// 分配ID + /// + [SugarColumn(ColumnName = "PO_DISTRIBUTION_ID")] + [JsonPropertyName("poDistributionId")] + public int? PoDistributionId { get; set; } + + /// + /// 分配行号 + /// + [SugarColumn(ColumnName = "DISTRIBUTION_NUM")] + [JsonPropertyName("disTributionNum")] + public int? DisTributionNum { get; set; } + + /// + /// 数量 + /// + [SugarColumn(ColumnName = "QUANTITY")] + [JsonPropertyName("quantity")] + public int? Quantity { get; set; } + + /// + /// 已接收数量 + /// + [SugarColumn(ColumnName = "QUANTITY_RECEIVED")] + [JsonPropertyName("quantityReceives")] + public int? QuantityReceives { get; set; } + + /// + /// 取消数量 + /// + [SugarColumn(ColumnName = "QUANTITY_CANCELLED")] + [JsonPropertyName("quantityCancelled")] + public int? QuantityCancelled { get; set; } + + ///// + ///// 承诺日期 + ///// + //[SugarColumn(ColumnName = "PROMISED_DATE")] + //[JsonPropertyName("promisdeDate")] + //public DateTime? PromisdeDate { get; set; } + + ///// + ///// 需要日期 + ///// + //[SugarColumn(ColumnName = "NEED_BY_DATE")] + //[JsonPropertyName("needByDate")] + //public DateTime? NeedByDate { get; set; } + + /// + /// 关闭模式 + /// + [SugarColumn(ColumnName = "CLOSED_CODE")] + [JsonPropertyName("closedCode")] + public string? ClosedCode { get; set; } + + /// + /// 最后更新日期 + /// + [SugarColumn(ColumnName = "LAST_UPDATE_DATE")] + [JsonPropertyName("lastUpdateDate")] + public DateTime? LastUpdateDate { get; set; } + + /// + /// 最后更新人 + /// + [SugarColumn(ColumnName = "LAST_UPDATED_BY")] + [JsonPropertyName("lastUpdatedBy")] + public int? LastUpdatedBy { get; set; } + + /// + /// 状态(1:未处理;2:错误;3:成功) + /// + [SugarColumn(ColumnName = "STATUS")] + [JsonPropertyName("status")] + public int? Status { get; set; } + + + + + + + +} diff --git a/WmsMobileServe/DataBase/Base/Po/TMiStock.cs b/WmsMobileServe/DataBase/Base/Po/TMiStock.cs new file mode 100644 index 0000000..24c245d --- /dev/null +++ b/WmsMobileServe/DataBase/Base/Po/TMiStock.cs @@ -0,0 +1,29 @@ +using SqlSugar; + +namespace WmsMobileServe.DataBase.Base.Po; + +/// +/// 库存表 +/// +[SugarTable("T_MI_STOCK")] +public class TMiStock +{ + + // --- + + + /// + /// 载具号 + /// + [SugarColumn(ColumnName = "CTL")] + public string? Ctl { get; set; } + + /// + /// 库存状态 + /// + [SugarColumn(ColumnName = "STS")] + public string? Status { get; set; } + + + +} diff --git a/WmsMobileServe/DataBase/Base/Po/TOnGoodsShelf.cs b/WmsMobileServe/DataBase/Base/Po/TOnGoodsShelf.cs new file mode 100644 index 0000000..36da469 --- /dev/null +++ b/WmsMobileServe/DataBase/Base/Po/TOnGoodsShelf.cs @@ -0,0 +1,221 @@ +using Microsoft.SqlServer.Server; +using SqlSugar; + +namespace WmsMobileServe.DataBase.Base.Po; + +/// +/// 入库任务表 +/// +[SugarTable("T_ONGOODSSHELF")] +public class TOnGoodsShelf +{ + /// + /// 入库单号 + /// + [SugarColumn(ColumnName = "LOT_ID", IsPrimaryKey = true)] + public string? LotId { get; set; } + + /// + /// 物料编号 + /// + [SugarColumn(ColumnName = "GOODSID")] + public string? GoodsId { get; set; } + + /// + /// 货主 + /// + [SugarColumn(ColumnName = "PROVIDER_ID")] + public string? ProviderId { get; set; } + + /// + /// 库位 + /// + [SugarColumn(ColumnName = "LOCATION_ID")] + public string? LocationId { get; set; } + + /// + /// 入库数量 + /// + [SugarColumn(ColumnName = "STO_NUM")] + public decimal? StoNum { get; set; } + + /// + /// 接收数量 + /// + [SugarColumn(ColumnName = "ACC_NUM")] + public decimal? AccNum { get; set; } + + /// + /// 上架数量 + /// + [SugarColumn(ColumnName = "SHELF_NUM")] + public decimal? ShelfNum { get; set; } + + /// + /// 实际上架数量 + /// + [SugarColumn(ColumnName = "STOCK_NUM")] + public decimal? StockNum { get; set; } + + /// + /// 上架时间 + /// + [SugarColumn(ColumnName = "ONDATE")] + public DateTime? OnDate { get; set; } + + /// + /// 上架人 + /// + [SugarColumn(ColumnName = "ONSHELFUSERID")] + public string? OnShelfUserId { get; set; } + + /// + /// 仓库编号 + /// + [SugarColumn(ColumnName = "STORAGE_ID")] + public string? StorageId { get; set; } + + /// + /// 库区编号 + /// + [SugarColumn(ColumnName = "STORAGE_AREA_ID")] + public string? StorageAreaId { get; set; } + + /// + /// 上架单号 + /// + [SugarColumn(ColumnName = "UPGOODS_ID")] + public string? UpGoodsId { get; set; } + + // HASVOLUME + + /// + /// 商品类别编号 + /// + [SugarColumn(ColumnName = "GOODS_TYPEID")] + public string? GoodsTypeId { get; set; } + + /// + /// 入库类型 + /// + [SugarColumn(ColumnName = "STORAGE_MODE")] + public string? StorageMode { get; set; } + + /// + /// 生产日期 + /// + [SugarColumn(ColumnName = "PRODUCTION_DATE")] + public DateTime? ProdictionDate { get; set; } + + // GOODSVOLUME + + /// + /// 载具号 + /// + [SugarColumn(ColumnName = "CTL")] + public string? Ctl { get; set; } + + /// + /// + /// + [SugarColumn(ColumnName = "BARCODE")] + public string? BarCode { get; set; } + + /// + /// 客户编号 + /// + [SugarColumn(ColumnName = "CUSTOMER_ID")] + public string? CustomerId { get; set; } + + /// + /// 物品名称 + /// + [SugarColumn(ColumnName = "GOODSNAME")] + public string? GoodsName { get; set; } + + // PLCID + // HIGH + + /// + /// 状态 + /// + [SugarColumn(ColumnName = "STATUS")] + public string? Status { get; set; } + + /// + /// + /// + public string? PRODUCLOTID { get; set; } + + /// + /// 单位 + /// + [SugarColumn(ColumnName = "UNIT")] + public string? Unit { get; set; } + + /// + /// 保质期 + /// + [SugarColumn(ColumnName = "BAOZHIQI")] + public string? BAOZHIQI { get; set; } + + // WHSELOC + // INSTAND + + + + /// + /// 重量 + /// + [SugarColumn(ColumnName = "WGH")] + public string? WGH { get; set; } + + // DECID + + /// + /// + /// + [SugarColumn(ColumnName = "TASKTYPE")] + public string? TaskType { get; set; } + + /// + /// + /// + [SugarColumn(ColumnName = "GOODS_MEASURE_ID")] + public string? GoodsMeasureId { get; set; } + + /// + /// 打包数量 + /// + [SugarColumn(ColumnName = "PACKING_NUM")] + public decimal? PackingNum { get; set; } + + /// + /// + /// + [SugarColumn(ColumnName = "DAMAGE_NUM")] + public decimal? DamageNum { get; set; } + + // ...... + + /// + /// + /// + [SugarColumn(ColumnName = "SCALE_UNIT")] + public string? ScaleUnit { get; set; } + + /// + /// 备注 + /// + [SugarColumn(ColumnName = "REMARK")] + public string? Remark { get; set; } + + + [SugarColumn(ColumnName = "PO_HEADER_ID")] + public string? PoHeaderId { get; set; } + + [SugarColumn(ColumnName = "PO_LINE_ID")] + public string? PoLineId { get; set; } + + +} diff --git a/WmsMobileServe/DataBase/Base/Po/TPickGoods.cs b/WmsMobileServe/DataBase/Base/Po/TPickGoods.cs new file mode 100644 index 0000000..7894d29 --- /dev/null +++ b/WmsMobileServe/DataBase/Base/Po/TPickGoods.cs @@ -0,0 +1,89 @@ +using System.Text.Json.Serialization; +using SqlSugar; + +namespace WmsMobileServe.DataBase.Base.Po; + +/// +/// 出库/拣货任务表 +/// +[SugarTable("T_CK_PICKINGWAVEGOODS")] +public class TPickGoods +{ + /// + /// + /// + [JsonPropertyName("pickingId")] + [SugarColumn(ColumnName = "PICKINGID")] + public string? PickingId { get; set; } + + /// + /// + /// + [JsonPropertyName("goodsId")] + [SugarColumn(ColumnName = "GOOD_ID")] + public string? GoodsId { get; set;} + + /// + /// + /// + [JsonPropertyName("goodsName")] + [SugarColumn(ColumnName = "GOODS_NAME")] + public string? GoodsName { get; set; } + + /// + /// + /// + [JsonPropertyName("vehicleNo")] + [SugarColumn(ColumnName = "CTL")] + public string? VehicleNo { get; set; } + + /// + /// + /// + [JsonPropertyName("location")] + [SugarColumn(ColumnName = "LOC_ID")] + public string? Location { get; set; } + + /// + /// + /// + [JsonPropertyName("miStockNum")] + [SugarColumn(ColumnName = "MISTOCK_NUM")] + public decimal? MiStockNum { get; set; } + + /// + /// + /// + [JsonPropertyName("pickingNum")] + [SugarColumn(ColumnName = "PICKING_NUM")] + public decimal? PickingNum { get; set; } + + /// + /// + /// + [JsonPropertyName("goodsNumSj")] + [SugarColumn(ColumnName = "GOODS_NUM_SJ")] + public decimal? GoodsNumSj { get; set; } + + /// + /// + /// + [JsonPropertyName("status")] + [SugarColumn(ColumnName = "STATUS")] + public string? Status { get; set; } + + + /// + /// + /// + [JsonPropertyName("outStand")] + [SugarColumn(ColumnName = "OUTSTAND")] + public string? OutStand { get; set; } + + + + + + + +} diff --git a/WmsMobileServe/DataBase/Base/Po/TRKWareNoticeTab.cs b/WmsMobileServe/DataBase/Base/Po/TRKWareNoticeTab.cs new file mode 100644 index 0000000..7da6e40 --- /dev/null +++ b/WmsMobileServe/DataBase/Base/Po/TRKWareNoticeTab.cs @@ -0,0 +1,232 @@ +using System.Text.Json.Serialization; +using SqlSugar; + +namespace WmsMobileServe.DataBase.Base.Po; + + +[SugarTable("T_RK_WARE_NOTICE_TAB")] +public class TRKWareNoticeTab +{ + + /// + /// 入库通知单号 + /// + [JsonPropertyName("warehouseId")] + [SugarColumn(ColumnName = "WAREHOUSING_ID")] + public string? WarehouseId { get; set; } + + /// + /// 物料号 + /// + [JsonPropertyName("goodsId")] + [SugarColumn(ColumnName = "GOODS_ID")] + public string? GoodsId { get; set; } + + /// + /// 采购数量 + /// + [JsonPropertyName("amount")] + [SugarColumn(ColumnName = "AMOUNT")] + public int? Amount { get; set; } + + /// + /// 码盘数量 + /// + [JsonPropertyName("arramount")] + [SugarColumn(ColumnName = "ARRAMOUNT")] + public int? ArrAmount { get; set; } + + + /// + /// 生产日期 + /// + [JsonPropertyName("productionDate")] + [SugarColumn(ColumnName = "PRODUCTION_DATE")] + public DateTime? ProductionDate { get; set; } + + /// + /// 入库仓库编号 + /// + [JsonPropertyName("storageId")] + [SugarColumn(ColumnName = "STORAGE_ID")] + public string? StorageId { get; set; } + + /// + /// 入库库区编号 + /// + [JsonPropertyName("storageAreaId")] + [SugarColumn(ColumnName = "STORAGE_AREA_ID")] + public string? StorageAreaId { get; set; } + + /// + /// + /// + [JsonPropertyName("packageId")] + [SugarColumn(ColumnName = "PACKAGE_ID")] + public string? PackageId { get; set; } + + /// + /// + /// + [JsonPropertyName("remark")] + [SugarColumn(ColumnName = "REMARK")] + public string? Remark { get; set; } + + /// + /// 单位 + /// + [JsonPropertyName("unit")] + [SugarColumn(ColumnName = "UNIT")] + public string? Unit { get; set; } + + /// + /// + /// + [JsonPropertyName("goodsTypeId")] + [SugarColumn(ColumnName = "GOODS_TYPE_ID")] + public string? GoodsTypeId { get; set; } + + /// + /// + /// + [JsonPropertyName("provoderId")] + [SugarColumn(ColumnName = "PROVIDER_ID")] + public string? ProvoderId { get; set; } + + /// + /// 采购单号 + /// + [JsonPropertyName("purchaseId")] + [SugarColumn(ColumnName = "PURCHASE_ID")] + public string? PurchaseId { get; set; } + + /// + /// + /// + [JsonPropertyName("barCode")] + [SugarColumn(ColumnName = "BARCODE")] + public string? BarCode { get; set; } + + /// + /// + /// + [JsonPropertyName("printSts")] + [SugarColumn(ColumnName = "PRINTSTS")] + public string? PrintSts { get; set; } + + /// + /// + /// + [JsonPropertyName("goodsMeasureId")] + [SugarColumn(ColumnName = "GOODS_MEASURE_ID")] + public string? GoodsMeasureId { get; set; } + + /// + /// + /// + [JsonPropertyName("printNum")] + [SugarColumn(ColumnName = "PRINTNUM")] + public decimal? PrintNum { get; set; } + + /// + /// + /// + [JsonPropertyName("diskSts")] + [SugarColumn(ColumnName = "DISKSTS")] + public string? DiskSts { get; set; } + + /// + /// + /// + [JsonPropertyName("customerId")] + [SugarColumn(ColumnName = "CUSTOMER_ID")] + public string? CustomerId { get; set; } + + /// + /// + /// + [JsonPropertyName("producLotId")] + [SugarColumn(ColumnName = "PRODUCLOTID")] + public string? ProducLotId { get; set; } + + /// + /// + /// + [JsonPropertyName("netWeight")] + [SugarColumn(ColumnName = "NET_WEIGH")] + public decimal? NetWeight { get; set; } + + /// + /// + /// + [JsonPropertyName("poHeaderId")] + [SugarColumn(ColumnName = "PO_HEADER_ID")] + public int? PoHeaderId { get; set; } + + /// + /// + /// + [JsonPropertyName("poLineId")] + [SugarColumn(ColumnName = "PO_LINE_ID")] + public int? PoLineId { get; set; } + + /// + /// + /// + [JsonPropertyName("lineLocationId")] + [SugarColumn(ColumnName = "LINE_LOCATION_ID")] + public int? LineLocationId { get; set; } + + /// + /// + /// + [JsonPropertyName("shipToOrganizationCode")] + [SugarColumn(ColumnName = "SHIP_TO_ORGANIZATION_CODE")] + public string? ShipToOrganizationCode { get; set; } + + /// + /// + /// + [JsonPropertyName("shipToOrganizationId")] + [SugarColumn(ColumnName = "SHIP_TO_ORGANIZATION_ID")] + public string? ShipToOrganizationId { get; set; } + + /// + /// + /// + [JsonPropertyName("lineNum")] + [SugarColumn(ColumnName = "LINE_NUM")] + public int? LineNum { get; set; } + + /// + /// + /// + [JsonPropertyName("shipmentNum")] + [SugarColumn(ColumnName = "SHIPMENT_NUM")] + public int? ShipmentNum { get; set; } + + /// + /// + /// + [JsonPropertyName("poDistrobutionId")] + [SugarColumn(ColumnName = "PO_DISTRIBUTION_ID")] + public int? PoDistrobutionId { get; set; } + + /// + /// + /// + [JsonPropertyName("distributionNum")] + [SugarColumn(ColumnName = "DISTRIBUTION_NUM")] + public int? DistributionNum { get; set; } + + /// + /// + /// + [JsonPropertyName("goodsName")] + [SugarColumn(ColumnName = "GOODS_NAME")] + public string? GoodsName { get; set; } + + + + +} diff --git a/WmsMobileServe/Program.cs b/WmsMobileServe/Program.cs new file mode 100644 index 0000000..ec81604 --- /dev/null +++ b/WmsMobileServe/Program.cs @@ -0,0 +1,37 @@ + +using System.Text; +using Autofac.Extensions.DependencyInjection; +using Autofac; +using WmsMobileServe.AppRunning; +using WmsMobileServe.Utils; + +Console.Title = "WMS̨"; +Console.OutputEncoding = Encoding.UTF8; +ConsoleLog.DisbleQuickEditMode(); + +var builder = WebApplication.CreateBuilder(args); +builder.Services.AddControllers().AddJsonOptions(options => +{ + options.JsonSerializerOptions.PropertyNamingPolicy = null; // ޸ķãԭʵ +}); +builder.Services.AddHostedService(); +// ӿκ˷ +builder.Services.AddCors(options => +{ + options.AddPolicy("any", policyBuilder => + { + policyBuilder.WithOrigins("*").AllowAnyOrigin().AllowAnyMethod().AllowAnyHeader(); + }); +}); +builder.WebHost.UseUrls("http://*:19990"); +builder.Host.UseServiceProviderFactory(new AutofacServiceProviderFactory()); // ʹ autoFac 滻ע +builder.Host.ConfigureContainer(builder => +{ + builder.RegisterModule(); +}); + +var app = builder.Build(); +app.UseCors("any"); +app.UseAuthorization(); +app.MapControllers(); +app.Run(); diff --git a/WmsMobileServe/Properties/PublishProfiles/FolderProfile.pubxml b/WmsMobileServe/Properties/PublishProfiles/FolderProfile.pubxml new file mode 100644 index 0000000..d68a2f6 --- /dev/null +++ b/WmsMobileServe/Properties/PublishProfiles/FolderProfile.pubxml @@ -0,0 +1,23 @@ + + + + + true + false + true + Release + Any CPU + FileSystem + bin\Release\net8.0\publish\ + FileSystem + <_TargetId>Folder + + net8.0 + win-x64 + true + edf77b93-3209-4d19-9bc5-789fbb0960fa + true + + \ No newline at end of file diff --git a/WmsMobileServe/Properties/PublishProfiles/FolderProfile.pubxml.user b/WmsMobileServe/Properties/PublishProfiles/FolderProfile.pubxml.user new file mode 100644 index 0000000..efb1b3e --- /dev/null +++ b/WmsMobileServe/Properties/PublishProfiles/FolderProfile.pubxml.user @@ -0,0 +1,11 @@ + + + + + <_PublishTargetUrl>F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\ + True|2024-11-30T10:55:01.7053760Z||;True|2024-11-28T10:34:31.9681134+08:00||; + + + \ No newline at end of file diff --git a/WmsMobileServe/Properties/PublishProfiles/FolderProfile1.pubxml b/WmsMobileServe/Properties/PublishProfiles/FolderProfile1.pubxml new file mode 100644 index 0000000..d68a2f6 --- /dev/null +++ b/WmsMobileServe/Properties/PublishProfiles/FolderProfile1.pubxml @@ -0,0 +1,23 @@ + + + + + true + false + true + Release + Any CPU + FileSystem + bin\Release\net8.0\publish\ + FileSystem + <_TargetId>Folder + + net8.0 + win-x64 + true + edf77b93-3209-4d19-9bc5-789fbb0960fa + true + + \ No newline at end of file diff --git a/WmsMobileServe/Properties/PublishProfiles/FolderProfile1.pubxml.user b/WmsMobileServe/Properties/PublishProfiles/FolderProfile1.pubxml.user new file mode 100644 index 0000000..0926921 --- /dev/null +++ b/WmsMobileServe/Properties/PublishProfiles/FolderProfile1.pubxml.user @@ -0,0 +1,11 @@ + + + + + True|2024-12-29T06:42:12.5709633Z||;True|2024-12-29T12:45:50.9744021+08:00||;True|2024-12-29T10:30:10.2631642+08:00||;True|2024-12-29T10:23:47.6305677+08:00||;True|2024-12-29T09:58:41.4310552+08:00||;True|2024-12-28T16:30:31.9065438+08:00||;True|2024-12-28T11:16:19.0245632+08:00||;True|2024-12-28T10:55:58.3606925+08:00||;True|2024-12-28T10:54:54.1710944+08:00||;True|2024-12-26T12:44:15.4238386+08:00||;True|2024-12-26T11:26:58.6023011+08:00||;True|2024-12-26T11:26:36.0586329+08:00||;True|2024-12-26T11:21:32.9976961+08:00||;False|2024-12-26T11:20:42.4803863+08:00||;True|2024-12-26T10:56:07.5030902+08:00||;True|2024-12-26T10:43:51.4346813+08:00||;True|2024-12-26T10:34:13.9843183+08:00||;True|2024-12-26T10:29:27.9055183+08:00||;False|2024-12-26T10:28:32.6652926+08:00||;True|2024-12-26T10:10:52.9526099+08:00||;True|2024-12-25T14:35:05.7471577+08:00||;False|2024-12-25T14:34:00.6938046+08:00||; + + <_PublishTargetUrl>F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\ + + \ No newline at end of file diff --git a/WmsMobileServe/Properties/launchSettings.json b/WmsMobileServe/Properties/launchSettings.json new file mode 100644 index 0000000..1cbbec6 --- /dev/null +++ b/WmsMobileServe/Properties/launchSettings.json @@ -0,0 +1,31 @@ +{ + "$schema": "http://json.schemastore.org/launchsettings.json", + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:50960", + "sslPort": 0 + } + }, + "profiles": { + "http": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "launchUrl": "weatherforecast", + "applicationUrl": "http://localhost:5134", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "launchUrl": "weatherforecast", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/WmsMobileServe/Utils/ConsoleLog.cs b/WmsMobileServe/Utils/ConsoleLog.cs new file mode 100644 index 0000000..ed98292 --- /dev/null +++ b/WmsMobileServe/Utils/ConsoleLog.cs @@ -0,0 +1,244 @@ +using System.Runtime.InteropServices; +using System.Text; + +namespace WmsMobileServe.Utils; + +/// +/// 输出信息 +/// +public class ConsoleLog +{ + + private static readonly object _locker = new(); + + /// + /// 输出提示信息 + /// + /// + public static void Info(params string[] messages) => Info(true, messages); + + /// + /// 输出提示信息 + /// + /// + /// + public static void Info(bool isShow, params string[] messages) + { + if (!isShow) return; + if (messages.Length == 0) return; + DateTime now = DateTime.Now; + StringBuilder stringBuilder = new(); + stringBuilder.AppendLine(now.ToString("yyyy-MM-dd HH:mm:ss:fff")); + foreach (string message in messages) + { + stringBuilder.AppendLine($" -- {message}"); + } + lock (_locker) + { + Console.ForegroundColor = ConsoleColor.DarkCyan; + Console.Write(stringBuilder.ToString()); + } + } + + + /// + /// 输出错误信息 + /// + /// + public static void Error(params string[] messages) => Error(true, messages); + + /// + /// 输出错误信息 + /// + /// + /// + public static void Error(bool isShow, params string[] messages) + { + if (!isShow) return; + if (messages.Length == 0) return; + DateTime now = DateTime.Now; + StringBuilder stringBuilder = new(); + stringBuilder.AppendLine(now.ToString("yyyy-MM-dd HH:mm:ss:fff")); + foreach (string message in messages) + { + stringBuilder.AppendLine($" -- {message}"); + } + lock (_locker) + { + Console.ForegroundColor = ConsoleColor.Red; + Console.Write(stringBuilder.ToString()); + } + } + + + /// + /// 输出异常信息 + /// + /// + public static void Exception(params string[] messages) => Exception(true, messages); + + /// + /// 输出异常信息 + /// + /// + /// + public static void Exception(bool isShow, params string[] messages) + { + if (!isShow) return; + if (messages.Length == 0) return; + DateTime now = DateTime.Now; + StringBuilder stringBuilder = new(); + stringBuilder.AppendLine(now.ToString("yyyy-MM-dd HH:mm:ss:fff")); + foreach (string message in messages) + { + stringBuilder.AppendLine($" -- {message}"); + } + lock (_locker) + { + Console.ForegroundColor = ConsoleColor.DarkRed; + Console.Write(stringBuilder.ToString()); + } + } + + + /// + /// 输出成功信息 + /// + /// + public static void Success(params string[] messages) => Success(true, messages); + + /// + /// 输出成功信息 + /// + /// + /// + public static void Success(bool isShow, params string[] messages) + { + if (!isShow) return; + if (messages.Length == 0) return; + DateTime now = DateTime.Now; + StringBuilder stringBuilder = new(); + stringBuilder.AppendLine(now.ToString("yyyy-MM-dd HH:mm:ss:fff")); + foreach (string message in messages) + { + stringBuilder.AppendLine($" -- {message}"); + } + lock (_locker) + { + Console.ForegroundColor = ConsoleColor.DarkGreen; + Console.Write(stringBuilder.ToString()); + } + } + + + /// + /// 输出警告信息 + /// + /// + public static void Warning(params string[] messages) => Warning(true, messages); + + /// + /// 输出警告信息 + /// + /// + /// + public static void Warning(bool isShow, params string[] messages) + { + if (!isShow) return; + if (messages.Length == 0) return; + DateTime now = DateTime.Now; + StringBuilder stringBuilder = new(); + stringBuilder.AppendLine(now.ToString("yyyy-MM-dd HH:mm:ss:fff")); + foreach (string message in messages) + { + stringBuilder.AppendLine($" -- {message}"); + } + lock (_locker) + { + Console.ForegroundColor = ConsoleColor.DarkYellow; + Console.Write(stringBuilder.ToString()); + } + } + + + /// + /// 输出蓝色提示信息 + /// + /// + public static void Tip(params string[] messages) => Tip(true, messages); + + /// + /// 输出蓝色提示信息 + /// + /// + /// + public static void Tip(bool isShow, params string[] messages) + { + if (!isShow) return; + if (messages.Length == 0) return; + DateTime now = DateTime.Now; + StringBuilder stringBuilder = new(); + stringBuilder.AppendLine(now.ToString("yyyy-MM-dd HH:mm:ss:fff")); + foreach (string message in messages) + { + stringBuilder.AppendLine($" -- {message}"); + } + lock (_locker) + { + Console.ForegroundColor = ConsoleColor.Blue; + Console.Write(stringBuilder.ToString()); + } + } + + /// + /// Tcp 通讯专用 + /// + /// + public static void Tcp(params string[] messages) => Tcp(true, messages); + + /// + /// Tcp 通讯专用 + /// + /// + /// + public static void Tcp(bool isShow, params string[] messages) + { + if (!isShow) return; + if (messages.Length == 0) return; + DateTime now = DateTime.Now; + StringBuilder stringBuilder = new(); + stringBuilder.AppendLine(now.ToString("yyyy-MM-dd HH:mm:ss:fff")); + foreach (string message in messages) + { + stringBuilder.AppendLine($" -- {message}"); + } + lock (_locker) + { + Console.ForegroundColor = ConsoleColor.White; + Console.Write(stringBuilder.ToString()); + } + } + + + const int STD_INPUT_HANDLE = -10; + const uint ENABLE_QUICK_EDIT_MODE = 0x0040; + [DllImport("kernel32.dll", SetLastError = true)] + internal static extern nint GetStdHandle(int hConsoleHandle); + [DllImport("kernel32.dll", SetLastError = true)] + internal static extern bool GetConsoleMode(nint hConsoleHandle, out uint mode); + [DllImport("kernel32.dll", SetLastError = true)] + internal static extern bool SetConsoleMode(nint hConsoleHandle, uint mode); + + /// + /// 禁用快速编辑 ---- 此项会屏蔽控制台输入 + /// + public static void DisbleQuickEditMode() + { + nint hStdin = GetStdHandle(STD_INPUT_HANDLE); + GetConsoleMode(hStdin, out uint mode); + mode &= ~ENABLE_QUICK_EDIT_MODE; + SetConsoleMode(hStdin, mode); + } + + +} \ No newline at end of file diff --git a/WmsMobileServe/Utils/HttpUtils/Entity/ApiResponseInfo.cs b/WmsMobileServe/Utils/HttpUtils/Entity/ApiResponseInfo.cs new file mode 100644 index 0000000..0f78785 --- /dev/null +++ b/WmsMobileServe/Utils/HttpUtils/Entity/ApiResponseInfo.cs @@ -0,0 +1,84 @@ +using System.Text; + +namespace WmsMobileServe.Utils.HttpUtils.Entity; + +public class ApiResponseInfo +{ + /// + /// 请求 URL + /// + public string? RequestUrl { get; set; } + + /// + /// 请求字符串 + /// + public string? RequestMsg { get; set; } + + /// + /// 响应字符串 + /// + public string? ResponseMsg { get; set; } + + /// + /// 请求时间 + /// + public DateTime? RequestTime { get; set; } + + /// + /// 响应时间 + /// + public DateTime? ResponseTime { get; set; } + + /// + /// 是否发送成功 + /// + /// + /// 注意:这里仅表示服务端有响应 + /// + public bool IsSend { get; set; } + + /// + /// 请求方式 + /// + public string? RequestMethod { get; set; } + + /// + /// 请求耗时 + /// + public double UseTime { get; set; } + + /// + /// 返回的异常,没有异常返回 null + /// + public Exception? Exception { get; set; } + + /// + /// 重写toString + /// + /// + public override string ToString() + { + StringBuilder builder = new(); + builder.AppendLine($"[请求结果] {IsSend}"); + builder.AppendLine($"[请求方式] {RequestMethod}"); + builder.AppendLine($"[请求地址] {RequestUrl}"); + builder.AppendLine($"[请求信息] {RequestMsg}"); + builder.AppendLine($"[响应信息] {ResponseMsg}"); + builder.AppendLine($"[请求时间] {RequestTime}"); + builder.AppendLine($"[响应时间] {RequestTime}"); + builder.AppendLine($"[请求耗时] {UseTime} ms"); + if (Exception != default) + { + builder.AppendLine($"[异常信息] {Exception.Message}"); + } + return builder.ToString(); + } +} + +public class ApiResponseInfo : ApiResponseInfo where T : class, new() +{ + /// + /// 响应的实体类 + /// + public T? ResponseEntity { get; set; } +} \ No newline at end of file diff --git a/WmsMobileServe/Utils/HttpUtils/WebApiClient.cs b/WmsMobileServe/Utils/HttpUtils/WebApiClient.cs new file mode 100644 index 0000000..852efab --- /dev/null +++ b/WmsMobileServe/Utils/HttpUtils/WebApiClient.cs @@ -0,0 +1,191 @@ +using System.Diagnostics; +using System.Net.Http.Headers; +using System.Text; +using Newtonsoft.Json; +using WmsMobileServe.Utils.HttpUtils.Entity; + + +namespace WmsMobileServe.Utils.HttpUtils; + +public class WebApiClient +{ + /* + * 作者:菻蔃 + * + * 版本时间:2024年5月10日 + * + */ + + public WebApiClient() { } + + private string? _baseUrl = string.Empty; + + private Action? _apiAction; + + public WebApiClient(Action apiAction) + { + _apiAction = apiAction; + } + + public WebApiClient(string url, Action action) + { + _baseUrl = url; + _apiAction = action; + } + + /// + /// 设置响应事件, + /// + /// + public void SetResponseAction(Action action) + { + _apiAction = action; + } + public void SetBaseUrl(string url) + { + _baseUrl = url; + } + + /// + /// 执行POST请求 + /// + /// + /// + /// + /// + /// + /// + public ApiResponseInfo HttpPost(TRequest requestEntity, string method = "", int time = 10000, bool executeAction = true) where TRequest : class where TResponse : class, new() + { + ApiResponseInfo result = new() + { + RequestMethod = "POST" + }; + string address = _baseUrl + method; + Encoding encoding = Encoding.UTF8; + Stopwatch sw = new(); + string sendMes = JsonConvert.SerializeObject(requestEntity); + sw.Start(); + try + { + HttpContent content = new StringContent(sendMes, encoding, "application/json"); + HttpClient client = new(); + client.DefaultRequestHeaders.Accept.Clear(); + client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json")); + client.Timeout = new TimeSpan(0, 0, 0, 0, time); + result.RequestTime = DateTime.Now; + var requestTask = client.PostAsync(address, content); + requestTask.Wait(); + var responseResult = requestTask.Result; + if (responseResult.IsSuccessStatusCode) + { + var responseRead = responseResult.Content.ReadAsStringAsync(); + responseRead.Wait(); + string responseString = responseRead.Result; + result.IsSend = true; + result.RequestMsg = sendMes; + result.RequestUrl = address; + result.ResponseMsg = responseString; + result.ResponseEntity = JsonConvert.DeserializeObject(responseString); + } + else + { + var responseCode = responseResult.StatusCode; + var responseRead = responseResult.Content.ReadAsStringAsync(); + responseRead.Wait(); + string responseString = responseRead.Result; + result.IsSend = false; + result.RequestMsg = sendMes; + result.RequestUrl = address; + result.Exception = new Exception($"[{responseCode}]{responseString}"); + } + } + catch (Exception ex) + { + result.IsSend = false; + result.RequestMsg = sendMes; + result.RequestUrl = address; + result.Exception = ex; + } + result.ResponseTime = DateTime.Now; + sw.Stop(); + result.ResponseTime = DateTime.Now; + TimeSpan ts = sw.Elapsed; + result.UseTime = ts.TotalMilliseconds; + if (executeAction) + { + _apiAction?.Invoke(result); + } + return result; + } + + + public ApiResponseInfo HttpGet(Dictionary? request, string method = "", int time = 10000, bool executeAction = true) + { + ApiResponseInfo result = new() + { + RequestMethod = "GET" + }; + Encoding encoding = Encoding.UTF8; + string paramString = ""; + if (request != null) + { + foreach (var param in request) + { + paramString += $"{param.Key}={param.Value}"; + } + } + string url = _baseUrl + method + $"{(string.IsNullOrEmpty(paramString) ? "" : $"?{paramString}")}"; + Stopwatch sw = new(); + sw.Start(); + try + { + HttpClient client = new(); + client.Timeout = new TimeSpan(0, 0, 0, 0, time); + result.RequestTime = DateTime.Now; + var requestTask = client.GetAsync(url); + requestTask.Wait(); + var responseResult = requestTask.Result; + if (responseResult.IsSuccessStatusCode) + { + var responseRead = responseResult.Content.ReadAsStringAsync(); + responseRead.Wait(); + string responseString = responseRead.Result; + result.IsSend = true; + result.RequestMsg = paramString; + result.RequestUrl = url; + result.ResponseMsg = responseString; + } + else + { + var responseCode = responseResult.StatusCode; + var responseRead = responseResult.Content.ReadAsStringAsync(); + responseRead.Wait(); + string responseString = responseRead.Result; + result.IsSend = false; + result.RequestMsg = paramString; + result.RequestUrl = url; + result.Exception = new Exception($"[{responseCode}]{responseString}"); + } + } + catch (Exception ex) + { + result.IsSend = false; + result.RequestMsg = paramString; + result.RequestUrl = url; + result.Exception = ex; + } + result.ResponseTime = DateTime.Now; + sw.Stop(); + result.ResponseTime = DateTime.Now; + TimeSpan ts = sw.Elapsed; + result.UseTime = ts.TotalMilliseconds; + if (executeAction) + { + _apiAction?.Invoke(result); + } + return result; + } + + +} \ No newline at end of file diff --git a/WmsMobileServe/Utils/StringUtils.cs b/WmsMobileServe/Utils/StringUtils.cs new file mode 100644 index 0000000..119c732 --- /dev/null +++ b/WmsMobileServe/Utils/StringUtils.cs @@ -0,0 +1,50 @@ +using System.Text.RegularExpressions; + +namespace WmsMobileServe.Utils; + +public static class StringUtils +{ + /// + /// 判断一个字符串是不是 decimal + /// + /// + /// + public static bool IsDecimal(this string? value) + { + if(string.IsNullOrWhiteSpace(value)) return false; + return Regex.IsMatch(value, "^\\d+\\.?\\d+$"); + } + + /// + /// 判断一个字符串 是不是 decimal + /// + /// + /// + public static bool IsNotDecimal(this string? value) + { + return !value.IsDecimal(); + } + + /// + /// 将字符串转换为 decimal + /// + /// + /// + public static decimal? ToDecimal(this string? value) + { + try + { + if (!value.IsDecimal()) return default; + return Convert.ToDecimal(value); + } + catch { return default; } + } + + public static bool IsNumber(this string? value) + { + if (string.IsNullOrWhiteSpace(value)) return false; + return Regex.IsMatch(value, "^\\d+$"); + } + + +} diff --git a/WmsMobileServe/Utils/UUIDUtils.cs b/WmsMobileServe/Utils/UUIDUtils.cs new file mode 100644 index 0000000..4a6eecc --- /dev/null +++ b/WmsMobileServe/Utils/UUIDUtils.cs @@ -0,0 +1,52 @@ +namespace WmsMobileServe.Utils; + +/// +/// 唯一识别号工具 +/// +public class UUIDUtils +{ + + const string sysId = "009"; // 系统的编号 + + #region 返回一个 UUID,以时间戳形式 + + private static readonly object getNewUUIDLock2 = new(); + private static string lastUUID2 = string.Empty; + private static string lasTimeTick2 = DateTime.Now.ToString("yyyyMMddHHmmssfff"); + private static ushort sortUUID2 = 0; + /// + /// 返回一个唯一识别号 以时间戳为基础 + /// + /// + /// + /// 这方法产生的ID会短一点,但是单位时间内产生的数量较少 + /// + public static string GetNewUUID2() + { + lock (getNewUUIDLock2) + { + while (true) + { + string timeTick = DateTimeOffset.UtcNow.ToUnixTimeMilliseconds().ToString(); + if (timeTick != lasTimeTick2) + { + lasTimeTick2 = timeTick; + sortUUID2 = 0; + } + string sort = sortUUID2.ToString().PadLeft(3, '0'); + string newUUID = $"{timeTick}{sysId}{sort}"; + sortUUID2++; + if (sortUUID2 > 900) + sortUUID2 = 0; + if (newUUID != lastUUID2) + { + lastUUID2 = newUUID; + return newUUID; + } + } + } + } + + #endregion + +} diff --git a/WmsMobileServe/Utils/XmlUtils.cs b/WmsMobileServe/Utils/XmlUtils.cs new file mode 100644 index 0000000..8641657 --- /dev/null +++ b/WmsMobileServe/Utils/XmlUtils.cs @@ -0,0 +1,32 @@ +using System.Reflection.PortableExecutable; +using System.Xml.Serialization; + +namespace WmsMobileServe.Utils; + +/// +/// XML 工具类 +/// +public class XmlUtils +{ + /// + /// 格式化xml字符串到实体类 + /// + /// + /// + /// + public static T? Deserialize(string xmlString) where T : class + { + try + { + using StringReader reader = new(xmlString); + XmlSerializer xs = new(typeof(T)); + T? ret = xs.Deserialize(reader) as T; + return ret; + } + catch { } + return default; + } + + + +} diff --git a/WmsMobileServe/WmsMobileServe.csproj b/WmsMobileServe/WmsMobileServe.csproj new file mode 100644 index 0000000..d6eef0e --- /dev/null +++ b/WmsMobileServe/WmsMobileServe.csproj @@ -0,0 +1,22 @@ + + + + net8.0 + enable + enable + true + + + + + + + + + + + + + + + diff --git a/WmsMobileServe/WmsMobileServe.csproj.user b/WmsMobileServe/WmsMobileServe.csproj.user new file mode 100644 index 0000000..d1d5f7c --- /dev/null +++ b/WmsMobileServe/WmsMobileServe.csproj.user @@ -0,0 +1,12 @@ + + + + ApiControllerEmptyScaffolder + root/Common/Api + http + F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\Properties\PublishProfiles\FolderProfile1.pubxml + + + ProjectDebugger + + \ No newline at end of file diff --git a/WmsMobileServe/appsettings.Development.json b/WmsMobileServe/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/WmsMobileServe/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/WmsMobileServe/appsettings.json b/WmsMobileServe/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/WmsMobileServe/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/WmsMobileServe/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/WmsMobileServe/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/WmsMobileServe/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/WmsMobileServe/obj/Debug/net8.0/ApiEndpoints.json b/WmsMobileServe/obj/Debug/net8.0/ApiEndpoints.json new file mode 100644 index 0000000..6cc04e7 --- /dev/null +++ b/WmsMobileServe/obj/Debug/net8.0/ApiEndpoints.json @@ -0,0 +1,224 @@ +[ + { + "ContainingType": "WmsMobileServe.ApiServe.Mobile.Controllers.StockInController", + "Method": "BindingVehicleIn", + "RelativePath": "api/mobile/stockIn/bindingVehicleIn", + "HttpMethod": "POST", + "IsController": true, + "Order": 0, + "Parameters": [ + { + "Name": "request", + "Type": "WmsMobileServe.ApiServe.Mobile.Dto.BindingVehicleInRequest", + "IsRequired": true + } + ], + "ReturnTypes": [ + { + "Type": "WmsMobileServe.ApiServe.Mobile.Vo.MobileApiResponse", + "MediaTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "StatusCode": 200 + } + ] + }, + { + "ContainingType": "WmsMobileServe.ApiServe.Mobile.Controllers.StockInController", + "Method": "BindingVehicleInEbs", + "RelativePath": "api/mobile/stockIn/bindingVehicleInEbs", + "HttpMethod": "POST", + "IsController": true, + "Order": 0, + "Parameters": [ + { + "Name": "request", + "Type": "WmsMobileServe.ApiServe.Mobile.Dto.BindingVehicleInEbsReq", + "IsRequired": true + } + ], + "ReturnTypes": [ + { + "Type": "WmsMobileServe.ApiServe.Mobile.Vo.MobileApiResponse", + "MediaTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "StatusCode": 200 + } + ] + }, + { + "ContainingType": "WmsMobileServe.ApiServe.Mobile.Controllers.StockInController", + "Method": "BindingVehicleInEbsOld", + "RelativePath": "api/mobile/stockIn/bindingVehicleInEbsOld", + "HttpMethod": "POST", + "IsController": true, + "Order": 0, + "Parameters": [ + { + "Name": "request", + "Type": "WmsMobileServe.ApiServe.Mobile.Dto.BindingVehicleInEbsOldReq", + "IsRequired": true + } + ], + "ReturnTypes": [ + { + "Type": "WmsMobileServe.ApiServe.Mobile.Vo.MobileApiResponse", + "MediaTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "StatusCode": 200 + } + ] + }, + { + "ContainingType": "WmsMobileServe.ApiServe.Mobile.Controllers.StockInController", + "Method": "BindingVehicleInMes", + "RelativePath": "api/mobile/stockIn/bindingVehicleInMes", + "HttpMethod": "POST", + "IsController": true, + "Order": 0, + "Parameters": [ + { + "Name": "request", + "Type": "WmsMobileServe.ApiServe.Mobile.Dto.BindingVehicleInReq", + "IsRequired": true + } + ], + "ReturnTypes": [ + { + "Type": "WmsMobileServe.ApiServe.Mobile.Vo.MobileApiResponse", + "MediaTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "StatusCode": 200 + } + ] + }, + { + "ContainingType": "WmsMobileServe.ApiServe.Mobile.Controllers.StockInController", + "Method": "EmptyVehicleIn", + "RelativePath": "api/mobile/stockIn/emptyVehicleIn", + "HttpMethod": "POST", + "IsController": true, + "Order": 0, + "Parameters": [ + { + "Name": "request", + "Type": "WmsMobileServe.ApiClient.Mes.Dto.EmptyVehicleInReq", + "IsRequired": true + } + ], + "ReturnTypes": [ + { + "Type": "WmsMobileServe.ApiServe.Mobile.Vo.MobileApiResponse", + "MediaTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "StatusCode": 200 + } + ] + }, + { + "ContainingType": "WmsMobileServe.ApiServe.Mobile.Controllers.StockInController", + "Method": "GetCanUseGoods", + "RelativePath": "api/mobile/stockIn/getCanUseGoods", + "HttpMethod": "POST", + "IsController": true, + "Order": 0, + "Parameters": [ + { + "Name": "request", + "Type": "WmsMobileServe.ApiServe.Mobile.Dto.GetCanUseGoodsRequest", + "IsRequired": true + } + ], + "ReturnTypes": [ + { + "Type": "WmsMobileServe.ApiServe.Mobile.Vo.MobileApiResponse\u00601[[System.Collections.Generic.List\u00601[[WmsMobileServe.DataBase.Base.Po.CuxWmsPoLinesItf, WmsMobileServe, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]", + "MediaTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "StatusCode": 200 + } + ] + }, + { + "ContainingType": "WmsMobileServe.ApiServe.Mobile.Controllers.StockInController", + "Method": "GetCuxData", + "RelativePath": "api/mobile/stockIn/getCuxData", + "HttpMethod": "GET", + "IsController": true, + "Order": 0, + "Parameters": [], + "ReturnTypes": [ + { + "Type": "WmsMobileServe.ApiServe.Mobile.Vo.MobileApiResponse\u00601[[System.Collections.Generic.List\u00601[[WmsMobileServe.DataBase.Base.Po.CuxWmsPoLinesItf, WmsMobileServe, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]", + "MediaTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "StatusCode": 200 + } + ] + }, + { + "ContainingType": "WmsMobileServe.ApiServe.Mobile.Controllers.StockInController", + "Method": "GetGoodsDetail", + "RelativePath": "api/mobile/stockIn/getGoodsDetail", + "HttpMethod": "GET", + "IsController": true, + "Order": 0, + "Parameters": [ + { + "Name": "boxNo", + "Type": "System.String", + "IsRequired": false + } + ], + "ReturnTypes": [ + { + "Type": "WmsMobileServe.ApiServe.Mobile.Vo.MobileApiResponse\u00601[[WmsMobileServe.ApiServe.Mobile.Dto.GetGoodsDetailResp, WmsMobileServe, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]", + "MediaTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "StatusCode": 200 + } + ] + }, + { + "ContainingType": "WmsMobileServe.ApiServe.Mobile.Controllers.StockInController", + "Method": "ApiTest", + "RelativePath": "api/mobile/stockIn/test", + "HttpMethod": "GET", + "IsController": true, + "Order": 0, + "Parameters": [], + "ReturnTypes": [ + { + "Type": "System.String", + "MediaTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "StatusCode": 200 + } + ] + } +] \ No newline at end of file diff --git a/WmsMobileServe/obj/Debug/net8.0/WmsMobil.9D52FE47.Up2Date b/WmsMobileServe/obj/Debug/net8.0/WmsMobil.9D52FE47.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.AssemblyInfo.cs b/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.AssemblyInfo.cs new file mode 100644 index 0000000..a0c3240 --- /dev/null +++ b/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("WmsMobileServe")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+051c9739c4e22ef13eae1293e06d561541999e46")] +[assembly: System.Reflection.AssemblyProductAttribute("WmsMobileServe")] +[assembly: System.Reflection.AssemblyTitleAttribute("WmsMobileServe")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.AssemblyInfoInputs.cache b/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.AssemblyInfoInputs.cache new file mode 100644 index 0000000..c4398ae --- /dev/null +++ b/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +faba1f4984443d296d9b9914e64aa807a202192c9637182dc0adfc7bbbba75aa diff --git a/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.GeneratedMSBuildEditorConfig.editorconfig b/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..cfe9868 --- /dev/null +++ b/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,19 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = WmsMobileServe +build_property.RootNamespace = WmsMobileServe +build_property.ProjectDir = F:\AndriodProject\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 8.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = F:\AndriodProject\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe +build_property._RazorSourceGeneratorDebug = diff --git a/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.GlobalUsings.g.cs b/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.GlobalUsings.g.cs new file mode 100644 index 0000000..025530a --- /dev/null +++ b/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using global::Microsoft.AspNetCore.Builder; +global using global::Microsoft.AspNetCore.Hosting; +global using global::Microsoft.AspNetCore.Http; +global using global::Microsoft.AspNetCore.Routing; +global using global::Microsoft.Extensions.Configuration; +global using global::Microsoft.Extensions.DependencyInjection; +global using global::Microsoft.Extensions.Hosting; +global using global::Microsoft.Extensions.Logging; +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Net.Http.Json; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.MvcApplicationPartsAssemblyInfo.cache b/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.assets.cache b/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.assets.cache new file mode 100644 index 0000000..5b95b92 Binary files /dev/null and b/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.assets.cache differ diff --git a/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.csproj.AssemblyReference.cache b/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.csproj.AssemblyReference.cache new file mode 100644 index 0000000..12735df Binary files /dev/null and b/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.csproj.AssemblyReference.cache differ diff --git a/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.csproj.BuildWithSkipAnalyzers b/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.csproj.CoreCompileInputs.cache b/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..44122f5 --- /dev/null +++ b/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +34fcacf41ab5c6025d87556e7654341b2ee60b401570bffc8193512a948fbb8e diff --git a/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.csproj.FileListAbsolute.txt b/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..d733338 --- /dev/null +++ b/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.csproj.FileListAbsolute.txt @@ -0,0 +1,342 @@ +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\appsettings.Development.json +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\appsettings.json +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\WmsMobileServe.exe +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\WmsMobileServe.deps.json +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\WmsMobileServe.runtimeconfig.json +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\WmsMobileServe.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\WmsMobileServe.pdb +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Autofac.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Autofac.Extensions.DependencyInjection.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Azure.Core.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Azure.Identity.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Bcl.AsyncInterfaces.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Data.SqlClient.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Data.Sqlite.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Identity.Client.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Identity.Client.Extensions.Msal.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.IdentityModel.Abstractions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.IdentityModel.JsonWebTokens.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.IdentityModel.Logging.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.IdentityModel.Tokens.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.SqlServer.Server.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Win32.SystemEvents.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\MySqlConnector.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Newtonsoft.Json.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Npgsql.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Oracle.ManagedDataAccess.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Oscar.Data.SqlClient.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\SQLitePCLRaw.batteries_v2.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\SQLitePCLRaw.core.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\SQLitePCLRaw.provider.e_sqlite3.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\SqlSugar.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\DM.DmProvider.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Kdbndp.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.ClientModel.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Configuration.ConfigurationManager.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Diagnostics.PerformanceCounter.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.DirectoryServices.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.DirectoryServices.Protocols.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Drawing.Common.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.IdentityModel.Tokens.Jwt.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Memory.Data.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Runtime.Caching.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Security.Cryptography.ProtectedData.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Security.Permissions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Windows.Extensions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\de\Microsoft.Data.SqlClient.resources.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\es\Microsoft.Data.SqlClient.resources.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\fr\Microsoft.Data.SqlClient.resources.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\it\Microsoft.Data.SqlClient.resources.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\ja\Microsoft.Data.SqlClient.resources.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\ko\Microsoft.Data.SqlClient.resources.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\pt-BR\Microsoft.Data.SqlClient.resources.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\ru\Microsoft.Data.SqlClient.resources.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\zh-Hans\Microsoft.Data.SqlClient.resources.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\zh-Hant\Microsoft.Data.SqlClient.resources.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\unix\lib\net8.0\Microsoft.Data.SqlClient.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net8.0\Microsoft.Data.SqlClient.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\browser-wasm\nativeassets\net8.0\e_sqlite3.a +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-arm\native\libe_sqlite3.so +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-arm64\native\libe_sqlite3.so +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-armel\native\libe_sqlite3.so +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-mips64\native\libe_sqlite3.so +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-musl-arm\native\libe_sqlite3.so +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-musl-arm64\native\libe_sqlite3.so +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-musl-x64\native\libe_sqlite3.so +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-ppc64le\native\libe_sqlite3.so +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-s390x\native\libe_sqlite3.so +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-x64\native\libe_sqlite3.so +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-x86\native\libe_sqlite3.so +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\maccatalyst-arm64\native\libe_sqlite3.dylib +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\maccatalyst-x64\native\libe_sqlite3.dylib +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\osx-arm64\native\libe_sqlite3.dylib +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\osx-x64\native\libe_sqlite3.dylib +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-arm\native\e_sqlite3.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-arm64\native\e_sqlite3.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-x64\native\e_sqlite3.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-x86\native\e_sqlite3.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Diagnostics.PerformanceCounter.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.DirectoryServices.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux\lib\net6.0\System.DirectoryServices.Protocols.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\osx\lib\net6.0\System.DirectoryServices.Protocols.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.DirectoryServices.Protocols.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net8.0\System.Runtime.Caching.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.csproj.AssemblyReference.cache +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.GeneratedMSBuildEditorConfig.editorconfig +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.AssemblyInfoInputs.cache +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.AssemblyInfo.cs +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.csproj.CoreCompileInputs.cache +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.MvcApplicationPartsAssemblyInfo.cache +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets.build.json +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets.development.json +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets\msbuild.WmsMobileServe.Microsoft.AspNetCore.StaticWebAssets.props +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets\msbuild.build.WmsMobileServe.props +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets\msbuild.buildMultiTargeting.WmsMobileServe.props +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets\msbuild.buildTransitive.WmsMobileServe.props +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets.pack.json +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\scopedcss\bundle\WmsMobileServe.styles.css +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobil.9D52FE47.Up2Date +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\refint\WmsMobileServe.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.pdb +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.genruntimeconfig.cache +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\ref\WmsMobileServe.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.csproj.AssemblyReference.cache +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.GeneratedMSBuildEditorConfig.editorconfig +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.AssemblyInfoInputs.cache +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.AssemblyInfo.cs +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.csproj.CoreCompileInputs.cache +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.MvcApplicationPartsAssemblyInfo.cache +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\refint\WmsMobileServe.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.pdb +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\appsettings.Development.json +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\appsettings.json +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\WmsMobileServe.exe +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\WmsMobileServe.deps.json +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\WmsMobileServe.runtimeconfig.json +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\WmsMobileServe.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\WmsMobileServe.pdb +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Autofac.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Autofac.Extensions.DependencyInjection.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Azure.Core.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Azure.Identity.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Bcl.AsyncInterfaces.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Data.SqlClient.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Data.Sqlite.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Identity.Client.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Identity.Client.Extensions.Msal.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.IdentityModel.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.IdentityModel.JsonWebTokens.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.IdentityModel.Logging.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.IdentityModel.Tokens.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.SqlServer.Server.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Win32.SystemEvents.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\MySqlConnector.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Newtonsoft.Json.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Npgsql.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Oracle.ManagedDataAccess.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Oscar.Data.SqlClient.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\SQLitePCLRaw.batteries_v2.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\SQLitePCLRaw.core.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\SQLitePCLRaw.provider.e_sqlite3.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\SqlSugar.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\DM.DmProvider.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Kdbndp.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.ClientModel.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Configuration.ConfigurationManager.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Diagnostics.PerformanceCounter.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.DirectoryServices.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.DirectoryServices.Protocols.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Drawing.Common.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.IdentityModel.Tokens.Jwt.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Memory.Data.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Runtime.Caching.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Security.Cryptography.ProtectedData.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Security.Permissions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Windows.Extensions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\de\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\es\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\fr\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\it\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\ja\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\ko\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\pt-BR\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\ru\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\zh-Hans\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\zh-Hant\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\unix\lib\net8.0\Microsoft.Data.SqlClient.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net8.0\Microsoft.Data.SqlClient.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\browser-wasm\nativeassets\net8.0\e_sqlite3.a +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-arm\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-arm64\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-armel\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-mips64\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-musl-arm\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-musl-arm64\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-musl-x64\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-ppc64le\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-s390x\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-x64\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-x86\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\maccatalyst-arm64\native\libe_sqlite3.dylib +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\maccatalyst-x64\native\libe_sqlite3.dylib +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\osx-arm64\native\libe_sqlite3.dylib +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\osx-x64\native\libe_sqlite3.dylib +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-arm\native\e_sqlite3.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-arm64\native\e_sqlite3.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-x64\native\e_sqlite3.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-x86\native\e_sqlite3.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Diagnostics.PerformanceCounter.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.DirectoryServices.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux\lib\net6.0\System.DirectoryServices.Protocols.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\osx\lib\net6.0\System.DirectoryServices.Protocols.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.DirectoryServices.Protocols.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net8.0\System.Runtime.Caching.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets.build.json +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets.development.json +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets\msbuild.WmsMobileServe.Microsoft.AspNetCore.StaticWebAssets.props +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets\msbuild.build.WmsMobileServe.props +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets\msbuild.buildMultiTargeting.WmsMobileServe.props +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets\msbuild.buildTransitive.WmsMobileServe.props +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets.pack.json +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\scopedcss\bundle\WmsMobileServe.styles.css +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobil.9D52FE47.Up2Date +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.genruntimeconfig.cache +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\ref\WmsMobileServe.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\appsettings.Development.json +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\appsettings.json +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\WmsMobileServe.exe +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\WmsMobileServe.deps.json +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\WmsMobileServe.runtimeconfig.json +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\WmsMobileServe.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\WmsMobileServe.pdb +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Autofac.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Autofac.Extensions.DependencyInjection.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Azure.Core.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Azure.Identity.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Bcl.AsyncInterfaces.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Data.SqlClient.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Data.Sqlite.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Identity.Client.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Identity.Client.Extensions.Msal.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.IdentityModel.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.IdentityModel.JsonWebTokens.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.IdentityModel.Logging.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.IdentityModel.Tokens.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.SqlServer.Server.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Win32.SystemEvents.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\MySqlConnector.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Newtonsoft.Json.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Npgsql.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Oracle.ManagedDataAccess.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Oscar.Data.SqlClient.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\SQLitePCLRaw.batteries_v2.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\SQLitePCLRaw.core.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\SQLitePCLRaw.provider.e_sqlite3.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\SqlSugar.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\DM.DmProvider.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Kdbndp.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.ClientModel.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Configuration.ConfigurationManager.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Diagnostics.PerformanceCounter.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.DirectoryServices.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.DirectoryServices.Protocols.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Drawing.Common.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.IdentityModel.Tokens.Jwt.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Memory.Data.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Runtime.Caching.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Security.Cryptography.ProtectedData.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Security.Permissions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Windows.Extensions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\de\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\es\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\fr\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\it\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\ja\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\ko\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\pt-BR\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\ru\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\zh-Hans\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\zh-Hant\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\unix\lib\net8.0\Microsoft.Data.SqlClient.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net8.0\Microsoft.Data.SqlClient.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\browser-wasm\nativeassets\net8.0\e_sqlite3.a +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-arm\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-arm64\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-armel\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-mips64\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-musl-arm\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-musl-arm64\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-musl-x64\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-ppc64le\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-s390x\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-x64\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-x86\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\maccatalyst-arm64\native\libe_sqlite3.dylib +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\maccatalyst-x64\native\libe_sqlite3.dylib +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\osx-arm64\native\libe_sqlite3.dylib +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\osx-x64\native\libe_sqlite3.dylib +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-arm\native\e_sqlite3.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-arm64\native\e_sqlite3.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-x64\native\e_sqlite3.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-x86\native\e_sqlite3.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Diagnostics.PerformanceCounter.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.DirectoryServices.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux\lib\net6.0\System.DirectoryServices.Protocols.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\osx\lib\net6.0\System.DirectoryServices.Protocols.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.DirectoryServices.Protocols.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net8.0\System.Runtime.Caching.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.csproj.AssemblyReference.cache +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.GeneratedMSBuildEditorConfig.editorconfig +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.AssemblyInfoInputs.cache +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.AssemblyInfo.cs +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.csproj.CoreCompileInputs.cache +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.MvcApplicationPartsAssemblyInfo.cache +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets.build.json +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets.development.json +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets\msbuild.WmsMobileServe.Microsoft.AspNetCore.StaticWebAssets.props +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets\msbuild.build.WmsMobileServe.props +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets\msbuild.buildMultiTargeting.WmsMobileServe.props +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets\msbuild.buildTransitive.WmsMobileServe.props +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets.pack.json +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\scopedcss\bundle\WmsMobileServe.styles.css +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobil.9D52FE47.Up2Date +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\refint\WmsMobileServe.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.pdb +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.genruntimeconfig.cache +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\ref\WmsMobileServe.dll diff --git a/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.dll b/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.dll new file mode 100644 index 0000000..8318f76 Binary files /dev/null and b/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.dll differ diff --git a/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.genruntimeconfig.cache b/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.genruntimeconfig.cache new file mode 100644 index 0000000..96faa03 --- /dev/null +++ b/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.genruntimeconfig.cache @@ -0,0 +1 @@ +ea4146c0425584f0aac77d16435fcf84ce8cc24d8b36018af67282d71b9a8c6b diff --git a/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.pdb b/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.pdb new file mode 100644 index 0000000..89d097f Binary files /dev/null and b/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.pdb differ diff --git a/WmsMobileServe/obj/Debug/net8.0/apphost.exe b/WmsMobileServe/obj/Debug/net8.0/apphost.exe new file mode 100644 index 0000000..dc8998b Binary files /dev/null and b/WmsMobileServe/obj/Debug/net8.0/apphost.exe differ diff --git a/WmsMobileServe/obj/Debug/net8.0/ref/WmsMobileServe.dll b/WmsMobileServe/obj/Debug/net8.0/ref/WmsMobileServe.dll new file mode 100644 index 0000000..96cd5be Binary files /dev/null and b/WmsMobileServe/obj/Debug/net8.0/ref/WmsMobileServe.dll differ diff --git a/WmsMobileServe/obj/Debug/net8.0/refint/WmsMobileServe.dll b/WmsMobileServe/obj/Debug/net8.0/refint/WmsMobileServe.dll new file mode 100644 index 0000000..96cd5be Binary files /dev/null and b/WmsMobileServe/obj/Debug/net8.0/refint/WmsMobileServe.dll differ diff --git a/WmsMobileServe/obj/Debug/net8.0/staticwebassets.build.json b/WmsMobileServe/obj/Debug/net8.0/staticwebassets.build.json new file mode 100644 index 0000000..9a331a3 --- /dev/null +++ b/WmsMobileServe/obj/Debug/net8.0/staticwebassets.build.json @@ -0,0 +1,11 @@ +{ + "Version": 1, + "Hash": "no2FY122M3c5wMy0eUk7qMP8sKcnK8IabNLWFD0lv/4=", + "Source": "WmsMobileServe", + "BasePath": "_content/WmsMobileServe", + "Mode": "Default", + "ManifestType": "Build", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [], + "Assets": [] +} \ No newline at end of file diff --git a/WmsMobileServe/obj/Debug/net8.0/staticwebassets/msbuild.build.WmsMobileServe.props b/WmsMobileServe/obj/Debug/net8.0/staticwebassets/msbuild.build.WmsMobileServe.props new file mode 100644 index 0000000..5a6032a --- /dev/null +++ b/WmsMobileServe/obj/Debug/net8.0/staticwebassets/msbuild.build.WmsMobileServe.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/WmsMobileServe/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.WmsMobileServe.props b/WmsMobileServe/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.WmsMobileServe.props new file mode 100644 index 0000000..2f4579d --- /dev/null +++ b/WmsMobileServe/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.WmsMobileServe.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/WmsMobileServe/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.WmsMobileServe.props b/WmsMobileServe/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.WmsMobileServe.props new file mode 100644 index 0000000..7d5a596 --- /dev/null +++ b/WmsMobileServe/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.WmsMobileServe.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/WmsMobileServe/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/WmsMobileServe/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/WmsMobileServe/obj/Release/net8.0/PublishOutputs.0acfaa7aec.txt b/WmsMobileServe/obj/Release/net8.0/PublishOutputs.0acfaa7aec.txt new file mode 100644 index 0000000..a84804b --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/PublishOutputs.0acfaa7aec.txt @@ -0,0 +1,94 @@ +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\WmsMobileServe.exe +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\appsettings.Development.json +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\appsettings.json +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\WmsMobileServe.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\WmsMobileServe.deps.json +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\WmsMobileServe.runtimeconfig.json +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\WmsMobileServe.pdb +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\Autofac.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\Autofac.Extensions.DependencyInjection.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\Azure.Core.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\Azure.Identity.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\Microsoft.Bcl.AsyncInterfaces.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\Microsoft.Data.SqlClient.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\Microsoft.Data.Sqlite.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\Microsoft.Extensions.DependencyInjection.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\Microsoft.Identity.Client.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\Microsoft.Identity.Client.Extensions.Msal.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\Microsoft.IdentityModel.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\Microsoft.IdentityModel.JsonWebTokens.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\Microsoft.IdentityModel.Logging.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\Microsoft.IdentityModel.Protocols.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\Microsoft.IdentityModel.Tokens.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\Microsoft.SqlServer.Server.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\Microsoft.Win32.SystemEvents.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\MySqlConnector.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\Newtonsoft.Json.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\Npgsql.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\Oracle.ManagedDataAccess.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\Oscar.Data.SqlClient.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\SQLitePCLRaw.batteries_v2.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\SQLitePCLRaw.core.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\SQLitePCLRaw.provider.e_sqlite3.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\SqlSugar.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\DM.DmProvider.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\Kdbndp.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\System.ClientModel.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\System.Configuration.ConfigurationManager.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\System.Diagnostics.PerformanceCounter.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\System.DirectoryServices.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\System.DirectoryServices.Protocols.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\System.Drawing.Common.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\System.IdentityModel.Tokens.Jwt.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\System.Memory.Data.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\System.Runtime.Caching.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\System.Security.Cryptography.ProtectedData.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\System.Security.Permissions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\System.Windows.Extensions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\de\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\es\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\fr\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\it\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\ja\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\ko\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\pt-BR\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\ru\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\zh-Hans\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\zh-Hant\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\runtimes\unix\lib\net8.0\Microsoft.Data.SqlClient.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\runtimes\win\lib\net8.0\Microsoft.Data.SqlClient.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\runtimes\browser-wasm\nativeassets\net8.0\e_sqlite3.a +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\runtimes\linux-arm\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\runtimes\linux-arm64\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\runtimes\linux-armel\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\runtimes\linux-mips64\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\runtimes\linux-musl-arm\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\runtimes\linux-musl-arm64\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\runtimes\linux-musl-x64\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\runtimes\linux-ppc64le\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\runtimes\linux-s390x\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\runtimes\linux-x64\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\runtimes\linux-x86\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\runtimes\maccatalyst-arm64\native\libe_sqlite3.dylib +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\runtimes\maccatalyst-x64\native\libe_sqlite3.dylib +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\runtimes\osx-arm64\native\libe_sqlite3.dylib +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\runtimes\osx-x64\native\libe_sqlite3.dylib +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\runtimes\win-arm\native\e_sqlite3.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\runtimes\win-arm64\native\e_sqlite3.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\runtimes\win-x64\native\e_sqlite3.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\runtimes\win-x86\native\e_sqlite3.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\runtimes\win\lib\net6.0\System.Diagnostics.PerformanceCounter.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\runtimes\win\lib\net6.0\System.DirectoryServices.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\runtimes\linux\lib\net6.0\System.DirectoryServices.Protocols.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\runtimes\osx\lib\net6.0\System.DirectoryServices.Protocols.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\runtimes\win\lib\net6.0\System.DirectoryServices.Protocols.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\runtimes\unix\lib\net6.0\System.Drawing.Common.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\runtimes\win\lib\net6.0\System.Drawing.Common.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\runtimes\win\lib\net8.0\System.Runtime.Caching.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\runtimes\win\lib\net6.0\System.Windows.Extensions.dll diff --git a/WmsMobileServe/obj/Release/net8.0/WmsMobil.9D52FE47.Up2Date b/WmsMobileServe/obj/Release/net8.0/WmsMobil.9D52FE47.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.AssemblyInfo.cs b/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.AssemblyInfo.cs new file mode 100644 index 0000000..b73003a --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("WmsMobileServe")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a7da6f0255148dcc63118c774686c5d7598a10ac")] +[assembly: System.Reflection.AssemblyProductAttribute("WmsMobileServe")] +[assembly: System.Reflection.AssemblyTitleAttribute("WmsMobileServe")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.AssemblyInfoInputs.cache b/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.AssemblyInfoInputs.cache new file mode 100644 index 0000000..71754f8 --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +7612ee502144279321ac41faf810fc219847daadcbfda97da9631a2ea429bfdb diff --git a/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.GeneratedMSBuildEditorConfig.editorconfig b/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..321f5c0 --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,23 @@ +is_global = true +build_property.EnableAotAnalyzer = +build_property.EnableSingleFileAnalyzer = +build_property.EnableTrimAnalyzer = +build_property.IncludeAllContentForSelfExtract = +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = WmsMobileServe +build_property.RootNamespace = WmsMobileServe +build_property.ProjectDir = F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 8.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe +build_property._RazorSourceGeneratorDebug = diff --git a/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.GlobalUsings.g.cs b/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.GlobalUsings.g.cs new file mode 100644 index 0000000..025530a --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using global::Microsoft.AspNetCore.Builder; +global using global::Microsoft.AspNetCore.Hosting; +global using global::Microsoft.AspNetCore.Http; +global using global::Microsoft.AspNetCore.Routing; +global using global::Microsoft.Extensions.Configuration; +global using global::Microsoft.Extensions.DependencyInjection; +global using global::Microsoft.Extensions.Hosting; +global using global::Microsoft.Extensions.Logging; +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Net.Http.Json; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.MvcApplicationPartsAssemblyInfo.cache b/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.assets.cache b/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.assets.cache new file mode 100644 index 0000000..7f198ee Binary files /dev/null and b/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.assets.cache differ diff --git a/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.csproj.AssemblyReference.cache b/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.csproj.AssemblyReference.cache new file mode 100644 index 0000000..12735df Binary files /dev/null and b/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.csproj.AssemblyReference.cache differ diff --git a/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.csproj.CoreCompileInputs.cache b/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..4d4b35b --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +90da5e51f7a402d8f0875de768bd55acbb03b0d7117f037e928bd2605c233445 diff --git a/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.csproj.FileListAbsolute.txt b/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..eb8a85b --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.csproj.FileListAbsolute.txt @@ -0,0 +1,228 @@ +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\appsettings.Development.json +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\appsettings.json +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\WmsMobileServe.exe +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\WmsMobileServe.deps.json +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\WmsMobileServe.runtimeconfig.json +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\WmsMobileServe.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\WmsMobileServe.pdb +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Autofac.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Autofac.Extensions.DependencyInjection.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Azure.Core.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Azure.Identity.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.Bcl.AsyncInterfaces.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.Data.SqlClient.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.Data.Sqlite.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.Identity.Client.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.Identity.Client.Extensions.Msal.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.IdentityModel.Abstractions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.IdentityModel.JsonWebTokens.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.IdentityModel.Logging.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.IdentityModel.Protocols.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.IdentityModel.Tokens.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.SqlServer.Server.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.Win32.SystemEvents.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\MySqlConnector.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Newtonsoft.Json.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Npgsql.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Oracle.ManagedDataAccess.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Oscar.Data.SqlClient.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\SQLitePCLRaw.batteries_v2.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\SQLitePCLRaw.core.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\SQLitePCLRaw.provider.e_sqlite3.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\SqlSugar.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\DM.DmProvider.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Kdbndp.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.ClientModel.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.Configuration.ConfigurationManager.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.Diagnostics.PerformanceCounter.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.DirectoryServices.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.DirectoryServices.Protocols.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.Drawing.Common.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.IdentityModel.Tokens.Jwt.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.Memory.Data.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.Runtime.Caching.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.Security.Cryptography.ProtectedData.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.Security.Permissions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.Windows.Extensions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\de\Microsoft.Data.SqlClient.resources.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\es\Microsoft.Data.SqlClient.resources.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\fr\Microsoft.Data.SqlClient.resources.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\it\Microsoft.Data.SqlClient.resources.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\ja\Microsoft.Data.SqlClient.resources.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\ko\Microsoft.Data.SqlClient.resources.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\pt-BR\Microsoft.Data.SqlClient.resources.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\ru\Microsoft.Data.SqlClient.resources.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\zh-Hans\Microsoft.Data.SqlClient.resources.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\zh-Hant\Microsoft.Data.SqlClient.resources.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\unix\lib\net8.0\Microsoft.Data.SqlClient.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win\lib\net8.0\Microsoft.Data.SqlClient.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\browser-wasm\nativeassets\net8.0\e_sqlite3.a +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-arm\native\libe_sqlite3.so +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-arm64\native\libe_sqlite3.so +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-armel\native\libe_sqlite3.so +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-mips64\native\libe_sqlite3.so +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-musl-arm\native\libe_sqlite3.so +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-musl-arm64\native\libe_sqlite3.so +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-musl-x64\native\libe_sqlite3.so +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-ppc64le\native\libe_sqlite3.so +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-s390x\native\libe_sqlite3.so +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-x64\native\libe_sqlite3.so +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-x86\native\libe_sqlite3.so +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\maccatalyst-arm64\native\libe_sqlite3.dylib +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\maccatalyst-x64\native\libe_sqlite3.dylib +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\osx-arm64\native\libe_sqlite3.dylib +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\osx-x64\native\libe_sqlite3.dylib +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win-arm\native\e_sqlite3.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win-arm64\native\e_sqlite3.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win-x64\native\e_sqlite3.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win-x86\native\e_sqlite3.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win\lib\net6.0\System.Diagnostics.PerformanceCounter.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win\lib\net6.0\System.DirectoryServices.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux\lib\net6.0\System.DirectoryServices.Protocols.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\osx\lib\net6.0\System.DirectoryServices.Protocols.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win\lib\net6.0\System.DirectoryServices.Protocols.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win\lib\net8.0\System.Runtime.Caching.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.csproj.AssemblyReference.cache +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.GeneratedMSBuildEditorConfig.editorconfig +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.AssemblyInfoInputs.cache +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.AssemblyInfo.cs +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.csproj.CoreCompileInputs.cache +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.MvcApplicationPartsAssemblyInfo.cache +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\staticwebassets.build.json +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\staticwebassets.development.json +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\staticwebassets\msbuild.WmsMobileServe.Microsoft.AspNetCore.StaticWebAssets.props +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\staticwebassets\msbuild.build.WmsMobileServe.props +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\staticwebassets\msbuild.buildMultiTargeting.WmsMobileServe.props +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\staticwebassets\msbuild.buildTransitive.WmsMobileServe.props +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\staticwebassets.pack.json +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\scopedcss\bundle\WmsMobileServe.styles.css +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobil.9D52FE47.Up2Date +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\refint\WmsMobileServe.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.pdb +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.genruntimeconfig.cache +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\ref\WmsMobileServe.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.csproj.AssemblyReference.cache +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.GeneratedMSBuildEditorConfig.editorconfig +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.AssemblyInfoInputs.cache +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.AssemblyInfo.cs +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.csproj.CoreCompileInputs.cache +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.MvcApplicationPartsAssemblyInfo.cache +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\refint\WmsMobileServe.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.pdb +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\appsettings.Development.json +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\appsettings.json +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\WmsMobileServe.exe +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\WmsMobileServe.deps.json +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\WmsMobileServe.runtimeconfig.json +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\WmsMobileServe.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\WmsMobileServe.pdb +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Autofac.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Autofac.Extensions.DependencyInjection.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Azure.Core.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Azure.Identity.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.Bcl.AsyncInterfaces.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.Data.SqlClient.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.Data.Sqlite.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.Identity.Client.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.Identity.Client.Extensions.Msal.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.IdentityModel.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.IdentityModel.JsonWebTokens.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.IdentityModel.Logging.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.IdentityModel.Protocols.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.IdentityModel.Tokens.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.SqlServer.Server.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.Win32.SystemEvents.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\MySqlConnector.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Newtonsoft.Json.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Npgsql.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Oracle.ManagedDataAccess.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Oscar.Data.SqlClient.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\SQLitePCLRaw.batteries_v2.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\SQLitePCLRaw.core.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\SQLitePCLRaw.provider.e_sqlite3.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\SqlSugar.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\DM.DmProvider.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Kdbndp.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.ClientModel.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.Configuration.ConfigurationManager.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.Diagnostics.PerformanceCounter.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.DirectoryServices.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.DirectoryServices.Protocols.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.Drawing.Common.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.IdentityModel.Tokens.Jwt.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.Memory.Data.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.Runtime.Caching.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.Security.Cryptography.ProtectedData.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.Security.Permissions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.Windows.Extensions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\de\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\es\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\fr\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\it\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\ja\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\ko\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\pt-BR\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\ru\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\zh-Hans\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\zh-Hant\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\unix\lib\net8.0\Microsoft.Data.SqlClient.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win\lib\net8.0\Microsoft.Data.SqlClient.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\browser-wasm\nativeassets\net8.0\e_sqlite3.a +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-arm\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-arm64\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-armel\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-mips64\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-musl-arm\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-musl-arm64\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-musl-x64\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-ppc64le\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-s390x\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-x64\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-x86\native\libe_sqlite3.so +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\maccatalyst-arm64\native\libe_sqlite3.dylib +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\maccatalyst-x64\native\libe_sqlite3.dylib +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\osx-arm64\native\libe_sqlite3.dylib +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\osx-x64\native\libe_sqlite3.dylib +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win-arm\native\e_sqlite3.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win-arm64\native\e_sqlite3.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win-x64\native\e_sqlite3.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win-x86\native\e_sqlite3.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win\lib\net6.0\System.Diagnostics.PerformanceCounter.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win\lib\net6.0\System.DirectoryServices.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux\lib\net6.0\System.DirectoryServices.Protocols.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\osx\lib\net6.0\System.DirectoryServices.Protocols.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win\lib\net6.0\System.DirectoryServices.Protocols.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win\lib\net8.0\System.Runtime.Caching.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\staticwebassets.build.json +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\staticwebassets.development.json +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\staticwebassets\msbuild.WmsMobileServe.Microsoft.AspNetCore.StaticWebAssets.props +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\staticwebassets\msbuild.build.WmsMobileServe.props +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\staticwebassets\msbuild.buildMultiTargeting.WmsMobileServe.props +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\staticwebassets\msbuild.buildTransitive.WmsMobileServe.props +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\staticwebassets.pack.json +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\scopedcss\bundle\WmsMobileServe.styles.css +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobil.9D52FE47.Up2Date +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.genruntimeconfig.cache +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\ref\WmsMobileServe.dll diff --git a/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.dll b/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.dll new file mode 100644 index 0000000..5de740e Binary files /dev/null and b/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.dll differ diff --git a/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.genruntimeconfig.cache b/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.genruntimeconfig.cache new file mode 100644 index 0000000..bb47f68 --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.genruntimeconfig.cache @@ -0,0 +1 @@ +5ef42e92c31c07e8e4897a791a0fa71b86c1340c2d56213750cb322a94afe040 diff --git a/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.pdb b/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.pdb new file mode 100644 index 0000000..fc42fba Binary files /dev/null and b/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.pdb differ diff --git a/WmsMobileServe/obj/Release/net8.0/apphost.exe b/WmsMobileServe/obj/Release/net8.0/apphost.exe new file mode 100644 index 0000000..dc8998b Binary files /dev/null and b/WmsMobileServe/obj/Release/net8.0/apphost.exe differ diff --git a/WmsMobileServe/obj/Release/net8.0/ref/WmsMobileServe.dll b/WmsMobileServe/obj/Release/net8.0/ref/WmsMobileServe.dll new file mode 100644 index 0000000..48b8651 Binary files /dev/null and b/WmsMobileServe/obj/Release/net8.0/ref/WmsMobileServe.dll differ diff --git a/WmsMobileServe/obj/Release/net8.0/refint/WmsMobileServe.dll b/WmsMobileServe/obj/Release/net8.0/refint/WmsMobileServe.dll new file mode 100644 index 0000000..48b8651 Binary files /dev/null and b/WmsMobileServe/obj/Release/net8.0/refint/WmsMobileServe.dll differ diff --git a/WmsMobileServe/obj/Release/net8.0/staticwebassets.build.json b/WmsMobileServe/obj/Release/net8.0/staticwebassets.build.json new file mode 100644 index 0000000..9a331a3 --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/staticwebassets.build.json @@ -0,0 +1,11 @@ +{ + "Version": 1, + "Hash": "no2FY122M3c5wMy0eUk7qMP8sKcnK8IabNLWFD0lv/4=", + "Source": "WmsMobileServe", + "BasePath": "_content/WmsMobileServe", + "Mode": "Default", + "ManifestType": "Build", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [], + "Assets": [] +} \ No newline at end of file diff --git a/WmsMobileServe/obj/Release/net8.0/staticwebassets.publish.json b/WmsMobileServe/obj/Release/net8.0/staticwebassets.publish.json new file mode 100644 index 0000000..092e50b --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/staticwebassets.publish.json @@ -0,0 +1,11 @@ +{ + "Version": 1, + "Hash": "bar20eruJ95aBiaIcDQGJNJWgH+FjzBw3arFz9xpW1E=", + "Source": "WmsMobileServe", + "BasePath": "_content/WmsMobileServe", + "Mode": "Default", + "ManifestType": "Publish", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [], + "Assets": [] +} \ No newline at end of file diff --git a/WmsMobileServe/obj/Release/net8.0/staticwebassets/msbuild.build.WmsMobileServe.props b/WmsMobileServe/obj/Release/net8.0/staticwebassets/msbuild.build.WmsMobileServe.props new file mode 100644 index 0000000..5a6032a --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/staticwebassets/msbuild.build.WmsMobileServe.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/WmsMobileServe/obj/Release/net8.0/staticwebassets/msbuild.buildMultiTargeting.WmsMobileServe.props b/WmsMobileServe/obj/Release/net8.0/staticwebassets/msbuild.buildMultiTargeting.WmsMobileServe.props new file mode 100644 index 0000000..2f4579d --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/staticwebassets/msbuild.buildMultiTargeting.WmsMobileServe.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/WmsMobileServe/obj/Release/net8.0/staticwebassets/msbuild.buildTransitive.WmsMobileServe.props b/WmsMobileServe/obj/Release/net8.0/staticwebassets/msbuild.buildTransitive.WmsMobileServe.props new file mode 100644 index 0000000..7d5a596 --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/staticwebassets/msbuild.buildTransitive.WmsMobileServe.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/WmsMobileServe/obj/Release/net8.0/win-x64/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/win-x64/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/PubTmp/Out/Microsoft.Data.SqlClient.SNI.dll b/WmsMobileServe/obj/Release/net8.0/win-x64/PubTmp/Out/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..12b8900 Binary files /dev/null and b/WmsMobileServe/obj/Release/net8.0/win-x64/PubTmp/Out/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/PubTmp/Out/WmsMobileServe.exe b/WmsMobileServe/obj/Release/net8.0/win-x64/PubTmp/Out/WmsMobileServe.exe new file mode 100644 index 0000000..17442b1 Binary files /dev/null and b/WmsMobileServe/obj/Release/net8.0/win-x64/PubTmp/Out/WmsMobileServe.exe differ diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/PubTmp/Out/WmsMobileServe.pdb b/WmsMobileServe/obj/Release/net8.0/win-x64/PubTmp/Out/WmsMobileServe.pdb new file mode 100644 index 0000000..e88f682 Binary files /dev/null and b/WmsMobileServe/obj/Release/net8.0/win-x64/PubTmp/Out/WmsMobileServe.pdb differ diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/PubTmp/Out/appsettings.Development.json b/WmsMobileServe/obj/Release/net8.0/win-x64/PubTmp/Out/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/win-x64/PubTmp/Out/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/PubTmp/Out/appsettings.json b/WmsMobileServe/obj/Release/net8.0/win-x64/PubTmp/Out/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/win-x64/PubTmp/Out/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/PubTmp/Out/aspnetcorev2_inprocess.dll b/WmsMobileServe/obj/Release/net8.0/win-x64/PubTmp/Out/aspnetcorev2_inprocess.dll new file mode 100644 index 0000000..613451c Binary files /dev/null and b/WmsMobileServe/obj/Release/net8.0/win-x64/PubTmp/Out/aspnetcorev2_inprocess.dll differ diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/PubTmp/Out/e_sqlite3.dll b/WmsMobileServe/obj/Release/net8.0/win-x64/PubTmp/Out/e_sqlite3.dll new file mode 100644 index 0000000..379665c Binary files /dev/null and b/WmsMobileServe/obj/Release/net8.0/win-x64/PubTmp/Out/e_sqlite3.dll differ diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/PubTmp/Out/web.config b/WmsMobileServe/obj/Release/net8.0/win-x64/PubTmp/Out/web.config new file mode 100644 index 0000000..99b37e2 --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/win-x64/PubTmp/Out/web.config @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/PublishOutputs.22112b511e.txt b/WmsMobileServe/obj/Release/net8.0/win-x64/PublishOutputs.22112b511e.txt new file mode 100644 index 0000000..027830d --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/win-x64/PublishOutputs.22112b511e.txt @@ -0,0 +1,7 @@ +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\publish\appsettings.Development.json +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\publish\appsettings.json +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\publish\WmsMobileServe.pdb +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\publish\aspnetcorev2_inprocess.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\publish\Microsoft.Data.SqlClient.SNI.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\publish\e_sqlite3.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\publish\WmsMobileServe.exe diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/PublishOutputs.2f2b4f491f.txt b/WmsMobileServe/obj/Release/net8.0/win-x64/PublishOutputs.2f2b4f491f.txt new file mode 100644 index 0000000..e250ddc --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/win-x64/PublishOutputs.2f2b4f491f.txt @@ -0,0 +1,7 @@ +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\PubTmp\Out\appsettings.Development.json +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\PubTmp\Out\appsettings.json +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\PubTmp\Out\WmsMobileServe.pdb +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\PubTmp\Out\aspnetcorev2_inprocess.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\PubTmp\Out\Microsoft.Data.SqlClient.SNI.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\PubTmp\Out\e_sqlite3.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\PubTmp\Out\WmsMobileServe.exe diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/PublishOutputs.83c4d19018.txt b/WmsMobileServe/obj/Release/net8.0/win-x64/PublishOutputs.83c4d19018.txt new file mode 100644 index 0000000..3193ecf --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/win-x64/PublishOutputs.83c4d19018.txt @@ -0,0 +1,7 @@ +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\PubTmp\Out\appsettings.Development.json +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\PubTmp\Out\appsettings.json +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\PubTmp\Out\WmsMobileServe.pdb +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\PubTmp\Out\aspnetcorev2_inprocess.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\PubTmp\Out\Microsoft.Data.SqlClient.SNI.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\PubTmp\Out\e_sqlite3.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\PubTmp\Out\WmsMobileServe.exe diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/PublishOutputs.940d17fd59.txt b/WmsMobileServe/obj/Release/net8.0/win-x64/PublishOutputs.940d17fd59.txt new file mode 100644 index 0000000..ace7e15 --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/win-x64/PublishOutputs.940d17fd59.txt @@ -0,0 +1,7 @@ +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\publish\appsettings.Development.json +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\publish\appsettings.json +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\publish\WmsMobileServe.pdb +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\publish\aspnetcorev2_inprocess.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\publish\Microsoft.Data.SqlClient.SNI.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\publish\e_sqlite3.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\publish\WmsMobileServe.exe diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobil.9D52FE47.Up2Date b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobil.9D52FE47.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.AssemblyInfo.cs b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.AssemblyInfo.cs new file mode 100644 index 0000000..b73003a --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("WmsMobileServe")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a7da6f0255148dcc63118c774686c5d7598a10ac")] +[assembly: System.Reflection.AssemblyProductAttribute("WmsMobileServe")] +[assembly: System.Reflection.AssemblyTitleAttribute("WmsMobileServe")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.AssemblyInfoInputs.cache b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.AssemblyInfoInputs.cache new file mode 100644 index 0000000..71754f8 --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +7612ee502144279321ac41faf810fc219847daadcbfda97da9631a2ea429bfdb diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.GeneratedMSBuildEditorConfig.editorconfig b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..6346ac9 --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,23 @@ +is_global = true +build_property.EnableAotAnalyzer = +build_property.EnableSingleFileAnalyzer = true +build_property.EnableTrimAnalyzer = +build_property.IncludeAllContentForSelfExtract = false +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = WmsMobileServe +build_property.RootNamespace = WmsMobileServe +build_property.ProjectDir = F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 8.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe +build_property._RazorSourceGeneratorDebug = diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.GlobalUsings.g.cs b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.GlobalUsings.g.cs new file mode 100644 index 0000000..025530a --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using global::Microsoft.AspNetCore.Builder; +global using global::Microsoft.AspNetCore.Hosting; +global using global::Microsoft.AspNetCore.Http; +global using global::Microsoft.AspNetCore.Routing; +global using global::Microsoft.Extensions.Configuration; +global using global::Microsoft.Extensions.DependencyInjection; +global using global::Microsoft.Extensions.Hosting; +global using global::Microsoft.Extensions.Logging; +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Net.Http.Json; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.MvcApplicationPartsAssemblyInfo.cache b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.assets.cache b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.assets.cache new file mode 100644 index 0000000..f27d6ba Binary files /dev/null and b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.assets.cache differ diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.csproj.AssemblyReference.cache b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.csproj.AssemblyReference.cache new file mode 100644 index 0000000..12735df Binary files /dev/null and b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.csproj.AssemblyReference.cache differ diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.csproj.CoreCompileInputs.cache b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..5246b7b --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +888e1690f56cbb82c040ac22a79df3ee68d4e31f94c1bf6967d4a02514a796df diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.csproj.FileListAbsolute.txt b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..44e2122 --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.csproj.FileListAbsolute.txt @@ -0,0 +1,1206 @@ +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\appsettings.Development.json +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\appsettings.json +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\WmsMobileServe.exe +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\WmsMobileServe.deps.json +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\WmsMobileServe.runtimeconfig.json +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\WmsMobileServe.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\WmsMobileServe.pdb +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Autofac.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Autofac.Extensions.DependencyInjection.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Azure.Core.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Azure.Identity.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Bcl.AsyncInterfaces.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Data.SqlClient.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Data.Sqlite.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Identity.Client.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Identity.Client.Extensions.Msal.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.IdentityModel.Abstractions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.IdentityModel.JsonWebTokens.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.IdentityModel.Logging.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.IdentityModel.Protocols.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.IdentityModel.Tokens.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.SqlServer.Server.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Win32.SystemEvents.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\MySqlConnector.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Newtonsoft.Json.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Npgsql.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Oracle.ManagedDataAccess.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Oscar.Data.SqlClient.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\SQLitePCLRaw.batteries_v2.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\SQLitePCLRaw.core.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\SQLitePCLRaw.provider.e_sqlite3.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\SqlSugar.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\DM.DmProvider.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Kdbndp.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.ClientModel.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Configuration.ConfigurationManager.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.PerformanceCounter.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.DirectoryServices.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.DirectoryServices.Protocols.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Drawing.Common.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IdentityModel.Tokens.Jwt.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Memory.Data.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.Caching.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Cryptography.ProtectedData.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Permissions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Windows.Extensions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\de\Microsoft.Data.SqlClient.resources.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\es\Microsoft.Data.SqlClient.resources.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\fr\Microsoft.Data.SqlClient.resources.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\it\Microsoft.Data.SqlClient.resources.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\ja\Microsoft.Data.SqlClient.resources.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\ko\Microsoft.Data.SqlClient.resources.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\pt-BR\Microsoft.Data.SqlClient.resources.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\ru\Microsoft.Data.SqlClient.resources.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\zh-Hans\Microsoft.Data.SqlClient.resources.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\zh-Hant\Microsoft.Data.SqlClient.resources.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Data.SqlClient.SNI.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\e_sqlite3.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.CSharp.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.VisualBasic.Core.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.VisualBasic.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Win32.Primitives.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Win32.Registry.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.AppContext.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Buffers.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Collections.Concurrent.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Collections.Immutable.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Collections.NonGeneric.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Collections.Specialized.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Collections.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.ComponentModel.Annotations.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.ComponentModel.DataAnnotations.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.ComponentModel.EventBasedAsync.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.ComponentModel.Primitives.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.ComponentModel.TypeConverter.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.ComponentModel.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Configuration.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Console.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Core.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Data.Common.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Data.DataSetExtensions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Data.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.Contracts.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.Debug.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.DiagnosticSource.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.FileVersionInfo.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.Process.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.StackTrace.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.TextWriterTraceListener.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.Tools.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.TraceSource.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.Tracing.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Drawing.Primitives.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Drawing.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Dynamic.Runtime.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Formats.Asn1.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Formats.Tar.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Globalization.Calendars.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Globalization.Extensions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Globalization.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.Compression.Brotli.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.Compression.FileSystem.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.Compression.ZipFile.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.Compression.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.FileSystem.AccessControl.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.FileSystem.DriveInfo.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.FileSystem.Primitives.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.FileSystem.Watcher.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.FileSystem.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.IsolatedStorage.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.MemoryMappedFiles.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.Pipes.AccessControl.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.Pipes.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.UnmanagedMemoryStream.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Linq.Expressions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Linq.Parallel.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Linq.Queryable.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Linq.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Memory.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.Http.Json.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.Http.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.HttpListener.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.Mail.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.NameResolution.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.NetworkInformation.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.Ping.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.Primitives.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.Quic.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.Requests.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.Security.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.ServicePoint.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.Sockets.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.WebClient.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.WebHeaderCollection.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.WebProxy.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.WebSockets.Client.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.WebSockets.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Numerics.Vectors.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Numerics.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.ObjectModel.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Private.CoreLib.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Private.DataContractSerialization.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Private.Uri.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Private.Xml.Linq.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Private.Xml.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Reflection.DispatchProxy.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Reflection.Emit.ILGeneration.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Reflection.Emit.Lightweight.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Reflection.Emit.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Reflection.Extensions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Reflection.Metadata.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Reflection.Primitives.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Reflection.TypeExtensions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Reflection.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Resources.Reader.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Resources.ResourceManager.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Resources.Writer.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.CompilerServices.Unsafe.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.CompilerServices.VisualC.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.Extensions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.Handles.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.InteropServices.JavaScript.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.InteropServices.RuntimeInformation.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.InteropServices.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.Intrinsics.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.Loader.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.Numerics.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.Serialization.Formatters.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.Serialization.Json.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.Serialization.Primitives.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.Serialization.Xml.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.Serialization.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.AccessControl.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Claims.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Cryptography.Algorithms.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Cryptography.Cng.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Cryptography.Csp.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Cryptography.Encoding.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Cryptography.OpenSsl.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Cryptography.Primitives.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Cryptography.X509Certificates.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Cryptography.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Principal.Windows.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Principal.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.SecureString.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.ServiceModel.Web.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.ServiceProcess.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Text.Encoding.CodePages.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Text.Encoding.Extensions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Text.Encoding.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Text.Encodings.Web.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Text.Json.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Text.RegularExpressions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Threading.Channels.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Threading.Overlapped.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Threading.Tasks.Dataflow.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Threading.Tasks.Extensions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Threading.Tasks.Parallel.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Threading.Tasks.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Threading.Thread.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Threading.ThreadPool.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Threading.Timer.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Threading.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Transactions.Local.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Transactions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.ValueTuple.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Web.HttpUtility.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Web.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Windows.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Xml.Linq.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Xml.ReaderWriter.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Xml.Serialization.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Xml.XDocument.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Xml.XPath.XDocument.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Xml.XPath.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Xml.XmlDocument.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Xml.XmlSerializer.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Xml.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\WindowsBase.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\mscorlib.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\netstandard.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Antiforgery.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Authentication.Abstractions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Authentication.BearerToken.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Authentication.Cookies.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Authentication.Core.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Authentication.OAuth.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Authentication.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Authorization.Policy.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Authorization.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Components.Authorization.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Components.Endpoints.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Components.Forms.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Components.Server.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Components.Web.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Components.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Connections.Abstractions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.CookiePolicy.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Cors.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Cryptography.Internal.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.DataProtection.Abstractions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.DataProtection.Extensions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.DataProtection.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Diagnostics.Abstractions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Diagnostics.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.HostFiltering.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Hosting.Abstractions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Hosting.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Html.Abstractions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Http.Abstractions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Http.Connections.Common.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Http.Connections.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Http.Extensions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Http.Features.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Http.Results.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Http.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.HttpLogging.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.HttpOverrides.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.HttpsPolicy.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Identity.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Localization.Routing.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Localization.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Metadata.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.Abstractions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.ApiExplorer.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.Core.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.Cors.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.DataAnnotations.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.Formatters.Json.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.Localization.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.Razor.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.RazorPages.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.TagHelpers.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.ViewFeatures.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.OutputCaching.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.RateLimiting.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Razor.Runtime.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Razor.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.RequestDecompression.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.ResponseCaching.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.ResponseCompression.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Rewrite.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Routing.Abstractions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Routing.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Server.HttpSys.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Server.IIS.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Server.IISIntegration.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Server.Kestrel.Core.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Server.Kestrel.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Session.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.SignalR.Common.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.SignalR.Core.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.SignalR.Protocols.Json.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.SignalR.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.StaticFiles.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.WebSockets.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.WebUtilities.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Caching.Abstractions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Caching.Memory.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.Abstractions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.Binder.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.CommandLine.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.EnvironmentVariables.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.FileExtensions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.Ini.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.Json.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.KeyPerFile.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.UserSecrets.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.Xml.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.DependencyInjection.Abstractions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.DependencyInjection.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Diagnostics.Abstractions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Diagnostics.HealthChecks.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Diagnostics.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Features.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.FileProviders.Abstractions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.FileProviders.Composite.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.FileProviders.Embedded.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.FileProviders.Physical.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.FileSystemGlobbing.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Hosting.Abstractions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Hosting.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Http.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Identity.Core.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Identity.Stores.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Localization.Abstractions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Localization.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Logging.Abstractions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Logging.Configuration.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Logging.Console.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Logging.Debug.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Logging.EventLog.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Logging.EventSource.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Logging.TraceSource.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Logging.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.ObjectPool.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Options.ConfigurationExtensions.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Options.DataAnnotations.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Options.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Primitives.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.WebEncoders.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.JSInterop.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Net.Http.Headers.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.EventLog.Messages.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.EventLog.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.Pipelines.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Cryptography.Pkcs.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Cryptography.Xml.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Threading.RateLimiting.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.DiaSymReader.Native.amd64.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.Compression.Native.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\clretwrc.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\clrgc.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\clrjit.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\coreclr.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\createdump.exe +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\hostfxr.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\hostpolicy.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\mscordaccore.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\mscordaccore_amd64_amd64_8.0.1024.46610.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\mscordbi.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\mscorrc.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\msquic.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\aspnetcorev2_inprocess.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\WmsMobileServe.csproj.AssemblyReference.cache +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\WmsMobileServe.GeneratedMSBuildEditorConfig.editorconfig +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\WmsMobileServe.AssemblyInfoInputs.cache +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\WmsMobileServe.AssemblyInfo.cs +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\WmsMobileServe.csproj.CoreCompileInputs.cache +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\WmsMobileServe.MvcApplicationPartsAssemblyInfo.cache +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\staticwebassets.build.json +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\staticwebassets.development.json +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\staticwebassets\msbuild.WmsMobileServe.Microsoft.AspNetCore.StaticWebAssets.props +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\staticwebassets\msbuild.build.WmsMobileServe.props +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\staticwebassets\msbuild.buildMultiTargeting.WmsMobileServe.props +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\staticwebassets\msbuild.buildTransitive.WmsMobileServe.props +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\staticwebassets.pack.json +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\scopedcss\bundle\WmsMobileServe.styles.css +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\WmsMobil.9D52FE47.Up2Date +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\WmsMobileServe.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\refint\WmsMobileServe.dll +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\WmsMobileServe.pdb +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\WmsMobileServe.genruntimeconfig.cache +F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\ref\WmsMobileServe.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\appsettings.Development.json +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\appsettings.json +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\WmsMobileServe.exe +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\WmsMobileServe.deps.json +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\WmsMobileServe.runtimeconfig.json +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\WmsMobileServe.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\WmsMobileServe.pdb +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Autofac.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Autofac.Extensions.DependencyInjection.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Azure.Core.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Azure.Identity.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Bcl.AsyncInterfaces.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Data.SqlClient.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Data.Sqlite.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Identity.Client.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Identity.Client.Extensions.Msal.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.IdentityModel.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.IdentityModel.JsonWebTokens.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.IdentityModel.Logging.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.IdentityModel.Protocols.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.IdentityModel.Tokens.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.SqlServer.Server.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Win32.SystemEvents.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\MySqlConnector.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Newtonsoft.Json.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Npgsql.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Oracle.ManagedDataAccess.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Oscar.Data.SqlClient.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\SQLitePCLRaw.batteries_v2.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\SQLitePCLRaw.core.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\SQLitePCLRaw.provider.e_sqlite3.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\SqlSugar.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\DM.DmProvider.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Kdbndp.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.ClientModel.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Configuration.ConfigurationManager.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.PerformanceCounter.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.DirectoryServices.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.DirectoryServices.Protocols.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Drawing.Common.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IdentityModel.Tokens.Jwt.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Memory.Data.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.Caching.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Cryptography.ProtectedData.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Permissions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Windows.Extensions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\de\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\es\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\fr\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\it\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\ja\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\ko\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\pt-BR\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\ru\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\zh-Hans\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\zh-Hant\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Data.SqlClient.SNI.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\e_sqlite3.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.CSharp.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.VisualBasic.Core.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.VisualBasic.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Win32.Primitives.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Win32.Registry.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.AppContext.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Buffers.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Collections.Concurrent.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Collections.Immutable.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Collections.NonGeneric.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Collections.Specialized.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Collections.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.ComponentModel.Annotations.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.ComponentModel.DataAnnotations.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.ComponentModel.EventBasedAsync.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.ComponentModel.Primitives.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.ComponentModel.TypeConverter.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.ComponentModel.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Configuration.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Console.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Core.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Data.Common.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Data.DataSetExtensions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Data.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.Contracts.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.Debug.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.DiagnosticSource.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.FileVersionInfo.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.Process.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.StackTrace.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.TextWriterTraceListener.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.Tools.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.TraceSource.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.Tracing.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Drawing.Primitives.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Drawing.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Dynamic.Runtime.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Formats.Asn1.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Formats.Tar.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Globalization.Calendars.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Globalization.Extensions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Globalization.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.Compression.Brotli.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.Compression.FileSystem.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.Compression.ZipFile.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.Compression.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.FileSystem.AccessControl.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.FileSystem.DriveInfo.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.FileSystem.Primitives.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.FileSystem.Watcher.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.FileSystem.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.IsolatedStorage.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.MemoryMappedFiles.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.Pipes.AccessControl.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.Pipes.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.UnmanagedMemoryStream.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Linq.Expressions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Linq.Parallel.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Linq.Queryable.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Linq.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Memory.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.Http.Json.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.Http.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.HttpListener.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.Mail.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.NameResolution.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.NetworkInformation.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.Ping.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.Primitives.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.Quic.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.Requests.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.Security.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.ServicePoint.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.Sockets.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.WebClient.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.WebHeaderCollection.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.WebProxy.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.WebSockets.Client.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.WebSockets.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Numerics.Vectors.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Numerics.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.ObjectModel.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Private.CoreLib.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Private.DataContractSerialization.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Private.Uri.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Private.Xml.Linq.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Private.Xml.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Reflection.DispatchProxy.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Reflection.Emit.ILGeneration.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Reflection.Emit.Lightweight.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Reflection.Emit.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Reflection.Extensions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Reflection.Metadata.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Reflection.Primitives.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Reflection.TypeExtensions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Reflection.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Resources.Reader.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Resources.ResourceManager.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Resources.Writer.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.CompilerServices.Unsafe.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.CompilerServices.VisualC.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.Extensions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.Handles.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.InteropServices.JavaScript.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.InteropServices.RuntimeInformation.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.InteropServices.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.Intrinsics.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.Loader.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.Numerics.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.Serialization.Formatters.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.Serialization.Json.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.Serialization.Primitives.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.Serialization.Xml.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.Serialization.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.AccessControl.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Claims.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Cryptography.Algorithms.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Cryptography.Cng.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Cryptography.Csp.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Cryptography.Encoding.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Cryptography.OpenSsl.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Cryptography.Primitives.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Cryptography.X509Certificates.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Cryptography.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Principal.Windows.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Principal.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.SecureString.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.ServiceModel.Web.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.ServiceProcess.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Text.Encoding.CodePages.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Text.Encoding.Extensions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Text.Encoding.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Text.Encodings.Web.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Text.Json.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Text.RegularExpressions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Threading.Channels.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Threading.Overlapped.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Threading.Tasks.Dataflow.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Threading.Tasks.Extensions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Threading.Tasks.Parallel.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Threading.Tasks.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Threading.Thread.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Threading.ThreadPool.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Threading.Timer.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Threading.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Transactions.Local.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Transactions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.ValueTuple.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Web.HttpUtility.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Web.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Windows.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Xml.Linq.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Xml.ReaderWriter.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Xml.Serialization.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Xml.XDocument.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Xml.XPath.XDocument.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Xml.XPath.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Xml.XmlDocument.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Xml.XmlSerializer.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Xml.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\WindowsBase.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\mscorlib.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\netstandard.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Antiforgery.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Authentication.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Authentication.BearerToken.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Authentication.Cookies.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Authentication.Core.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Authentication.OAuth.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Authentication.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Authorization.Policy.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Authorization.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Components.Authorization.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Components.Endpoints.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Components.Forms.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Components.Server.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Components.Web.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Components.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Connections.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.CookiePolicy.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Cors.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Cryptography.Internal.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.DataProtection.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.DataProtection.Extensions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.DataProtection.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Diagnostics.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Diagnostics.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.HostFiltering.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Hosting.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Hosting.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Html.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Http.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Http.Connections.Common.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Http.Connections.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Http.Extensions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Http.Features.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Http.Results.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Http.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.HttpLogging.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.HttpOverrides.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.HttpsPolicy.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Identity.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Localization.Routing.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Localization.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Metadata.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.ApiExplorer.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.Core.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.Cors.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.DataAnnotations.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.Formatters.Json.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.Localization.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.Razor.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.RazorPages.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.TagHelpers.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.ViewFeatures.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.OutputCaching.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.RateLimiting.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Razor.Runtime.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Razor.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.RequestDecompression.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.ResponseCaching.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.ResponseCompression.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Rewrite.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Routing.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Routing.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Server.HttpSys.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Server.IIS.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Server.IISIntegration.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Server.Kestrel.Core.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Server.Kestrel.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Session.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.SignalR.Common.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.SignalR.Core.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.SignalR.Protocols.Json.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.SignalR.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.StaticFiles.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.WebSockets.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.WebUtilities.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Caching.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Caching.Memory.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.Binder.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.CommandLine.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.EnvironmentVariables.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.FileExtensions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.Ini.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.Json.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.KeyPerFile.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.UserSecrets.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.Xml.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.DependencyInjection.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.DependencyInjection.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Diagnostics.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Diagnostics.HealthChecks.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Diagnostics.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Features.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.FileProviders.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.FileProviders.Composite.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.FileProviders.Embedded.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.FileProviders.Physical.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.FileSystemGlobbing.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Hosting.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Hosting.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Http.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Identity.Core.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Identity.Stores.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Localization.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Localization.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Logging.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Logging.Configuration.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Logging.Console.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Logging.Debug.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Logging.EventLog.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Logging.EventSource.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Logging.TraceSource.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Logging.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.ObjectPool.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Options.ConfigurationExtensions.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Options.DataAnnotations.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Options.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Primitives.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.WebEncoders.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.JSInterop.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Net.Http.Headers.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.EventLog.Messages.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.EventLog.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.Pipelines.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Cryptography.Pkcs.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Cryptography.Xml.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Threading.RateLimiting.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.DiaSymReader.Native.amd64.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.Compression.Native.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\clretwrc.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\clrgc.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\clrjit.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\coreclr.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\createdump.exe +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\hostfxr.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\hostpolicy.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\mscordaccore.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\mscordaccore_amd64_amd64_8.0.1024.46610.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\mscordbi.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\mscorrc.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\msquic.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\aspnetcorev2_inprocess.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\WmsMobileServe.csproj.AssemblyReference.cache +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\WmsMobileServe.GeneratedMSBuildEditorConfig.editorconfig +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\WmsMobileServe.AssemblyInfoInputs.cache +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\WmsMobileServe.AssemblyInfo.cs +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\WmsMobileServe.csproj.CoreCompileInputs.cache +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\WmsMobileServe.MvcApplicationPartsAssemblyInfo.cache +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\staticwebassets.build.json +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\staticwebassets.development.json +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\staticwebassets\msbuild.WmsMobileServe.Microsoft.AspNetCore.StaticWebAssets.props +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\staticwebassets\msbuild.build.WmsMobileServe.props +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\staticwebassets\msbuild.buildMultiTargeting.WmsMobileServe.props +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\staticwebassets\msbuild.buildTransitive.WmsMobileServe.props +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\staticwebassets.pack.json +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\scopedcss\bundle\WmsMobileServe.styles.css +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\WmsMobil.9D52FE47.Up2Date +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\WmsMobileServe.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\refint\WmsMobileServe.dll +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\WmsMobileServe.pdb +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\WmsMobileServe.genruntimeconfig.cache +F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\ref\WmsMobileServe.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\appsettings.Development.json +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\appsettings.json +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\WmsMobileServe.exe +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\WmsMobileServe.deps.json +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\WmsMobileServe.runtimeconfig.json +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\WmsMobileServe.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\WmsMobileServe.pdb +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Autofac.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Autofac.Extensions.DependencyInjection.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Azure.Core.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Azure.Identity.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Bcl.AsyncInterfaces.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Data.SqlClient.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Data.Sqlite.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Identity.Client.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Identity.Client.Extensions.Msal.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.IdentityModel.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.IdentityModel.JsonWebTokens.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.IdentityModel.Logging.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.IdentityModel.Protocols.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.IdentityModel.Tokens.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.SqlServer.Server.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Win32.SystemEvents.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\MySqlConnector.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Newtonsoft.Json.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Npgsql.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Oracle.ManagedDataAccess.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Oscar.Data.SqlClient.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\SQLitePCLRaw.batteries_v2.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\SQLitePCLRaw.core.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\SQLitePCLRaw.provider.e_sqlite3.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\SqlSugar.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\DM.DmProvider.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Kdbndp.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.ClientModel.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Configuration.ConfigurationManager.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.PerformanceCounter.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.DirectoryServices.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.DirectoryServices.Protocols.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Drawing.Common.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IdentityModel.Tokens.Jwt.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Memory.Data.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.Caching.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Cryptography.ProtectedData.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Permissions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Windows.Extensions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\de\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\es\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\fr\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\it\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\ja\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\ko\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\pt-BR\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\ru\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\zh-Hans\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\zh-Hant\Microsoft.Data.SqlClient.resources.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Data.SqlClient.SNI.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\e_sqlite3.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.CSharp.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.VisualBasic.Core.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.VisualBasic.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Win32.Primitives.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Win32.Registry.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.AppContext.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Buffers.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Collections.Concurrent.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Collections.Immutable.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Collections.NonGeneric.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Collections.Specialized.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Collections.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.ComponentModel.Annotations.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.ComponentModel.DataAnnotations.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.ComponentModel.EventBasedAsync.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.ComponentModel.Primitives.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.ComponentModel.TypeConverter.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.ComponentModel.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Configuration.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Console.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Core.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Data.Common.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Data.DataSetExtensions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Data.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.Contracts.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.Debug.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.DiagnosticSource.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.FileVersionInfo.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.Process.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.StackTrace.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.TextWriterTraceListener.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.Tools.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.TraceSource.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.Tracing.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Drawing.Primitives.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Drawing.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Dynamic.Runtime.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Formats.Asn1.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Formats.Tar.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Globalization.Calendars.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Globalization.Extensions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Globalization.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.Compression.Brotli.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.Compression.FileSystem.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.Compression.ZipFile.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.Compression.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.FileSystem.AccessControl.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.FileSystem.DriveInfo.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.FileSystem.Primitives.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.FileSystem.Watcher.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.FileSystem.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.IsolatedStorage.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.MemoryMappedFiles.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.Pipes.AccessControl.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.Pipes.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.UnmanagedMemoryStream.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Linq.Expressions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Linq.Parallel.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Linq.Queryable.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Linq.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Memory.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.Http.Json.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.Http.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.HttpListener.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.Mail.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.NameResolution.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.NetworkInformation.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.Ping.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.Primitives.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.Quic.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.Requests.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.Security.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.ServicePoint.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.Sockets.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.WebClient.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.WebHeaderCollection.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.WebProxy.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.WebSockets.Client.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.WebSockets.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Net.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Numerics.Vectors.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Numerics.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.ObjectModel.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Private.CoreLib.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Private.DataContractSerialization.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Private.Uri.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Private.Xml.Linq.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Private.Xml.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Reflection.DispatchProxy.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Reflection.Emit.ILGeneration.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Reflection.Emit.Lightweight.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Reflection.Emit.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Reflection.Extensions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Reflection.Metadata.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Reflection.Primitives.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Reflection.TypeExtensions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Reflection.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Resources.Reader.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Resources.ResourceManager.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Resources.Writer.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.CompilerServices.Unsafe.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.CompilerServices.VisualC.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.Extensions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.Handles.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.InteropServices.JavaScript.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.InteropServices.RuntimeInformation.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.InteropServices.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.Intrinsics.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.Loader.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.Numerics.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.Serialization.Formatters.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.Serialization.Json.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.Serialization.Primitives.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.Serialization.Xml.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.Serialization.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Runtime.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.AccessControl.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Claims.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Cryptography.Algorithms.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Cryptography.Cng.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Cryptography.Csp.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Cryptography.Encoding.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Cryptography.OpenSsl.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Cryptography.Primitives.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Cryptography.X509Certificates.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Cryptography.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Principal.Windows.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Principal.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.SecureString.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.ServiceModel.Web.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.ServiceProcess.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Text.Encoding.CodePages.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Text.Encoding.Extensions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Text.Encoding.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Text.Encodings.Web.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Text.Json.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Text.RegularExpressions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Threading.Channels.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Threading.Overlapped.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Threading.Tasks.Dataflow.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Threading.Tasks.Extensions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Threading.Tasks.Parallel.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Threading.Tasks.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Threading.Thread.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Threading.ThreadPool.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Threading.Timer.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Threading.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Transactions.Local.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Transactions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.ValueTuple.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Web.HttpUtility.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Web.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Windows.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Xml.Linq.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Xml.ReaderWriter.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Xml.Serialization.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Xml.XDocument.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Xml.XPath.XDocument.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Xml.XPath.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Xml.XmlDocument.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Xml.XmlSerializer.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Xml.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\WindowsBase.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\mscorlib.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\netstandard.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Antiforgery.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Authentication.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Authentication.BearerToken.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Authentication.Cookies.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Authentication.Core.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Authentication.OAuth.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Authentication.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Authorization.Policy.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Authorization.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Components.Authorization.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Components.Endpoints.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Components.Forms.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Components.Server.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Components.Web.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Components.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Connections.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.CookiePolicy.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Cors.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Cryptography.Internal.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.DataProtection.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.DataProtection.Extensions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.DataProtection.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Diagnostics.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Diagnostics.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.HostFiltering.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Hosting.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Hosting.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Html.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Http.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Http.Connections.Common.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Http.Connections.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Http.Extensions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Http.Features.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Http.Results.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Http.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.HttpLogging.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.HttpOverrides.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.HttpsPolicy.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Identity.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Localization.Routing.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Localization.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Metadata.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.ApiExplorer.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.Core.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.Cors.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.DataAnnotations.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.Formatters.Json.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.Localization.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.Razor.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.RazorPages.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.TagHelpers.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.ViewFeatures.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Mvc.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.OutputCaching.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.RateLimiting.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Razor.Runtime.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Razor.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.RequestDecompression.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.ResponseCaching.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.ResponseCompression.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Rewrite.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Routing.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Routing.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Server.HttpSys.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Server.IIS.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Server.IISIntegration.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Server.Kestrel.Core.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Server.Kestrel.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.Session.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.SignalR.Common.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.SignalR.Core.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.SignalR.Protocols.Json.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.SignalR.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.StaticFiles.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.WebSockets.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.WebUtilities.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.AspNetCore.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Caching.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Caching.Memory.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.Binder.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.CommandLine.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.EnvironmentVariables.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.FileExtensions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.Ini.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.Json.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.KeyPerFile.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.UserSecrets.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.Xml.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Configuration.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.DependencyInjection.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.DependencyInjection.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Diagnostics.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Diagnostics.HealthChecks.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Diagnostics.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Features.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.FileProviders.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.FileProviders.Composite.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.FileProviders.Embedded.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.FileProviders.Physical.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.FileSystemGlobbing.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Hosting.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Hosting.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Http.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Identity.Core.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Identity.Stores.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Localization.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Localization.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Logging.Abstractions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Logging.Configuration.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Logging.Console.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Logging.Debug.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Logging.EventLog.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Logging.EventSource.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Logging.TraceSource.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Logging.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.ObjectPool.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Options.ConfigurationExtensions.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Options.DataAnnotations.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Options.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.Primitives.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Extensions.WebEncoders.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.JSInterop.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.Net.Http.Headers.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.EventLog.Messages.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Diagnostics.EventLog.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.Pipelines.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Cryptography.Pkcs.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Security.Cryptography.Xml.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.Threading.RateLimiting.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\Microsoft.DiaSymReader.Native.amd64.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\System.IO.Compression.Native.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\clretwrc.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\clrgc.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\clrjit.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\coreclr.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\createdump.exe +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\hostfxr.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\hostpolicy.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\mscordaccore.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\mscordaccore_amd64_amd64_8.0.1024.46610.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\mscordbi.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\mscorrc.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\msquic.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\aspnetcorev2_inprocess.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\WmsMobileServe.csproj.AssemblyReference.cache +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\WmsMobileServe.GeneratedMSBuildEditorConfig.editorconfig +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\WmsMobileServe.AssemblyInfoInputs.cache +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\WmsMobileServe.AssemblyInfo.cs +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\WmsMobileServe.csproj.CoreCompileInputs.cache +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\WmsMobileServe.MvcApplicationPartsAssemblyInfo.cache +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\staticwebassets.build.json +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\staticwebassets.development.json +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\staticwebassets\msbuild.WmsMobileServe.Microsoft.AspNetCore.StaticWebAssets.props +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\staticwebassets\msbuild.build.WmsMobileServe.props +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\staticwebassets\msbuild.buildMultiTargeting.WmsMobileServe.props +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\staticwebassets\msbuild.buildTransitive.WmsMobileServe.props +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\staticwebassets.pack.json +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\scopedcss\bundle\WmsMobileServe.styles.css +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\WmsMobil.9D52FE47.Up2Date +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\WmsMobileServe.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\refint\WmsMobileServe.dll +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\WmsMobileServe.pdb +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\WmsMobileServe.genruntimeconfig.cache +F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\win-x64\ref\WmsMobileServe.dll diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.deps.json b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.deps.json new file mode 100644 index 0000000..87713cd --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.deps.json @@ -0,0 +1,2563 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0/win-x64", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": {}, + ".NETCoreApp,Version=v8.0/win-x64": { + "WmsMobileServe/1.0.0": { + "dependencies": { + "Autofac": "8.1.1", + "Autofac.Extensions.DependencyInjection": "10.0.0", + "Microsoft.NET.ILLink.Tasks": "8.0.10", + "Newtonsoft.Json": "13.0.3", + "SqlSugarCore": "5.1.4.170", + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "8.0.10", + "runtimepack.Microsoft.AspNetCore.App.Runtime.win-x64": "8.0.10" + }, + "runtime": { + "WmsMobileServe.dll": {} + } + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/8.0.10": { + "runtime": { + "Microsoft.CSharp.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "Microsoft.VisualBasic.Core.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1024.46610" + }, + "Microsoft.VisualBasic.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "Microsoft.Win32.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "Microsoft.Win32.Registry.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.AppContext.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Buffers.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Collections.Concurrent.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Collections.Immutable.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Collections.NonGeneric.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Collections.Specialized.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Collections.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.ComponentModel.Annotations.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.ComponentModel.DataAnnotations.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.ComponentModel.EventBasedAsync.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.ComponentModel.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.ComponentModel.TypeConverter.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.ComponentModel.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Configuration.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Console.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Data.Common.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Data.DataSetExtensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Data.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Diagnostics.Contracts.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Diagnostics.Debug.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Diagnostics.FileVersionInfo.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Diagnostics.Process.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Diagnostics.StackTrace.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Diagnostics.TextWriterTraceListener.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Diagnostics.Tools.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Diagnostics.TraceSource.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Diagnostics.Tracing.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Drawing.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Drawing.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Dynamic.Runtime.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Formats.Asn1.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Formats.Tar.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Globalization.Calendars.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Globalization.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Globalization.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.IO.Compression.Brotli.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.IO.Compression.FileSystem.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.IO.Compression.ZipFile.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.IO.Compression.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.IO.FileSystem.AccessControl.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.IO.FileSystem.DriveInfo.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.IO.FileSystem.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.IO.FileSystem.Watcher.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.IO.FileSystem.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.IO.IsolatedStorage.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.IO.MemoryMappedFiles.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.IO.Pipes.AccessControl.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.IO.Pipes.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.IO.UnmanagedMemoryStream.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.IO.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Linq.Expressions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Linq.Parallel.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Linq.Queryable.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Linq.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Memory.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Net.Http.Json.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Net.Http.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Net.HttpListener.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Net.Mail.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Net.NameResolution.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Net.NetworkInformation.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Net.Ping.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Net.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Net.Quic.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Net.Requests.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Net.Security.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Net.ServicePoint.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Net.Sockets.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Net.WebClient.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Net.WebHeaderCollection.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Net.WebProxy.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Net.WebSockets.Client.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Net.WebSockets.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Net.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Numerics.Vectors.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Numerics.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.ObjectModel.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Private.CoreLib.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Private.DataContractSerialization.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Private.Uri.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Private.Xml.Linq.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Private.Xml.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Reflection.DispatchProxy.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Reflection.Emit.ILGeneration.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Reflection.Emit.Lightweight.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Reflection.Emit.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Reflection.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Reflection.Metadata.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Reflection.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Reflection.TypeExtensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Reflection.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Resources.Reader.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Resources.ResourceManager.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Resources.Writer.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Runtime.CompilerServices.Unsafe.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Runtime.CompilerServices.VisualC.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Runtime.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Runtime.Handles.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Runtime.InteropServices.JavaScript.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Runtime.InteropServices.RuntimeInformation.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Runtime.InteropServices.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Runtime.Intrinsics.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Runtime.Loader.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Runtime.Numerics.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Runtime.Serialization.Formatters.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Runtime.Serialization.Json.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Runtime.Serialization.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Runtime.Serialization.Xml.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Runtime.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Runtime.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Security.AccessControl.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Security.Claims.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Security.Cryptography.Algorithms.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Security.Cryptography.Cng.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Security.Cryptography.Csp.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Security.Cryptography.Encoding.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Security.Cryptography.OpenSsl.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Security.Cryptography.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Security.Cryptography.X509Certificates.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Security.Cryptography.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Security.Principal.Windows.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Security.Principal.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Security.SecureString.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Security.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.ServiceModel.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.ServiceProcess.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Text.Encoding.CodePages.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Text.Encoding.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Text.Encoding.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Text.Encodings.Web.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Text.Json.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Text.RegularExpressions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Threading.Channels.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Threading.Overlapped.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Threading.Tasks.Dataflow.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Threading.Tasks.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Threading.Tasks.Parallel.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Threading.Tasks.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Threading.Thread.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Threading.ThreadPool.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Threading.Timer.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Threading.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Transactions.Local.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Transactions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.ValueTuple.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Web.HttpUtility.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Windows.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Xml.Linq.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Xml.ReaderWriter.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Xml.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Xml.XDocument.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Xml.XPath.XDocument.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Xml.XPath.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Xml.XmlDocument.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Xml.XmlSerializer.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Xml.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "WindowsBase.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "mscorlib.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "netstandard.dll": { + "assemblyVersion": "2.1.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "runtimepack.Microsoft.AspNetCore.App.Runtime.win-x64/8.0.10": { + "runtime": { + "Microsoft.AspNetCore.Antiforgery.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Authentication.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Authentication.BearerToken.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Authentication.Cookies.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Authentication.Core.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Authentication.OAuth.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Authentication.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Authorization.Policy.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Authorization.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Components.Authorization.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Components.Endpoints.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Components.Forms.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Components.Server.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Components.Web.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Components.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Connections.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.CookiePolicy.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Cors.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Cryptography.Internal.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.DataProtection.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.DataProtection.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.DataProtection.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Diagnostics.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Diagnostics.HealthChecks.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Diagnostics.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.HostFiltering.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Hosting.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Hosting.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Html.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Http.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Http.Connections.Common.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Http.Connections.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Http.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Http.Features.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Http.Results.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Http.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.HttpLogging.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.HttpOverrides.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.HttpsPolicy.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Identity.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Localization.Routing.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Localization.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Metadata.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Mvc.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Mvc.ApiExplorer.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Mvc.Core.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Mvc.Cors.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Mvc.DataAnnotations.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Mvc.Formatters.Json.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Mvc.Localization.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Mvc.Razor.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Mvc.RazorPages.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Mvc.TagHelpers.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Mvc.ViewFeatures.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Mvc.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.OutputCaching.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.RateLimiting.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Razor.Runtime.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Razor.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.RequestDecompression.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.ResponseCaching.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.ResponseCompression.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Rewrite.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Routing.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Routing.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Server.HttpSys.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Server.IIS.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Server.IISIntegration.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Server.Kestrel.Core.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Server.Kestrel.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.Session.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.SignalR.Common.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.SignalR.Core.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.SignalR.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.StaticFiles.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.WebSockets.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.WebUtilities.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.AspNetCore.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + }, + "Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + }, + "Microsoft.Extensions.Configuration.Binder.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.724.31311" + }, + "Microsoft.Extensions.Configuration.CommandLine.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + }, + "Microsoft.Extensions.Configuration.FileExtensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.724.31311" + }, + "Microsoft.Extensions.Configuration.Ini.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + }, + "Microsoft.Extensions.Configuration.Json.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "Microsoft.Extensions.Configuration.KeyPerFile.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.Extensions.Configuration.UserSecrets.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "Microsoft.Extensions.Configuration.Xml.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.Extensions.Diagnostics.HealthChecks.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.Extensions.Diagnostics.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "Microsoft.Extensions.Features.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.Extensions.FileProviders.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + }, + "Microsoft.Extensions.FileProviders.Composite.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + }, + "Microsoft.Extensions.FileProviders.Embedded.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.Extensions.FileProviders.Physical.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + }, + "Microsoft.Extensions.FileSystemGlobbing.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + }, + "Microsoft.Extensions.Hosting.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "Microsoft.Extensions.Hosting.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "Microsoft.Extensions.Http.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "Microsoft.Extensions.Identity.Core.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.Extensions.Identity.Stores.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.Extensions.Localization.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.Extensions.Localization.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "Microsoft.Extensions.Logging.Configuration.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "Microsoft.Extensions.Logging.Console.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "Microsoft.Extensions.Logging.Debug.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "Microsoft.Extensions.Logging.EventLog.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "Microsoft.Extensions.Logging.EventSource.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "Microsoft.Extensions.Logging.TraceSource.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "Microsoft.Extensions.ObjectPool.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + }, + "Microsoft.Extensions.Options.DataAnnotations.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + }, + "Microsoft.Extensions.Options.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.224.6711" + }, + "Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + }, + "Microsoft.Extensions.WebEncoders.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.JSInterop.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "Microsoft.Net.Http.Headers.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + }, + "System.Diagnostics.EventLog.Messages.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "0.0.0.0" + }, + "System.Diagnostics.EventLog.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.IO.Pipelines.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + }, + "System.Security.Cryptography.Pkcs.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Security.Cryptography.Xml.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + }, + "System.Threading.RateLimiting.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + }, + "native": { + "aspnetcorev2_inprocess.dll": { + "fileVersion": "18.0.24262.10" + } + } + }, + "Autofac/8.1.1": { + "dependencies": { + "System.Diagnostics.DiagnosticSource": "8.0.1" + }, + "runtime": { + "lib/net8.0/Autofac.dll": { + "assemblyVersion": "8.1.1.0", + "fileVersion": "8.1.1.0" + } + } + }, + "Autofac.Extensions.DependencyInjection/10.0.0": { + "dependencies": { + "Autofac": "8.1.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1" + }, + "runtime": { + "lib/net8.0/Autofac.Extensions.DependencyInjection.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.0.0" + } + } + }, + "Azure.Core/1.38.0": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "1.1.1", + "System.ClientModel": "1.0.0", + "System.Diagnostics.DiagnosticSource": "8.0.1", + "System.Memory.Data": "1.0.2", + "System.Numerics.Vectors": "4.5.0", + "System.Text.Encodings.Web": "4.7.2", + "System.Text.Json": "4.7.2", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/net6.0/Azure.Core.dll": { + "assemblyVersion": "1.38.0.0", + "fileVersion": "1.3800.24.12602" + } + } + }, + "Azure.Identity/1.11.4": { + "dependencies": { + "Azure.Core": "1.38.0", + "Microsoft.Identity.Client": "4.61.3", + "Microsoft.Identity.Client.Extensions.Msal": "4.61.3", + "System.Memory": "4.5.4", + "System.Security.Cryptography.ProtectedData": "8.0.0", + "System.Text.Json": "4.7.2", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/Azure.Identity.dll": { + "assemblyVersion": "1.11.4.0", + "fileVersion": "1.1100.424.31005" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/1.1.1": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "4.700.20.21406" + } + } + }, + "Microsoft.CSharp/4.5.0": {}, + "Microsoft.Data.SqlClient/5.2.2": { + "dependencies": { + "Azure.Identity": "1.11.4", + "Microsoft.Data.SqlClient.SNI.runtime": "5.2.0", + "Microsoft.Identity.Client": "4.61.3", + "Microsoft.IdentityModel.JsonWebTokens": "6.35.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.35.0", + "Microsoft.SqlServer.Server": "1.0.0", + "System.Configuration.ConfigurationManager": "8.0.0", + "System.Runtime.Caching": "8.0.0" + }, + "runtime": { + "runtimes/win/lib/net8.0/Microsoft.Data.SqlClient.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.22.24240.6" + } + }, + "resources": { + "lib/net8.0/de/Microsoft.Data.SqlClient.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/Microsoft.Data.SqlClient.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/Microsoft.Data.SqlClient.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/Microsoft.Data.SqlClient.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/Microsoft.Data.SqlClient.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/Microsoft.Data.SqlClient.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pt-BR/Microsoft.Data.SqlClient.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/Microsoft.Data.SqlClient.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.2.0": { + "native": { + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "fileVersion": "5.2.0.0" + } + } + }, + "Microsoft.Data.Sqlite/8.0.1": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "8.0.1", + "SQLitePCLRaw.bundle_e_sqlite3": "2.1.6" + } + }, + "Microsoft.Data.Sqlite.Core/8.0.1": { + "dependencies": { + "SQLitePCLRaw.core": "2.1.6" + }, + "runtime": { + "lib/net8.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.123.58002" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.1": {}, + "Microsoft.Identity.Client/4.61.3": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.35.0", + "System.Diagnostics.DiagnosticSource": "8.0.1" + }, + "runtime": { + "lib/net6.0/Microsoft.Identity.Client.dll": { + "assemblyVersion": "4.61.3.0", + "fileVersion": "4.61.3.0" + } + } + }, + "Microsoft.Identity.Client.Extensions.Msal/4.61.3": { + "dependencies": { + "Microsoft.Identity.Client": "4.61.3", + "System.Security.Cryptography.ProtectedData": "8.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll": { + "assemblyVersion": "4.61.3.0", + "fileVersion": "4.61.3.0" + } + } + }, + "Microsoft.IdentityModel.Abstractions/6.35.0": { + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { + "assemblyVersion": "6.35.0.0", + "fileVersion": "6.35.0.41201" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.35.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.35.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encodings.Web": "4.7.2", + "System.Text.Json": "4.7.2" + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.35.0.0", + "fileVersion": "6.35.0.41201" + } + } + }, + "Microsoft.IdentityModel.Logging/6.35.0": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.35.0" + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.35.0.0", + "fileVersion": "6.35.0.41201" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.35.0": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.35.0", + "Microsoft.IdentityModel.Tokens": "6.35.0" + }, + "runtime": { + "lib/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": "6.35.0" + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "6.35.0.0", + "fileVersion": "6.35.0.41201" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.35.0": { + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.35.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.35.0.0", + "fileVersion": "6.35.0.41201" + } + } + }, + "Microsoft.NET.ILLink.Tasks/8.0.10": {}, + "Microsoft.NETCore.Platforms/5.0.0": {}, + "Microsoft.NETCore.Targets/1.1.3": {}, + "Microsoft.SqlServer.Server/1.0.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "runtime": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "MySqlConnector/2.2.5": { + "runtime": { + "lib/net7.0/MySqlConnector.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.2.5.0" + } + } + }, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + } + }, + "Npgsql/5.0.18": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "4.6.0" + }, + "runtime": { + "lib/net5.0/Npgsql.dll": { + "assemblyVersion": "5.0.18.0", + "fileVersion": "5.0.18.0" + } + } + }, + "Oracle.ManagedDataAccess.Core/3.21.100": { + "dependencies": { + "System.Diagnostics.PerformanceCounter": "6.0.1", + "System.DirectoryServices": "6.0.1", + "System.DirectoryServices.Protocols": "6.0.1" + }, + "runtime": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": { + "assemblyVersion": "3.1.21.1", + "fileVersion": "3.1.21.1" + } + } + }, + "Oscar.Data.SqlClient/4.0.4": { + "dependencies": { + "System.Text.Encoding.CodePages": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/Oscar.Data.SqlClient.dll": { + "assemblyVersion": "4.0.4.0", + "fileVersion": "4.0.4.0" + } + } + }, + "runtime.any.System.Collections/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.1" + } + }, + "runtime.any.System.Globalization/4.3.0": {}, + "runtime.any.System.IO/4.3.0": {}, + "runtime.any.System.Reflection/4.3.0": {}, + "runtime.any.System.Reflection.Primitives/4.3.0": {}, + "runtime.any.System.Resources.ResourceManager/4.3.0": {}, + "runtime.any.System.Runtime/4.3.0": { + "dependencies": { + "System.Private.Uri": "4.3.0" + } + }, + "runtime.any.System.Text.Encoding/4.3.0": {}, + "runtime.any.System.Threading.Tasks/4.3.0": {}, + "runtime.win.System.Runtime.Extensions/4.3.0": { + "dependencies": { + "System.Private.Uri": "4.3.0" + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.6": { + "dependencies": { + "SQLitePCLRaw.lib.e_sqlite3": "2.1.6", + "SQLitePCLRaw.provider.e_sqlite3": "2.1.6" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.1.6.2060", + "fileVersion": "2.1.6.2060" + } + } + }, + "SQLitePCLRaw.core/2.1.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.1.6.2060", + "fileVersion": "2.1.6.2060" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.6": { + "native": { + "runtimes/win-x64/native/e_sqlite3.dll": { + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.6": { + "dependencies": { + "SQLitePCLRaw.core": "2.1.6" + }, + "runtime": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": { + "assemblyVersion": "2.1.6.2060", + "fileVersion": "2.1.6.2060" + } + } + }, + "SqlSugarCore/5.1.4.170": { + "dependencies": { + "Microsoft.Data.SqlClient": "5.2.2", + "Microsoft.Data.Sqlite": "8.0.1", + "MySqlConnector": "2.2.5", + "Newtonsoft.Json": "13.0.3", + "Npgsql": "5.0.18", + "Oracle.ManagedDataAccess.Core": "3.21.100", + "Oscar.Data.SqlClient": "4.0.4", + "SqlSugarCore.Dm": "8.6.0", + "SqlSugarCore.Kdbndp": "9.3.6.925", + "System.Data.Common": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Text.RegularExpressions": "4.3.1" + }, + "runtime": { + "lib/netstandard2.1/SqlSugar.dll": { + "assemblyVersion": "5.1.4.170", + "fileVersion": "5.1.4.170" + } + } + }, + "SqlSugarCore.Dm/8.6.0": { + "dependencies": { + "System.Text.Encoding.CodePages": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/DM.DmProvider.dll": { + "assemblyVersion": "8.3.1.27409", + "fileVersion": "8.3.1.27409" + } + } + }, + "SqlSugarCore.Kdbndp/9.3.6.925": { + "runtime": { + "lib/netstandard2.1/Kdbndp.dll": { + "assemblyVersion": "9.3.6.801", + "fileVersion": "9.3.6.925" + } + } + }, + "System.ClientModel/1.0.0": { + "dependencies": { + "System.Memory.Data": "1.0.2", + "System.Text.Json": "4.7.2" + }, + "runtime": { + "lib/net6.0/System.ClientModel.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.24.5302" + } + } + }, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.1", + "runtime.any.System.Collections": "4.3.0" + } + }, + "System.Configuration.ConfigurationManager/8.0.0": { + "dependencies": { + "System.Diagnostics.EventLog": "8.0.0", + "System.Security.Cryptography.ProtectedData": "8.0.0" + }, + "runtime": { + "lib/net8.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "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" + } + }, + "System.Diagnostics.DiagnosticSource/8.0.1": {}, + "System.Diagnostics.EventLog/8.0.0": {}, + "System.Diagnostics.PerformanceCounter/6.0.1": { + "dependencies": { + "System.Configuration.ConfigurationManager": "8.0.0" + }, + "runtime": { + "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.422.16404" + } + } + }, + "System.DirectoryServices/6.0.1": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "runtime": { + "runtimes/win/lib/net6.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.1423.7309" + } + } + }, + "System.DirectoryServices.Protocols/6.0.1": { + "runtime": { + "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "assemblyVersion": "6.0.0.1", + "fileVersion": "6.0.222.6406" + } + } + }, + "System.Drawing.Common/6.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "runtime": { + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.1", + "runtime.any.System.Globalization": "4.3.0" + } + }, + "System.IdentityModel.Tokens.Jwt/6.35.0": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.35.0", + "Microsoft.IdentityModel.Tokens": "6.35.0" + }, + "runtime": { + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.35.0.0", + "fileVersion": "6.35.0.41201" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.1", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.any.System.IO": "4.3.0" + } + }, + "System.Memory/4.5.4": {}, + "System.Memory.Data/1.0.2": { + "dependencies": { + "System.Text.Encodings.Web": "4.7.2", + "System.Text.Json": "4.7.2" + }, + "runtime": { + "lib/netstandard2.0/System.Memory.Data.dll": { + "assemblyVersion": "1.0.2.0", + "fileVersion": "1.0.221.20802" + } + } + }, + "System.Numerics.Vectors/4.5.0": {}, + "System.Private.Uri/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3" + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.1", + "runtime.any.System.Reflection": "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.1" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.1" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.1", + "runtime.any.System.Reflection.Primitives": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.1", + "runtime.any.System.Resources.ResourceManager": "4.3.0" + } + }, + "System.Runtime/4.3.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "runtime.any.System.Runtime": "4.3.0" + } + }, + "System.Runtime.Caching/8.0.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "8.0.0" + }, + "runtime": { + "runtimes/win/lib/net8.0/System.Runtime.Caching.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/4.6.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.1", + "runtime.win.System.Runtime.Extensions": "4.3.0" + } + }, + "System.Security.AccessControl/6.0.0": {}, + "System.Security.Cryptography.Cng/4.5.0": {}, + "System.Security.Cryptography.ProtectedData/8.0.0": { + "runtime": { + "lib/net8.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "System.Security.Permissions/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.1", + "runtime.any.System.Text.Encoding": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0" + } + }, + "System.Text.Encodings.Web/4.7.2": {}, + "System.Text.Json/4.7.2": {}, + "System.Text.RegularExpressions/4.3.1": { + "dependencies": { + "System.Runtime": "4.3.1" + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.1", + "runtime.any.System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.5.4": {}, + "System.Windows.Extensions/6.0.0": { + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "runtime": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + } + } + }, + "libraries": { + "WmsMobileServe/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/8.0.10": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.AspNetCore.App.Runtime.win-x64/8.0.10": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "Autofac/8.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lhHjVB/XJtxPDUQ/FAHWAC7Spu+P9TNfDbyx2W0ABqD1eTRo7TkcZ7l7Oq1S5pKNg7NXswdk9uH73qbOzSwQFA==", + "path": "autofac/8.1.1", + "hashPath": "autofac.8.1.1.nupkg.sha512" + }, + "Autofac.Extensions.DependencyInjection/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZjR/onUlP7BzQ7VBBigQepWLAyAzi3VRGX3pP6sBqkPRiT61fsTZqbTpRUKxo30TMgbs1o3y6bpLbETix4SJog==", + "path": "autofac.extensions.dependencyinjection/10.0.0", + "hashPath": "autofac.extensions.dependencyinjection.10.0.0.nupkg.sha512" + }, + "Azure.Core/1.38.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IuEgCoVA0ef7E4pQtpC3+TkPbzaoQfa77HlfJDmfuaJUCVJmn7fT0izamZiryW5sYUFKizsftIxMkXKbgIcPMQ==", + "path": "azure.core/1.38.0", + "hashPath": "azure.core.1.38.0.nupkg.sha512" + }, + "Azure.Identity/1.11.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Sf4BoE6Q3jTgFkgBkx7qztYOFELBCo+wQgpYDwal/qJ1unBH73ywPztIJKXBXORRzAeNijsuxhk94h0TIMvfYg==", + "path": "azure.identity/1.11.4", + "hashPath": "azure.identity.1.11.4.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yuvf07qFWFqtK3P/MRkEKLhn5r2UbSpVueRziSqj0yJQIKFwG1pq9mOayK3zE5qZCTs0CbrwL9M6R8VwqyGy2w==", + "path": "microsoft.bcl.asyncinterfaces/1.1.1", + "hashPath": "microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512" + }, + "Microsoft.CSharp/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==", + "path": "microsoft.csharp/4.5.0", + "hashPath": "microsoft.csharp.4.5.0.nupkg.sha512" + }, + "Microsoft.Data.SqlClient/5.2.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mtoeRMh7F/OA536c/Cnh8L4H0uLSKB5kSmoi54oN7Fp0hNJDy22IqyMhaMH4PkDCqI7xL//Fvg9ldtuPHG0h5g==", + "path": "microsoft.data.sqlclient/5.2.2", + "hashPath": "microsoft.data.sqlclient.5.2.2.nupkg.sha512" + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-po1jhvFd+8pbfvJR/puh+fkHi0GRanAdvayh/0e47yaM6CXWZ6opUjCMFuYlAnD2LcbyvQE7fPJKvogmaUcN+w==", + "path": "microsoft.data.sqlclient.sni.runtime/5.2.0", + "hashPath": "microsoft.data.sqlclient.sni.runtime.5.2.0.nupkg.sha512" + }, + "Microsoft.Data.Sqlite/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+7uDWNYZmLrVq9eABAKwy1phGbpoFVohKCUoh/nGg9WiBwi856EkAJYFiQhTJWoXxzpInkLFj/6KACoSB7ODYg==", + "path": "microsoft.data.sqlite/8.0.1", + "hashPath": "microsoft.data.sqlite.8.0.1.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-s8C8xbwMb79EqzTaIhwiBrYtbv6ATnUW19pJed4fKVgN5K4VPQ7JUGqBLztknvD6EJIMKrfRnINGTjnZghrDGw==", + "path": "microsoft.data.sqlite.core/8.0.1", + "hashPath": "microsoft.data.sqlite.core.8.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fGLiCRLMYd00JYpClraLjJTNKLmMJPnqxMaiRzEBIIvevlzxz33mXy39Lkd48hu1G+N21S7QpaO5ZzKsI6FRuA==", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.1", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.1.nupkg.sha512" + }, + "Microsoft.Identity.Client/4.61.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-naJo/Qm35Caaoxp5utcw+R8eU8ZtLz2ALh8S+gkekOYQ1oazfCQMWVT4NJ/FnHzdIJlm8dMz0oMpMGCabx5odA==", + "path": "microsoft.identity.client/4.61.3", + "hashPath": "microsoft.identity.client.4.61.3.nupkg.sha512" + }, + "Microsoft.Identity.Client.Extensions.Msal/4.61.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PWnJcznrSGr25MN8ajlc2XIDW4zCFu0U6FkpaNLEWLgd1NgFCp5uDY3mqLDgM8zCN8hqj8yo5wHYfLB2HjcdGw==", + "path": "microsoft.identity.client.extensions.msal/4.61.3", + "hashPath": "microsoft.identity.client.extensions.msal.4.61.3.nupkg.sha512" + }, + "Microsoft.IdentityModel.Abstractions/6.35.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xuR8E4Rd96M41CnUSCiOJ2DBh+z+zQSmyrYHdYhD6K4fXBcQGVnRCFQ0efROUYpP+p0zC1BLKr0JRpVuujTZSg==", + "path": "microsoft.identitymodel.abstractions/6.35.0", + "hashPath": "microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.35.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9wxai3hKgZUb4/NjdRKfQd0QJvtXKDlvmGMYACbEC8DFaicMFCFhQFZq9ZET1kJLwZahf2lfY5Gtcpsx8zYzbg==", + "path": "microsoft.identitymodel.jsonwebtokens/6.35.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.35.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jePrSfGAmqT81JDCNSY+fxVWoGuJKt9e6eJ+vT7+quVS55nWl//jGjUQn4eFtVKt4rt5dXaleZdHRB9J9AJZ7Q==", + "path": "microsoft.identitymodel.logging/6.35.0", + "hashPath": "microsoft.identitymodel.logging.6.35.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/6.35.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BPQhlDzdFvv1PzaUxNSk+VEPwezlDEVADIKmyxubw7IiELK18uJ06RQ9QKKkds30XI+gDu9n8j24XQ8w7fjWcg==", + "path": "microsoft.identitymodel.protocols/6.35.0", + "hashPath": "microsoft.identitymodel.protocols.6.35.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LMtVqnECCCdSmyFoCOxIE5tXQqkOLrvGrL7OxHg41DIm1bpWtaCdGyVcTAfOQpJXvzND9zUKIN/lhngPkYR8vg==", + "path": "microsoft.identitymodel.protocols.openidconnect/6.35.0", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.35.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RN7lvp7s3Boucg1NaNAbqDbxtlLj5Qeb+4uSS1TeK5FSBVM40P4DKaTKChT43sHyKfh7V0zkrMph6DdHvyA4bg==", + "path": "microsoft.identitymodel.tokens/6.35.0", + "hashPath": "microsoft.identitymodel.tokens.6.35.0.nupkg.sha512" + }, + "Microsoft.NET.ILLink.Tasks/8.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xT8jYjlroY7SLbGtoV9vUTVW/TPgodL4Egc31a444Xe0TMytLZ3UlKQ0kxMZsy/CrWsFB6wtKnSG1SsXcWreew==", + "path": "microsoft.net.illink.tasks/8.0.10", + "hashPath": "microsoft.net.illink.tasks.8.0.10.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "path": "microsoft.netcore.platforms/5.0.0", + "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Wrmi0kJDzClwAC+iBdUBpEKmEle8FQNsCs77fkiOIw/9oYA07bL1EZNX0kQ2OMN3xpwvl0vAtOCYY3ndDNlhQ==", + "path": "microsoft.netcore.targets/1.1.3", + "hashPath": "microsoft.netcore.targets.1.1.3.nupkg.sha512" + }, + "Microsoft.SqlServer.Server/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==", + "path": "microsoft.sqlserver.server/1.0.0", + "hashPath": "microsoft.sqlserver.server.1.0.0.nupkg.sha512" + }, + "Microsoft.Win32.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" + }, + "MySqlConnector/2.2.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6sinY78RvryhHwpup3awdjYO7d5hhWahb5p/1VDODJhSxJggV/sBbYuKK5IQF9TuzXABiddqUbmRfM884tqA3Q==", + "path": "mysqlconnector/2.2.5", + "hashPath": "mysqlconnector.2.2.5.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "path": "newtonsoft.json/13.0.3", + "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" + }, + "Npgsql/5.0.18": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1u4iCPKL9wtPeSUzChIbgq/BlOhvf44o7xASacdpMY7z0PbqACKpNOF0fjEn9jDV/AJl/HtPY6zk5qasQ1URhw==", + "path": "npgsql/5.0.18", + "hashPath": "npgsql.5.0.18.nupkg.sha512" + }, + "Oracle.ManagedDataAccess.Core/3.21.100": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nsqyUE+v246WB0SOnR1u9lfZxYoNcdj1fRjTt7TOhCN0JurEc6+qu+mMe+dl1sySB2UpyWdfqHG1iSQJYaXEfA==", + "path": "oracle.manageddataaccess.core/3.21.100", + "hashPath": "oracle.manageddataaccess.core.3.21.100.nupkg.sha512" + }, + "Oscar.Data.SqlClient/4.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VJ3xVvRjxrPi/mMPT5EqYiMZor0MjFu83mw1qvUveBFWJSudGh9BOKZq7RkhqeNCcL1ud0uK0/TVkw+xTa4q4g==", + "path": "oscar.data.sqlclient/4.0.4", + "hashPath": "oscar.data.sqlclient.4.0.4.nupkg.sha512" + }, + "runtime.any.System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==", + "path": "runtime.any.system.collections/4.3.0", + "hashPath": "runtime.any.system.collections.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw==", + "path": "runtime.any.system.globalization/4.3.0", + "hashPath": "runtime.any.system.globalization.4.3.0.nupkg.sha512" + }, + "runtime.any.System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ==", + "path": "runtime.any.system.io/4.3.0", + "hashPath": "runtime.any.system.io.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ==", + "path": "runtime.any.system.reflection/4.3.0", + "hashPath": "runtime.any.system.reflection.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg==", + "path": "runtime.any.system.reflection.primitives/4.3.0", + "hashPath": "runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ==", + "path": "runtime.any.system.resources.resourcemanager/4.3.0", + "hashPath": "runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==", + "path": "runtime.any.system.runtime/4.3.0", + "hashPath": "runtime.any.system.runtime.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ==", + "path": "runtime.any.system.text.encoding/4.3.0", + "hashPath": "runtime.any.system.text.encoding.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w==", + "path": "runtime.any.system.threading.tasks/4.3.0", + "hashPath": "runtime.any.system.threading.tasks.4.3.0.nupkg.sha512" + }, + "runtime.win.System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RkgHVhUPvzZxuUubiZe8yr/6CypRVXj0VBzaR8hsqQ8f+rUo7e4PWrHTLOCjd8fBMGWCrY//fi7Ku3qXD7oHRw==", + "path": "runtime.win.system.runtime.extensions/4.3.0", + "hashPath": "runtime.win.system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BmAf6XWt4TqtowmiWe4/5rRot6GerAeklmOPfviOvwLoF5WwgxcJHAxZtySuyW9r9w+HLILnm8VfJFLCUJYW8A==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.1.6", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.1.6.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wO6v9GeMx9CUngAet8hbO7xdm+M42p1XeJq47ogyRoYSvNSp0NGLI+MgC0bhrMk9C17MTVFlLiN6ylyExLCc5w==", + "path": "sqlitepclraw.core/2.1.6", + "hashPath": "sqlitepclraw.core.2.1.6.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2ObJJLkIUIxRpOUlZNGuD4rICpBnrBR5anjyfUFQep4hMOIeqW+XGQYzrNmHSVz5xSWZ3klSbh7sFR6UyDj68Q==", + "path": "sqlitepclraw.lib.e_sqlite3/2.1.6", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.1.6.nupkg.sha512" + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PQ2Oq3yepLY4P7ll145P3xtx2bX8xF4PzaKPRpw9jZlKvfe4LE/saAV82inND9usn1XRpmxXk7Lal3MTI+6CNg==", + "path": "sqlitepclraw.provider.e_sqlite3/2.1.6", + "hashPath": "sqlitepclraw.provider.e_sqlite3.2.1.6.nupkg.sha512" + }, + "SqlSugarCore/5.1.4.170": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TVFfkbKak2I1VxUI8nqAUbn9rkt37m13ooq30pLK/bj9MZvV0hPbVElTn09Jg5PmfzFwXeXaQnay7IXwkODAtw==", + "path": "sqlsugarcore/5.1.4.170", + "hashPath": "sqlsugarcore.5.1.4.170.nupkg.sha512" + }, + "SqlSugarCore.Dm/8.6.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q0NAjF9hvkxLbNedIrCqKd3uru0enzZ49GaQtenvsLDQ29aHwlSqg1mRkVYxZ/85UYJFgXh+XHqABSrMgun4aw==", + "path": "sqlsugarcore.dm/8.6.0", + "hashPath": "sqlsugarcore.dm.8.6.0.nupkg.sha512" + }, + "SqlSugarCore.Kdbndp/9.3.6.925": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Qq1BAYi83aySpL6WHPLtIa0Pbh2TjFh5GYmAw9rxB4W7j6L3NKN3skaNxBbWw0Hn8y+bvCjnM0bejPK6i8Jihg==", + "path": "sqlsugarcore.kdbndp/9.3.6.925", + "hashPath": "sqlsugarcore.kdbndp.9.3.6.925.nupkg.sha512" + }, + "System.ClientModel/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I3CVkvxeqFYjIVEP59DnjbeoGNfo/+SZrCLpRz2v/g0gpCHaEMPtWSY0s9k/7jR1rAsLNg2z2u1JRB76tPjnIw==", + "path": "system.clientmodel/1.0.0", + "hashPath": "system.clientmodel.1.0.0.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JlYi9XVvIREURRUlGMr1F6vOFLk7YSY4p1vHo4kX3tQ0AGrjqlRWHDi66ImHhy6qwXBG3BJ6Y1QlYQ+Qz6Xgww==", + "path": "system.configuration.configurationmanager/8.0.0", + "hashPath": "system.configuration.configurationmanager.8.0.0.nupkg.sha512" + }, + "System.Data.Common/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", + "path": "system.data.common/4.3.0", + "hashPath": "system.data.common.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vaoWjvkG1aenR2XdjaVivlCV9fADfgyhW5bZtXT23qaEea0lWiUljdQuze4E31vKM7ZWJaSUsbYIKE3rnzfZUg==", + "path": "system.diagnostics.diagnosticsource/8.0.1", + "hashPath": "system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512" + }, + "System.Diagnostics.EventLog/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fdYxcRjQqTTacKId/2IECojlDSFvp7LP5N78+0z/xH7v/Tuw5ZAxu23Y6PTCRinqyu2ePx+Gn1098NC6jM6d+A==", + "path": "system.diagnostics.eventlog/8.0.0", + "hashPath": "system.diagnostics.eventlog.8.0.0.nupkg.sha512" + }, + "System.Diagnostics.PerformanceCounter/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dDl7Gx3bmSrM2k2ZIm+ucEJnLloZRyvfQF1DvfvATcGF3jtaUBiPvChma+6ZcZzxWMirN3kCywkW7PILphXyMQ==", + "path": "system.diagnostics.performancecounter/6.0.1", + "hashPath": "system.diagnostics.performancecounter.6.0.1.nupkg.sha512" + }, + "System.DirectoryServices/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-935IbO7h5FDGYxeO3cbx/CuvBBuk/VI8sENlfmXlh1pupNOB3LAGzdYdPY8CawGJFP7KNrHK5eUlsFoz3F6cuA==", + "path": "system.directoryservices/6.0.1", + "hashPath": "system.directoryservices.6.0.1.nupkg.sha512" + }, + "System.DirectoryServices.Protocols/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ndUZlEkAMc1XzM0xGN++SsJrNhRkIHaKI8+te325vrUgoLT1ufWNI6KB8FFrL7NpRMHPrdxP99aF3fHbAPxW0A==", + "path": "system.directoryservices.protocols/6.0.1", + "hashPath": "system.directoryservices.protocols.6.0.1.nupkg.sha512" + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "path": "system.drawing.common/6.0.0", + "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.35.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yxGIQd3BFK7F6S62/7RdZk3C/mfwyVxvh6ngd1VYMBmbJ1YZZA9+Ku6suylVtso0FjI0wbElpJ0d27CdsyLpBQ==", + "path": "system.identitymodel.tokens.jwt/6.35.0", + "hashPath": "system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.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.Memory.Data/1.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==", + "path": "system.memory.data/1.0.2", + "hashPath": "system.memory.data.1.0.2.nupkg.sha512" + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "path": "system.numerics.vectors/4.5.0", + "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" + }, + "System.Private.Uri/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==", + "path": "system.private.uri/4.3.0", + "hashPath": "system.private.uri.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-abhfv1dTK6NXOmu4bgHIONxHyEqFjW8HwXPmpY9gmll+ix9UNo4XDcmzJn6oLooftxNssVHdJC1pGT9jkSynQg==", + "path": "system.runtime/4.3.1", + "hashPath": "system.runtime.4.3.1.nupkg.sha512" + }, + "System.Runtime.Caching/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4TmlmvGp4kzZomm7J2HJn6IIx0UUrQyhBDyb5O1XiunZlQImXW+B8b7W/sTPcXhSf9rp5NR5aDtQllwbB5elOQ==", + "path": "system.runtime.caching/8.0.0", + "hashPath": "system.runtime.caching.8.0.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/4.6.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HxozeSlipUK7dAroTYwIcGwKDeOVpQnJlpVaOkBz7CM4TsE5b/tKlQBZecTjh6FzcSbxndYaxxpsBMz+wMJeyw==", + "path": "system.runtime.compilerservices.unsafe/4.6.0", + "hashPath": "system.runtime.compilerservices.unsafe.4.6.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "path": "system.security.accesscontrol/6.0.0", + "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.5.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" + }, + "System.Security.Cryptography.ProtectedData/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+TUFINV2q2ifyXauQXRwy4CiBhqvDEDZeVJU7qfxya4aRYOKzVBpN+4acx25VcPB9ywUN6C0n8drWl110PhZEg==", + "path": "system.security.cryptography.protecteddata/8.0.0", + "hashPath": "system.security.cryptography.protecteddata.8.0.0.nupkg.sha512" + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "path": "system.security.permissions/6.0.0", + "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/5.0.0": { + "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" + }, + "System.Text.Encodings.Web/4.7.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iTUgB/WtrZ1sWZs84F2hwyQhiRH6QNjQv2DkwrH+WP6RoFga2Q1m3f9/Q7FG8cck8AdHitQkmkXSY8qylcDmuA==", + "path": "system.text.encodings.web/4.7.2", + "hashPath": "system.text.encodings.web.4.7.2.nupkg.sha512" + }, + "System.Text.Json/4.7.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TcMd95wcrubm9nHvJEQs70rC0H/8omiSGGpU4FQ/ZA1URIqD4pjmFJh2Mfv1yH1eHgJDWTi2hMDXwTET+zOOyg==", + "path": "system.text.json/4.7.2", + "hashPath": "system.text.json.4.7.2.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N0kNRrWe4+nXOWlpLT4LAY5brb8caNFlUuIRpraCVMDLYutKkol1aV079rQjLuSxKMJT2SpBQsYX9xbcTMmzwg==", + "path": "system.text.regularexpressions/4.3.1", + "hashPath": "system.text.regularexpressions.4.3.1.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "serviceable": true, + "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.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" + } + }, + "runtimes": { + "win-x64": [ + "win", + "any", + "base" + ] + } +} \ No newline at end of file diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.dll b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.dll new file mode 100644 index 0000000..a025750 Binary files /dev/null and b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.dll differ diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.genbundle.cache b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.genbundle.cache new file mode 100644 index 0000000..7f7c531 --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.genbundle.cache @@ -0,0 +1 @@ +b5b114dee2b806c7c3e112de77c4473c6b616b557e10690dbd58ea2179815d85 diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.genpublishdeps.cache b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.genpublishdeps.cache new file mode 100644 index 0000000..44d646b --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.genpublishdeps.cache @@ -0,0 +1 @@ +aaee9269bab2170af35f3082791cbce5d3cd992e11353db74550d30b82e232df diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.genruntimeconfig.cache b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.genruntimeconfig.cache new file mode 100644 index 0000000..dc71b04 --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.genruntimeconfig.cache @@ -0,0 +1 @@ +698cfa7a294c9e39fb0f63f8e35bf542113d670d97fdc0eb62419c1a899d96d4 diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.pdb b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.pdb new file mode 100644 index 0000000..5c9a313 Binary files /dev/null and b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.pdb differ diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/apphost.exe b/WmsMobileServe/obj/Release/net8.0/win-x64/apphost.exe new file mode 100644 index 0000000..a53a198 Binary files /dev/null and b/WmsMobileServe/obj/Release/net8.0/win-x64/apphost.exe differ diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/ref/WmsMobileServe.dll b/WmsMobileServe/obj/Release/net8.0/win-x64/ref/WmsMobileServe.dll new file mode 100644 index 0000000..68fca79 Binary files /dev/null and b/WmsMobileServe/obj/Release/net8.0/win-x64/ref/WmsMobileServe.dll differ diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/refint/WmsMobileServe.dll b/WmsMobileServe/obj/Release/net8.0/win-x64/refint/WmsMobileServe.dll new file mode 100644 index 0000000..68fca79 Binary files /dev/null and b/WmsMobileServe/obj/Release/net8.0/win-x64/refint/WmsMobileServe.dll differ diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/singlefilehost.exe b/WmsMobileServe/obj/Release/net8.0/win-x64/singlefilehost.exe new file mode 100644 index 0000000..8406fd3 Binary files /dev/null and b/WmsMobileServe/obj/Release/net8.0/win-x64/singlefilehost.exe differ diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/staticwebassets.build.json b/WmsMobileServe/obj/Release/net8.0/win-x64/staticwebassets.build.json new file mode 100644 index 0000000..9a331a3 --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/win-x64/staticwebassets.build.json @@ -0,0 +1,11 @@ +{ + "Version": 1, + "Hash": "no2FY122M3c5wMy0eUk7qMP8sKcnK8IabNLWFD0lv/4=", + "Source": "WmsMobileServe", + "BasePath": "_content/WmsMobileServe", + "Mode": "Default", + "ManifestType": "Build", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [], + "Assets": [] +} \ No newline at end of file diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/staticwebassets.publish.json b/WmsMobileServe/obj/Release/net8.0/win-x64/staticwebassets.publish.json new file mode 100644 index 0000000..092e50b --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/win-x64/staticwebassets.publish.json @@ -0,0 +1,11 @@ +{ + "Version": 1, + "Hash": "bar20eruJ95aBiaIcDQGJNJWgH+FjzBw3arFz9xpW1E=", + "Source": "WmsMobileServe", + "BasePath": "_content/WmsMobileServe", + "Mode": "Default", + "ManifestType": "Publish", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [], + "Assets": [] +} \ No newline at end of file diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/staticwebassets/msbuild.build.WmsMobileServe.props b/WmsMobileServe/obj/Release/net8.0/win-x64/staticwebassets/msbuild.build.WmsMobileServe.props new file mode 100644 index 0000000..5a6032a --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/win-x64/staticwebassets/msbuild.build.WmsMobileServe.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/staticwebassets/msbuild.buildMultiTargeting.WmsMobileServe.props b/WmsMobileServe/obj/Release/net8.0/win-x64/staticwebassets/msbuild.buildMultiTargeting.WmsMobileServe.props new file mode 100644 index 0000000..2f4579d --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/win-x64/staticwebassets/msbuild.buildMultiTargeting.WmsMobileServe.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/staticwebassets/msbuild.buildTransitive.WmsMobileServe.props b/WmsMobileServe/obj/Release/net8.0/win-x64/staticwebassets/msbuild.buildTransitive.WmsMobileServe.props new file mode 100644 index 0000000..7d5a596 --- /dev/null +++ b/WmsMobileServe/obj/Release/net8.0/win-x64/staticwebassets/msbuild.buildTransitive.WmsMobileServe.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/WmsMobileServe/obj/WmsMobileServe.csproj.EntityFrameworkCore.targets b/WmsMobileServe/obj/WmsMobileServe.csproj.EntityFrameworkCore.targets new file mode 100644 index 0000000..7d6485d --- /dev/null +++ b/WmsMobileServe/obj/WmsMobileServe.csproj.EntityFrameworkCore.targets @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/WmsMobileServe/obj/WmsMobileServe.csproj.nuget.dgspec.json b/WmsMobileServe/obj/WmsMobileServe.csproj.nuget.dgspec.json new file mode 100644 index 0000000..ca9db99 --- /dev/null +++ b/WmsMobileServe/obj/WmsMobileServe.csproj.nuget.dgspec.json @@ -0,0 +1,96 @@ +{ + "format": 1, + "restore": { + "F:\\AndriodProject\\2024_11_JinWang_ChengPing\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj": {} + }, + "projects": { + "F:\\AndriodProject\\2024_11_JinWang_ChengPing\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\AndriodProject\\2024_11_JinWang_ChengPing\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj", + "projectName": "WmsMobileServe", + "projectPath": "F:\\AndriodProject\\2024_11_JinWang_ChengPing\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj", + "packagesPath": "C:\\Users\\icewi\\.nuget\\packages\\", + "outputPath": "F:\\AndriodProject\\2024_11_JinWang_ChengPing\\WmsMobileServe\\WmsMobileServe\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Microsoft\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\icewi\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {}, + "https://nuget.cdn.azure.cn/v3/index.json": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Autofac": { + "target": "Package", + "version": "[8.1.1, )" + }, + "Autofac.Extensions.DependencyInjection": { + "target": "Package", + "version": "[10.0.0, )" + }, + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.3, )" + }, + "SqlSugarCore": { + "target": "Package", + "version": "[5.1.4.170, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/WmsMobileServe/obj/WmsMobileServe.csproj.nuget.g.props b/WmsMobileServe/obj/WmsMobileServe.csproj.nuget.g.props new file mode 100644 index 0000000..e08f679 --- /dev/null +++ b/WmsMobileServe/obj/WmsMobileServe.csproj.nuget.g.props @@ -0,0 +1,16 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\icewi\.nuget\packages\;D:\Microsoft\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.12.2 + + + + + + \ No newline at end of file diff --git a/WmsMobileServe/obj/WmsMobileServe.csproj.nuget.g.targets b/WmsMobileServe/obj/WmsMobileServe.csproj.nuget.g.targets new file mode 100644 index 0000000..5b2a2dd --- /dev/null +++ b/WmsMobileServe/obj/WmsMobileServe.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/WmsMobileServe/obj/project.assets.json b/WmsMobileServe/obj/project.assets.json new file mode 100644 index 0000000..51f2ebf --- /dev/null +++ b/WmsMobileServe/obj/project.assets.json @@ -0,0 +1,3909 @@ +{ + "version": 3, + "targets": { + "net8.0": { + "Autofac/8.1.1": { + "type": "package", + "dependencies": { + "System.Diagnostics.DiagnosticSource": "8.0.1" + }, + "compile": { + "lib/net8.0/Autofac.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Autofac.dll": { + "related": ".xml" + } + } + }, + "Autofac.Extensions.DependencyInjection/10.0.0": { + "type": "package", + "dependencies": { + "Autofac": "8.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1" + }, + "compile": { + "lib/net8.0/Autofac.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Autofac.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + } + }, + "Azure.Core/1.38.0": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "1.1.1", + "System.ClientModel": "1.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.1", + "System.Memory.Data": "1.0.2", + "System.Numerics.Vectors": "4.5.0", + "System.Text.Encodings.Web": "4.7.2", + "System.Text.Json": "4.7.2", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/net6.0/Azure.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Azure.Core.dll": { + "related": ".xml" + } + } + }, + "Azure.Identity/1.11.4": { + "type": "package", + "dependencies": { + "Azure.Core": "1.38.0", + "Microsoft.Identity.Client": "4.61.3", + "Microsoft.Identity.Client.Extensions.Msal": "4.61.3", + "System.Memory": "4.5.4", + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Text.Json": "4.7.2", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/netstandard2.0/Azure.Identity.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Azure.Identity.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/1.1.1": { + "type": "package", + "compile": { + "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + } + }, + "Microsoft.CSharp/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.Data.SqlClient/5.2.2": { + "type": "package", + "dependencies": { + "Azure.Identity": "1.11.4", + "Microsoft.Data.SqlClient.SNI.runtime": "5.2.0", + "Microsoft.Identity.Client": "4.61.3", + "Microsoft.IdentityModel.JsonWebTokens": "6.35.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.35.0", + "Microsoft.SqlServer.Server": "1.0.0", + "System.Configuration.ConfigurationManager": "8.0.0", + "System.Runtime.Caching": "8.0.0" + }, + "compile": { + "ref/net8.0/Microsoft.Data.SqlClient.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Data.SqlClient.dll": { + "related": ".xml" + } + }, + "resource": { + "lib/net8.0/de/Microsoft.Data.SqlClient.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/Microsoft.Data.SqlClient.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/Microsoft.Data.SqlClient.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/Microsoft.Data.SqlClient.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/Microsoft.Data.SqlClient.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/Microsoft.Data.SqlClient.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pt-BR/Microsoft.Data.SqlClient.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/Microsoft.Data.SqlClient.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll": { + "locale": "zh-Hant" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net8.0/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net8.0/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.2.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Microsoft.Data.Sqlite/8.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Data.Sqlite.Core": "8.0.1", + "SQLitePCLRaw.bundle_e_sqlite3": "2.1.6" + }, + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "Microsoft.Data.Sqlite.Core/8.0.1": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.1.6" + }, + "compile": { + "lib/net8.0/Microsoft.Data.Sqlite.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Data.Sqlite.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.1": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Identity.Client/4.61.3": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.35.0", + "System.Diagnostics.DiagnosticSource": "6.0.1" + }, + "compile": { + "lib/net6.0/Microsoft.Identity.Client.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Identity.Client.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Identity.Client.Extensions.Msal/4.61.3": { + "type": "package", + "dependencies": { + "Microsoft.Identity.Client": "4.61.3", + "System.Security.Cryptography.ProtectedData": "4.5.0" + }, + "compile": { + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Abstractions/6.35.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.35.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encodings.Web": "4.7.2", + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Logging/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.35.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.35.0", + "Microsoft.IdentityModel.Tokens": "6.35.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.35.0", + "System.IdentityModel.Tokens.Jwt": "6.35.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.35.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.3": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.SqlServer.Server/1.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "MySqlConnector/2.2.5": { + "type": "package", + "compile": { + "lib/net7.0/MySqlConnector.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/MySqlConnector.dll": { + "related": ".xml" + } + } + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "compile": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "Npgsql/5.0.18": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "4.6.0" + }, + "compile": { + "lib/net5.0/Npgsql.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Npgsql.dll": { + "related": ".xml" + } + } + }, + "Oracle.ManagedDataAccess.Core/3.21.100": { + "type": "package", + "dependencies": { + "System.Diagnostics.PerformanceCounter": "6.0.1", + "System.DirectoryServices": "6.0.1", + "System.DirectoryServices.Protocols": "6.0.1" + }, + "compile": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {} + } + }, + "Oscar.Data.SqlClient/4.0.4": { + "type": "package", + "dependencies": { + "System.Text.Encoding.CodePages": "4.7.1" + }, + "compile": { + "lib/netstandard2.0/Oscar.Data.SqlClient.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Oscar.Data.SqlClient.dll": {} + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.6": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.lib.e_sqlite3": "2.1.6", + "SQLitePCLRaw.provider.e_sqlite3": "2.1.6" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {} + } + }, + "SQLitePCLRaw.core/2.1.6": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.3" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.6": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + }, + "build": { + "buildTransitive/net8.0/SQLitePCLRaw.lib.e_sqlite3.targets": {} + }, + "runtimeTargets": { + "runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a": { + "assetType": "native", + "rid": "browser-wasm" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-armel" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-mips64" + }, + "runtimes/linux-musl-arm/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-arm" + }, + "runtimes/linux-musl-arm64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-arm64" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-ppc64le/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-ppc64le" + }, + "runtimes/linux-s390x/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-s390x" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x86" + }, + "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "maccatalyst-arm64" + }, + "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "maccatalyst-x64" + }, + "runtimes/osx-arm64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "osx-arm64" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "osx-x64" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.6": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.1.6" + }, + "compile": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": {} + }, + "runtime": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": {} + } + }, + "SqlSugarCore/5.1.4.170": { + "type": "package", + "dependencies": { + "Microsoft.Data.SqlClient": "5.2.2", + "Microsoft.Data.Sqlite": "8.0.1", + "MySqlConnector": "2.2.5", + "Newtonsoft.Json": "13.0.2", + "Npgsql": "5.0.18", + "Oracle.ManagedDataAccess.Core": "3.21.100", + "Oscar.Data.SqlClient": "4.0.4", + "SqlSugarCore.Dm": "8.6.0", + "SqlSugarCore.Kdbndp": "9.3.6.925", + "System.Data.Common": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Text.RegularExpressions": "4.3.1" + }, + "compile": { + "lib/netstandard2.1/SqlSugar.dll": {} + }, + "runtime": { + "lib/netstandard2.1/SqlSugar.dll": {} + } + }, + "SqlSugarCore.Dm/8.6.0": { + "type": "package", + "dependencies": { + "System.Text.Encoding.CodePages": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/DM.DmProvider.dll": {} + }, + "runtime": { + "lib/netstandard2.0/DM.DmProvider.dll": {} + } + }, + "SqlSugarCore.Kdbndp/9.3.6.925": { + "type": "package", + "compile": { + "lib/netstandard2.1/Kdbndp.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Kdbndp.dll": {} + } + }, + "System.ClientModel/1.0.0": { + "type": "package", + "dependencies": { + "System.Memory.Data": "1.0.2", + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/net6.0/System.ClientModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.ClientModel.dll": { + "related": ".xml" + } + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.Configuration.ConfigurationManager/8.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.EventLog": "8.0.0", + "System.Security.Cryptography.ProtectedData": "8.0.0" + }, + "compile": { + "lib/net8.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Data.Common/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Data.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.2/System.Data.Common.dll": {} + } + }, + "System.Diagnostics.DiagnosticSource/8.0.1": { + "type": "package", + "compile": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Diagnostics.EventLog/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": { + "assetType": "runtime", + "rid": "win" + }, + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.PerformanceCounter/6.0.1": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices/6.0.1": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.DirectoryServices.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.DirectoryServices.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.DirectoryServices.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices.Protocols/6.0.1": { + "type": "package", + "compile": { + "lib/net6.0/System.DirectoryServices.Protocols.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.DirectoryServices.Protocols.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "assetType": "runtime", + "rid": "linux" + }, + "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.IdentityModel.Tokens.Jwt/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.35.0", + "Microsoft.IdentityModel.Tokens": "6.35.0" + }, + "compile": { + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": { + "related": ".xml" + } + } + }, + "System.Memory/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Memory.Data/1.0.2": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "4.7.2", + "System.Text.Json": "4.6.0" + }, + "compile": { + "lib/netstandard2.0/System.Memory.Data.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Memory.Data.dll": { + "related": ".xml" + } + } + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": { + "related": ".xml" + } + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + } + }, + "System.Runtime/4.3.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.3" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.Caching/8.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "8.0.0" + }, + "compile": { + "lib/net8.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Runtime.Caching.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net8.0/System.Runtime.Caching.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/4.6.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + } + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.ProtectedData/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": { + "related": ".xml" + } + } + }, + "System.Text.Encoding.CodePages/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encodings.Web/4.7.2": { + "type": "package", + "compile": { + "lib/netstandard2.1/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + } + }, + "System.Text.Json/4.7.2": { + "type": "package", + "compile": { + "lib/netcoreapp3.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.Text.Json.dll": { + "related": ".xml" + } + } + }, + "System.Text.RegularExpressions/4.3.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.1" + }, + "compile": { + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": { + "related": ".xml" + } + } + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + } + } + }, + "libraries": { + "Autofac/8.1.1": { + "sha512": "lhHjVB/XJtxPDUQ/FAHWAC7Spu+P9TNfDbyx2W0ABqD1eTRo7TkcZ7l7Oq1S5pKNg7NXswdk9uH73qbOzSwQFA==", + "type": "package", + "path": "autofac/8.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "autofac.8.1.1.nupkg.sha512", + "autofac.nuspec", + "icon.png", + "lib/net6.0/Autofac.dll", + "lib/net6.0/Autofac.xml", + "lib/net7.0/Autofac.dll", + "lib/net7.0/Autofac.xml", + "lib/net8.0/Autofac.dll", + "lib/net8.0/Autofac.xml", + "lib/netstandard2.0/Autofac.dll", + "lib/netstandard2.0/Autofac.xml", + "lib/netstandard2.1/Autofac.dll", + "lib/netstandard2.1/Autofac.xml" + ] + }, + "Autofac.Extensions.DependencyInjection/10.0.0": { + "sha512": "ZjR/onUlP7BzQ7VBBigQepWLAyAzi3VRGX3pP6sBqkPRiT61fsTZqbTpRUKxo30TMgbs1o3y6bpLbETix4SJog==", + "type": "package", + "path": "autofac.extensions.dependencyinjection/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "autofac.extensions.dependencyinjection.10.0.0.nupkg.sha512", + "autofac.extensions.dependencyinjection.nuspec", + "icon.png", + "lib/net6.0/Autofac.Extensions.DependencyInjection.dll", + "lib/net6.0/Autofac.Extensions.DependencyInjection.xml", + "lib/net7.0/Autofac.Extensions.DependencyInjection.dll", + "lib/net7.0/Autofac.Extensions.DependencyInjection.xml", + "lib/net8.0/Autofac.Extensions.DependencyInjection.dll", + "lib/net8.0/Autofac.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml" + ] + }, + "Azure.Core/1.38.0": { + "sha512": "IuEgCoVA0ef7E4pQtpC3+TkPbzaoQfa77HlfJDmfuaJUCVJmn7fT0izamZiryW5sYUFKizsftIxMkXKbgIcPMQ==", + "type": "package", + "path": "azure.core/1.38.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.core.1.38.0.nupkg.sha512", + "azure.core.nuspec", + "azureicon.png", + "lib/net461/Azure.Core.dll", + "lib/net461/Azure.Core.xml", + "lib/net472/Azure.Core.dll", + "lib/net472/Azure.Core.xml", + "lib/net6.0/Azure.Core.dll", + "lib/net6.0/Azure.Core.xml", + "lib/netstandard2.0/Azure.Core.dll", + "lib/netstandard2.0/Azure.Core.xml" + ] + }, + "Azure.Identity/1.11.4": { + "sha512": "Sf4BoE6Q3jTgFkgBkx7qztYOFELBCo+wQgpYDwal/qJ1unBH73ywPztIJKXBXORRzAeNijsuxhk94h0TIMvfYg==", + "type": "package", + "path": "azure.identity/1.11.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.identity.1.11.4.nupkg.sha512", + "azure.identity.nuspec", + "azureicon.png", + "lib/netstandard2.0/Azure.Identity.dll", + "lib/netstandard2.0/Azure.Identity.xml" + ] + }, + "Microsoft.Bcl.AsyncInterfaces/1.1.1": { + "sha512": "yuvf07qFWFqtK3P/MRkEKLhn5r2UbSpVueRziSqj0yJQIKFwG1pq9mOayK3zE5qZCTs0CbrwL9M6R8VwqyGy2w==", + "type": "package", + "path": "microsoft.bcl.asyncinterfaces/1.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", + "microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512", + "microsoft.bcl.asyncinterfaces.nuspec", + "ref/net461/Microsoft.Bcl.AsyncInterfaces.dll", + "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.CSharp/4.5.0": { + "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==", + "type": "package", + "path": "microsoft.csharp/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.5.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Data.SqlClient/5.2.2": { + "sha512": "mtoeRMh7F/OA536c/Cnh8L4H0uLSKB5kSmoi54oN7Fp0hNJDy22IqyMhaMH4PkDCqI7xL//Fvg9ldtuPHG0h5g==", + "type": "package", + "path": "microsoft.data.sqlclient/5.2.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dotnet.png", + "lib/net462/Microsoft.Data.SqlClient.dll", + "lib/net462/Microsoft.Data.SqlClient.xml", + "lib/net462/de/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/es/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/it/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/Microsoft.Data.SqlClient.dll", + "lib/net6.0/Microsoft.Data.SqlClient.xml", + "lib/net6.0/de/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/es/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/it/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/Microsoft.Data.SqlClient.dll", + "lib/net8.0/Microsoft.Data.SqlClient.xml", + "lib/net8.0/de/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/es/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/it/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "lib/netstandard2.0/Microsoft.Data.SqlClient.xml", + "lib/netstandard2.0/de/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/es/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/it/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "lib/netstandard2.1/Microsoft.Data.SqlClient.xml", + "lib/netstandard2.1/de/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/es/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/it/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "microsoft.data.sqlclient.5.2.2.nupkg.sha512", + "microsoft.data.sqlclient.nuspec", + "ref/net462/Microsoft.Data.SqlClient.dll", + "ref/net462/Microsoft.Data.SqlClient.xml", + "ref/net6.0/Microsoft.Data.SqlClient.dll", + "ref/net6.0/Microsoft.Data.SqlClient.xml", + "ref/net8.0/Microsoft.Data.SqlClient.dll", + "ref/net8.0/Microsoft.Data.SqlClient.xml", + "ref/netstandard2.0/Microsoft.Data.SqlClient.dll", + "ref/netstandard2.0/Microsoft.Data.SqlClient.xml", + "ref/netstandard2.1/Microsoft.Data.SqlClient.dll", + "ref/netstandard2.1/Microsoft.Data.SqlClient.xml", + "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/net8.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net462/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net8.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll" + ] + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.2.0": { + "sha512": "po1jhvFd+8pbfvJR/puh+fkHi0GRanAdvayh/0e47yaM6CXWZ6opUjCMFuYlAnD2LcbyvQE7fPJKvogmaUcN+w==", + "type": "package", + "path": "microsoft.data.sqlclient.sni.runtime/5.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "dotnet.png", + "microsoft.data.sqlclient.sni.runtime.5.2.0.nupkg.sha512", + "microsoft.data.sqlclient.sni.runtime.nuspec", + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll" + ] + }, + "Microsoft.Data.Sqlite/8.0.1": { + "sha512": "+7uDWNYZmLrVq9eABAKwy1phGbpoFVohKCUoh/nGg9WiBwi856EkAJYFiQhTJWoXxzpInkLFj/6KACoSB7ODYg==", + "type": "package", + "path": "microsoft.data.sqlite/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/_._", + "microsoft.data.sqlite.8.0.1.nupkg.sha512", + "microsoft.data.sqlite.nuspec" + ] + }, + "Microsoft.Data.Sqlite.Core/8.0.1": { + "sha512": "s8C8xbwMb79EqzTaIhwiBrYtbv6ATnUW19pJed4fKVgN5K4VPQ7JUGqBLztknvD6EJIMKrfRnINGTjnZghrDGw==", + "type": "package", + "path": "microsoft.data.sqlite.core/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net6.0/Microsoft.Data.Sqlite.dll", + "lib/net6.0/Microsoft.Data.Sqlite.xml", + "lib/net8.0/Microsoft.Data.Sqlite.dll", + "lib/net8.0/Microsoft.Data.Sqlite.xml", + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll", + "lib/netstandard2.0/Microsoft.Data.Sqlite.xml", + "microsoft.data.sqlite.core.8.0.1.nupkg.sha512", + "microsoft.data.sqlite.core.nuspec" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.1": { + "sha512": "fGLiCRLMYd00JYpClraLjJTNKLmMJPnqxMaiRzEBIIvevlzxz33mXy39Lkd48hu1G+N21S7QpaO5ZzKsI6FRuA==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.8.0.1.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Identity.Client/4.61.3": { + "sha512": "naJo/Qm35Caaoxp5utcw+R8eU8ZtLz2ALh8S+gkekOYQ1oazfCQMWVT4NJ/FnHzdIJlm8dMz0oMpMGCabx5odA==", + "type": "package", + "path": "microsoft.identity.client/4.61.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net462/Microsoft.Identity.Client.dll", + "lib/net462/Microsoft.Identity.Client.xml", + "lib/net6.0-android31.0/Microsoft.Identity.Client.dll", + "lib/net6.0-android31.0/Microsoft.Identity.Client.xml", + "lib/net6.0-ios15.4/Microsoft.Identity.Client.dll", + "lib/net6.0-ios15.4/Microsoft.Identity.Client.xml", + "lib/net6.0/Microsoft.Identity.Client.dll", + "lib/net6.0/Microsoft.Identity.Client.xml", + "lib/netstandard2.0/Microsoft.Identity.Client.dll", + "lib/netstandard2.0/Microsoft.Identity.Client.xml", + "microsoft.identity.client.4.61.3.nupkg.sha512", + "microsoft.identity.client.nuspec" + ] + }, + "Microsoft.Identity.Client.Extensions.Msal/4.61.3": { + "sha512": "PWnJcznrSGr25MN8ajlc2XIDW4zCFu0U6FkpaNLEWLgd1NgFCp5uDY3mqLDgM8zCN8hqj8yo5wHYfLB2HjcdGw==", + "type": "package", + "path": "microsoft.identity.client.extensions.msal/4.61.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll", + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.xml", + "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll", + "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.xml", + "microsoft.identity.client.extensions.msal.4.61.3.nupkg.sha512", + "microsoft.identity.client.extensions.msal.nuspec" + ] + }, + "Microsoft.IdentityModel.Abstractions/6.35.0": { + "sha512": "xuR8E4Rd96M41CnUSCiOJ2DBh+z+zQSmyrYHdYhD6K4fXBcQGVnRCFQ0efROUYpP+p0zC1BLKr0JRpVuujTZSg==", + "type": "package", + "path": "microsoft.identitymodel.abstractions/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Abstractions.dll", + "lib/net45/Microsoft.IdentityModel.Abstractions.xml", + "lib/net461/Microsoft.IdentityModel.Abstractions.dll", + "lib/net461/Microsoft.IdentityModel.Abstractions.xml", + "lib/net462/Microsoft.IdentityModel.Abstractions.dll", + "lib/net462/Microsoft.IdentityModel.Abstractions.xml", + "lib/net472/Microsoft.IdentityModel.Abstractions.dll", + "lib/net472/Microsoft.IdentityModel.Abstractions.xml", + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml", + "microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512", + "microsoft.identitymodel.abstractions.nuspec" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/6.35.0": { + "sha512": "9wxai3hKgZUb4/NjdRKfQd0QJvtXKDlvmGMYACbEC8DFaicMFCFhQFZq9ZET1kJLwZahf2lfY5Gtcpsx8zYzbg==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/6.35.0": { + "sha512": "jePrSfGAmqT81JDCNSY+fxVWoGuJKt9e6eJ+vT7+quVS55nWl//jGjUQn4eFtVKt4rt5dXaleZdHRB9J9AJZ7Q==", + "type": "package", + "path": "microsoft.identitymodel.logging/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Logging.dll", + "lib/net45/Microsoft.IdentityModel.Logging.xml", + "lib/net461/Microsoft.IdentityModel.Logging.dll", + "lib/net461/Microsoft.IdentityModel.Logging.xml", + "lib/net462/Microsoft.IdentityModel.Logging.dll", + "lib/net462/Microsoft.IdentityModel.Logging.xml", + "lib/net472/Microsoft.IdentityModel.Logging.dll", + "lib/net472/Microsoft.IdentityModel.Logging.xml", + "lib/net6.0/Microsoft.IdentityModel.Logging.dll", + "lib/net6.0/Microsoft.IdentityModel.Logging.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", + "microsoft.identitymodel.logging.6.35.0.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols/6.35.0": { + "sha512": "BPQhlDzdFvv1PzaUxNSk+VEPwezlDEVADIKmyxubw7IiELK18uJ06RQ9QKKkds30XI+gDu9n8j24XQ8w7fjWcg==", + "type": "package", + "path": "microsoft.identitymodel.protocols/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.xml", + "lib/net462/Microsoft.IdentityModel.Protocols.dll", + "lib/net462/Microsoft.IdentityModel.Protocols.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.xml", + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll", + "lib/net6.0/Microsoft.IdentityModel.Protocols.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml", + "microsoft.identitymodel.protocols.6.35.0.nupkg.sha512", + "microsoft.identitymodel.protocols.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": { + "sha512": "LMtVqnECCCdSmyFoCOxIE5tXQqkOLrvGrL7OxHg41DIm1bpWtaCdGyVcTAfOQpJXvzND9zUKIN/lhngPkYR8vg==", + "type": "package", + "path": "microsoft.identitymodel.protocols.openidconnect/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512", + "microsoft.identitymodel.protocols.openidconnect.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/6.35.0": { + "sha512": "RN7lvp7s3Boucg1NaNAbqDbxtlLj5Qeb+4uSS1TeK5FSBVM40P4DKaTKChT43sHyKfh7V0zkrMph6DdHvyA4bg==", + "type": "package", + "path": "microsoft.identitymodel.tokens/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Tokens.dll", + "lib/net45/Microsoft.IdentityModel.Tokens.xml", + "lib/net461/Microsoft.IdentityModel.Tokens.dll", + "lib/net461/Microsoft.IdentityModel.Tokens.xml", + "lib/net462/Microsoft.IdentityModel.Tokens.dll", + "lib/net462/Microsoft.IdentityModel.Tokens.xml", + "lib/net472/Microsoft.IdentityModel.Tokens.dll", + "lib/net472/Microsoft.IdentityModel.Tokens.xml", + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll", + "lib/net6.0/Microsoft.IdentityModel.Tokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", + "microsoft.identitymodel.tokens.6.35.0.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "type": "package", + "path": "microsoft.netcore.platforms/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.5.0.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.1.3": { + "sha512": "3Wrmi0kJDzClwAC+iBdUBpEKmEle8FQNsCs77fkiOIw/9oYA07bL1EZNX0kQ2OMN3xpwvl0vAtOCYY3ndDNlhQ==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.3.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.SqlServer.Server/1.0.0": { + "sha512": "N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==", + "type": "package", + "path": "microsoft.sqlserver.server/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dotnet.png", + "lib/net46/Microsoft.SqlServer.Server.dll", + "lib/net46/Microsoft.SqlServer.Server.pdb", + "lib/net46/Microsoft.SqlServer.Server.xml", + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll", + "lib/netstandard2.0/Microsoft.SqlServer.Server.pdb", + "lib/netstandard2.0/Microsoft.SqlServer.Server.xml", + "microsoft.sqlserver.server.1.0.0.nupkg.sha512", + "microsoft.sqlserver.server.nuspec" + ] + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "type": "package", + "path": "microsoft.win32.systemevents/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt" + ] + }, + "MySqlConnector/2.2.5": { + "sha512": "6sinY78RvryhHwpup3awdjYO7d5hhWahb5p/1VDODJhSxJggV/sBbYuKK5IQF9TuzXABiddqUbmRfM884tqA3Q==", + "type": "package", + "path": "mysqlconnector/2.2.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net461/MySqlConnector.dll", + "lib/net461/MySqlConnector.xml", + "lib/net471/MySqlConnector.dll", + "lib/net471/MySqlConnector.xml", + "lib/net6.0/MySqlConnector.dll", + "lib/net6.0/MySqlConnector.xml", + "lib/net7.0/MySqlConnector.dll", + "lib/net7.0/MySqlConnector.xml", + "lib/netcoreapp3.1/MySqlConnector.dll", + "lib/netcoreapp3.1/MySqlConnector.xml", + "lib/netstandard2.0/MySqlConnector.dll", + "lib/netstandard2.0/MySqlConnector.xml", + "lib/netstandard2.1/MySqlConnector.dll", + "lib/netstandard2.1/MySqlConnector.xml", + "logo.png", + "mysqlconnector.2.2.5.nupkg.sha512", + "mysqlconnector.nuspec" + ] + }, + "Newtonsoft.Json/13.0.3": { + "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "type": "package", + "path": "newtonsoft.json/13.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/net6.0/Newtonsoft.Json.dll", + "lib/net6.0/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.3.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "Npgsql/5.0.18": { + "sha512": "1u4iCPKL9wtPeSUzChIbgq/BlOhvf44o7xASacdpMY7z0PbqACKpNOF0fjEn9jDV/AJl/HtPY6zk5qasQ1URhw==", + "type": "package", + "path": "npgsql/5.0.18", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Npgsql.dll", + "lib/net5.0/Npgsql.xml", + "lib/netcoreapp3.1/Npgsql.dll", + "lib/netcoreapp3.1/Npgsql.xml", + "lib/netstandard2.0/Npgsql.dll", + "lib/netstandard2.0/Npgsql.xml", + "lib/netstandard2.1/Npgsql.dll", + "lib/netstandard2.1/Npgsql.xml", + "npgsql.5.0.18.nupkg.sha512", + "npgsql.nuspec", + "postgresql.png" + ] + }, + "Oracle.ManagedDataAccess.Core/3.21.100": { + "sha512": "nsqyUE+v246WB0SOnR1u9lfZxYoNcdj1fRjTt7TOhCN0JurEc6+qu+mMe+dl1sySB2UpyWdfqHG1iSQJYaXEfA==", + "type": "package", + "path": "oracle.manageddataaccess.core/3.21.100", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "PerfCounters/register_odpc_perfmon_counters.ps1", + "PerfCounters/unregister_odpc_perfmon_counters.ps1", + "info.txt", + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll", + "oracle.manageddataaccess.core.3.21.100.nupkg.sha512", + "oracle.manageddataaccess.core.nuspec", + "readme.txt" + ] + }, + "Oscar.Data.SqlClient/4.0.4": { + "sha512": "VJ3xVvRjxrPi/mMPT5EqYiMZor0MjFu83mw1qvUveBFWJSudGh9BOKZq7RkhqeNCcL1ud0uK0/TVkw+xTa4q4g==", + "type": "package", + "path": "oscar.data.sqlclient/4.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Oscar.Data.SqlClient.dll", + "oscar.data.sqlclient.4.0.4.nupkg.sha512", + "oscar.data.sqlclient.nuspec" + ] + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.6": { + "sha512": "BmAf6XWt4TqtowmiWe4/5rRot6GerAeklmOPfviOvwLoF5WwgxcJHAxZtySuyW9r9w+HLILnm8VfJFLCUJYW8A==", + "type": "package", + "path": "sqlitepclraw.bundle_e_sqlite3/2.1.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/monoandroid90/SQLitePCLRaw.batteries_v2.dll", + "lib/net461/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-android31.0/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-android31.0/SQLitePCLRaw.batteries_v2.xml", + "lib/net6.0-ios14.0/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-ios14.2/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-tvos10.0/SQLitePCLRaw.batteries_v2.dll", + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll", + "lib/xamarinios10/SQLitePCLRaw.batteries_v2.dll", + "sqlitepclraw.bundle_e_sqlite3.2.1.6.nupkg.sha512", + "sqlitepclraw.bundle_e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.core/2.1.6": { + "sha512": "wO6v9GeMx9CUngAet8hbO7xdm+M42p1XeJq47ogyRoYSvNSp0NGLI+MgC0bhrMk9C17MTVFlLiN6ylyExLCc5w==", + "type": "package", + "path": "sqlitepclraw.core/2.1.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/SQLitePCLRaw.core.dll", + "sqlitepclraw.core.2.1.6.nupkg.sha512", + "sqlitepclraw.core.nuspec" + ] + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.6": { + "sha512": "2ObJJLkIUIxRpOUlZNGuD4rICpBnrBR5anjyfUFQep4hMOIeqW+XGQYzrNmHSVz5xSWZ3klSbh7sFR6UyDj68Q==", + "type": "package", + "path": "sqlitepclraw.lib.e_sqlite3/2.1.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "buildTransitive/net461/SQLitePCLRaw.lib.e_sqlite3.targets", + "buildTransitive/net6.0/SQLitePCLRaw.lib.e_sqlite3.targets", + "buildTransitive/net7.0/SQLitePCLRaw.lib.e_sqlite3.targets", + "buildTransitive/net8.0/SQLitePCLRaw.lib.e_sqlite3.targets", + "lib/net461/_._", + "lib/netstandard2.0/_._", + "runtimes/browser-wasm/nativeassets/net6.0/e_sqlite3.a", + "runtimes/browser-wasm/nativeassets/net7.0/e_sqlite3.a", + "runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a", + "runtimes/linux-arm/native/libe_sqlite3.so", + "runtimes/linux-arm64/native/libe_sqlite3.so", + "runtimes/linux-armel/native/libe_sqlite3.so", + "runtimes/linux-mips64/native/libe_sqlite3.so", + "runtimes/linux-musl-arm/native/libe_sqlite3.so", + "runtimes/linux-musl-arm64/native/libe_sqlite3.so", + "runtimes/linux-musl-x64/native/libe_sqlite3.so", + "runtimes/linux-ppc64le/native/libe_sqlite3.so", + "runtimes/linux-s390x/native/libe_sqlite3.so", + "runtimes/linux-x64/native/libe_sqlite3.so", + "runtimes/linux-x86/native/libe_sqlite3.so", + "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib", + "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib", + "runtimes/osx-arm64/native/libe_sqlite3.dylib", + "runtimes/osx-x64/native/libe_sqlite3.dylib", + "runtimes/win-arm/native/e_sqlite3.dll", + "runtimes/win-arm64/native/e_sqlite3.dll", + "runtimes/win-x64/native/e_sqlite3.dll", + "runtimes/win-x86/native/e_sqlite3.dll", + "runtimes/win10-arm/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-arm64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x86/nativeassets/uap10.0/e_sqlite3.dll", + "sqlitepclraw.lib.e_sqlite3.2.1.6.nupkg.sha512", + "sqlitepclraw.lib.e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.6": { + "sha512": "PQ2Oq3yepLY4P7ll145P3xtx2bX8xF4PzaKPRpw9jZlKvfe4LE/saAV82inND9usn1XRpmxXk7Lal3MTI+6CNg==", + "type": "package", + "path": "sqlitepclraw.provider.e_sqlite3/2.1.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net6.0-windows7.0/SQLitePCLRaw.provider.e_sqlite3.dll", + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll", + "lib/netstandard2.0/SQLitePCLRaw.provider.e_sqlite3.dll", + "sqlitepclraw.provider.e_sqlite3.2.1.6.nupkg.sha512", + "sqlitepclraw.provider.e_sqlite3.nuspec" + ] + }, + "SqlSugarCore/5.1.4.170": { + "sha512": "TVFfkbKak2I1VxUI8nqAUbn9rkt37m13ooq30pLK/bj9MZvV0hPbVElTn09Jg5PmfzFwXeXaQnay7IXwkODAtw==", + "type": "package", + "path": "sqlsugarcore/5.1.4.170", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.1/SqlSugar.dll", + "sqlsugarcore.5.1.4.170.nupkg.sha512", + "sqlsugarcore.nuspec" + ] + }, + "SqlSugarCore.Dm/8.6.0": { + "sha512": "Q0NAjF9hvkxLbNedIrCqKd3uru0enzZ49GaQtenvsLDQ29aHwlSqg1mRkVYxZ/85UYJFgXh+XHqABSrMgun4aw==", + "type": "package", + "path": "sqlsugarcore.dm/8.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/DM.DmProvider.dll", + "sqlsugarcore.dm.8.6.0.nupkg.sha512", + "sqlsugarcore.dm.nuspec" + ] + }, + "SqlSugarCore.Kdbndp/9.3.6.925": { + "sha512": "Qq1BAYi83aySpL6WHPLtIa0Pbh2TjFh5GYmAw9rxB4W7j6L3NKN3skaNxBbWw0Hn8y+bvCjnM0bejPK6i8Jihg==", + "type": "package", + "path": "sqlsugarcore.kdbndp/9.3.6.925", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.1/Kdbndp.dll", + "sqlsugarcore.kdbndp.9.3.6.925.nupkg.sha512", + "sqlsugarcore.kdbndp.nuspec" + ] + }, + "System.ClientModel/1.0.0": { + "sha512": "I3CVkvxeqFYjIVEP59DnjbeoGNfo/+SZrCLpRz2v/g0gpCHaEMPtWSY0s9k/7jR1rAsLNg2z2u1JRB76tPjnIw==", + "type": "package", + "path": "system.clientmodel/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "DotNetPackageIcon.png", + "README.md", + "lib/net6.0/System.ClientModel.dll", + "lib/net6.0/System.ClientModel.xml", + "lib/netstandard2.0/System.ClientModel.dll", + "lib/netstandard2.0/System.ClientModel.xml", + "system.clientmodel.1.0.0.nupkg.sha512", + "system.clientmodel.nuspec" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Configuration.ConfigurationManager/8.0.0": { + "sha512": "JlYi9XVvIREURRUlGMr1F6vOFLk7YSY4p1vHo4kX3tQ0AGrjqlRWHDi66ImHhy6qwXBG3BJ6Y1QlYQ+Qz6Xgww==", + "type": "package", + "path": "system.configuration.configurationmanager/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Configuration.ConfigurationManager.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets", + "lib/net462/System.Configuration.ConfigurationManager.dll", + "lib/net462/System.Configuration.ConfigurationManager.xml", + "lib/net6.0/System.Configuration.ConfigurationManager.dll", + "lib/net6.0/System.Configuration.ConfigurationManager.xml", + "lib/net7.0/System.Configuration.ConfigurationManager.dll", + "lib/net7.0/System.Configuration.ConfigurationManager.xml", + "lib/net8.0/System.Configuration.ConfigurationManager.dll", + "lib/net8.0/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.8.0.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Data.Common/4.3.0": { + "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", + "type": "package", + "path": "system.data.common/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/System.Data.Common.dll", + "lib/netstandard1.2/System.Data.Common.dll", + "lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/System.Data.Common.dll", + "ref/netstandard1.2/System.Data.Common.dll", + "ref/netstandard1.2/System.Data.Common.xml", + "ref/netstandard1.2/de/System.Data.Common.xml", + "ref/netstandard1.2/es/System.Data.Common.xml", + "ref/netstandard1.2/fr/System.Data.Common.xml", + "ref/netstandard1.2/it/System.Data.Common.xml", + "ref/netstandard1.2/ja/System.Data.Common.xml", + "ref/netstandard1.2/ko/System.Data.Common.xml", + "ref/netstandard1.2/ru/System.Data.Common.xml", + "ref/netstandard1.2/zh-hans/System.Data.Common.xml", + "ref/netstandard1.2/zh-hant/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll", + "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.data.common.4.3.0.nupkg.sha512", + "system.data.common.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/8.0.1": { + "sha512": "vaoWjvkG1aenR2XdjaVivlCV9fADfgyhW5bZtXT23qaEea0lWiUljdQuze4E31vKM7ZWJaSUsbYIKE3rnzfZUg==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", + "lib/net462/System.Diagnostics.DiagnosticSource.dll", + "lib/net462/System.Diagnostics.DiagnosticSource.xml", + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net6.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net7.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net7.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net8.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.EventLog/8.0.0": { + "sha512": "fdYxcRjQqTTacKId/2IECojlDSFvp7LP5N78+0z/xH7v/Tuw5ZAxu23Y6PTCRinqyu2ePx+Gn1098NC6jM6d+A==", + "type": "package", + "path": "system.diagnostics.eventlog/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Diagnostics.EventLog.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets", + "lib/net462/System.Diagnostics.EventLog.dll", + "lib/net462/System.Diagnostics.EventLog.xml", + "lib/net6.0/System.Diagnostics.EventLog.dll", + "lib/net6.0/System.Diagnostics.EventLog.xml", + "lib/net7.0/System.Diagnostics.EventLog.dll", + "lib/net7.0/System.Diagnostics.EventLog.xml", + "lib/net8.0/System.Diagnostics.EventLog.dll", + "lib/net8.0/System.Diagnostics.EventLog.xml", + "lib/netstandard2.0/System.Diagnostics.EventLog.dll", + "lib/netstandard2.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.xml", + "system.diagnostics.eventlog.8.0.0.nupkg.sha512", + "system.diagnostics.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.PerformanceCounter/6.0.1": { + "sha512": "dDl7Gx3bmSrM2k2ZIm+ucEJnLloZRyvfQF1DvfvATcGF3jtaUBiPvChma+6ZcZzxWMirN3kCywkW7PILphXyMQ==", + "type": "package", + "path": "system.diagnostics.performancecounter/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Diagnostics.PerformanceCounter.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Diagnostics.PerformanceCounter.dll", + "lib/net461/System.Diagnostics.PerformanceCounter.xml", + "lib/net6.0/System.Diagnostics.PerformanceCounter.dll", + "lib/net6.0/System.Diagnostics.PerformanceCounter.xml", + "lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.dll", + "lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.xml", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml", + "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.xml", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.dll", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.xml", + "system.diagnostics.performancecounter.6.0.1.nupkg.sha512", + "system.diagnostics.performancecounter.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.DirectoryServices/6.0.1": { + "sha512": "935IbO7h5FDGYxeO3cbx/CuvBBuk/VI8sENlfmXlh1pupNOB3LAGzdYdPY8CawGJFP7KNrHK5eUlsFoz3F6cuA==", + "type": "package", + "path": "system.directoryservices/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.DirectoryServices.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.DirectoryServices.dll", + "lib/net6.0/System.DirectoryServices.xml", + "lib/netcoreapp3.1/System.DirectoryServices.dll", + "lib/netcoreapp3.1/System.DirectoryServices.xml", + "lib/netstandard2.0/System.DirectoryServices.dll", + "lib/netstandard2.0/System.DirectoryServices.xml", + "runtimes/win/lib/net6.0/System.DirectoryServices.dll", + "runtimes/win/lib/net6.0/System.DirectoryServices.xml", + "runtimes/win/lib/netcoreapp3.1/System.DirectoryServices.dll", + "runtimes/win/lib/netcoreapp3.1/System.DirectoryServices.xml", + "system.directoryservices.6.0.1.nupkg.sha512", + "system.directoryservices.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.DirectoryServices.Protocols/6.0.1": { + "sha512": "ndUZlEkAMc1XzM0xGN++SsJrNhRkIHaKI8+te325vrUgoLT1ufWNI6KB8FFrL7NpRMHPrdxP99aF3fHbAPxW0A==", + "type": "package", + "path": "system.directoryservices.protocols/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.DirectoryServices.Protocols.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.DirectoryServices.Protocols.dll", + "lib/net6.0/System.DirectoryServices.Protocols.xml", + "lib/netcoreapp3.1/System.DirectoryServices.Protocols.dll", + "lib/netcoreapp3.1/System.DirectoryServices.Protocols.xml", + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll", + "lib/netstandard2.0/System.DirectoryServices.Protocols.xml", + "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll", + "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.xml", + "runtimes/linux/lib/netcoreapp3.1/System.DirectoryServices.Protocols.dll", + "runtimes/linux/lib/netcoreapp3.1/System.DirectoryServices.Protocols.xml", + "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll", + "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.xml", + "runtimes/osx/lib/netcoreapp3.1/System.DirectoryServices.Protocols.dll", + "runtimes/osx/lib/netcoreapp3.1/System.DirectoryServices.Protocols.xml", + "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll", + "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.xml", + "runtimes/win/lib/netcoreapp3.1/System.DirectoryServices.Protocols.dll", + "runtimes/win/lib/netcoreapp3.1/System.DirectoryServices.Protocols.xml", + "system.directoryservices.protocols.6.0.1.nupkg.sha512", + "system.directoryservices.protocols.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Drawing.Common/6.0.0": { + "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "type": "package", + "path": "system.drawing.common/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/net461/System.Drawing.Common.xml", + "lib/net6.0/System.Drawing.Common.dll", + "lib/net6.0/System.Drawing.Common.xml", + "lib/netcoreapp3.1/System.Drawing.Common.dll", + "lib/netcoreapp3.1/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll", + "runtimes/unix/lib/net6.0/System.Drawing.Common.xml", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml", + "runtimes/win/lib/net6.0/System.Drawing.Common.dll", + "runtimes/win/lib/net6.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml", + "system.drawing.common.6.0.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.IdentityModel.Tokens.Jwt/6.35.0": { + "sha512": "yxGIQd3BFK7F6S62/7RdZk3C/mfwyVxvh6ngd1VYMBmbJ1YZZA9+Ku6suylVtso0FjI0wbElpJ0d27CdsyLpBQ==", + "type": "package", + "path": "system.identitymodel.tokens.jwt/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/System.IdentityModel.Tokens.Jwt.dll", + "lib/net45/System.IdentityModel.Tokens.Jwt.xml", + "lib/net461/System.IdentityModel.Tokens.Jwt.dll", + "lib/net461/System.IdentityModel.Tokens.Jwt.xml", + "lib/net462/System.IdentityModel.Tokens.Jwt.dll", + "lib/net462/System.IdentityModel.Tokens.Jwt.xml", + "lib/net472/System.IdentityModel.Tokens.Jwt.dll", + "lib/net472/System.IdentityModel.Tokens.Jwt.xml", + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", + "system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512", + "system.identitymodel.tokens.jwt.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.Memory/4.5.4": { + "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "type": "package", + "path": "system.memory/4.5.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Memory.dll", + "lib/net461/System.Memory.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.4.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Memory.Data/1.0.2": { + "sha512": "JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==", + "type": "package", + "path": "system.memory.data/1.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "DotNetPackageIcon.png", + "README.md", + "lib/net461/System.Memory.Data.dll", + "lib/net461/System.Memory.Data.xml", + "lib/netstandard2.0/System.Memory.Data.dll", + "lib/netstandard2.0/System.Memory.Data.xml", + "system.memory.data.1.0.2.nupkg.sha512", + "system.memory.data.nuspec" + ] + }, + "System.Numerics.Vectors/4.5.0": { + "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "type": "package", + "path": "system.numerics.vectors/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Numerics.Vectors.dll", + "lib/net46/System.Numerics.Vectors.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.Numerics.Vectors.dll", + "lib/netstandard1.0/System.Numerics.Vectors.xml", + "lib/netstandard2.0/System.Numerics.Vectors.dll", + "lib/netstandard2.0/System.Numerics.Vectors.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.Numerics.Vectors.dll", + "ref/net45/System.Numerics.Vectors.xml", + "ref/net46/System.Numerics.Vectors.dll", + "ref/net46/System.Numerics.Vectors.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/System.Numerics.Vectors.dll", + "ref/netstandard1.0/System.Numerics.Vectors.xml", + "ref/netstandard2.0/System.Numerics.Vectors.dll", + "ref/netstandard2.0/System.Numerics.Vectors.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.numerics.vectors.4.5.0.nupkg.sha512", + "system.numerics.vectors.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.1": { + "sha512": "abhfv1dTK6NXOmu4bgHIONxHyEqFjW8HwXPmpY9gmll+ix9UNo4XDcmzJn6oLooftxNssVHdJC1pGT9jkSynQg==", + "type": "package", + "path": "system.runtime/4.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.1.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Caching/8.0.0": { + "sha512": "4TmlmvGp4kzZomm7J2HJn6IIx0UUrQyhBDyb5O1XiunZlQImXW+B8b7W/sTPcXhSf9rp5NR5aDtQllwbB5elOQ==", + "type": "package", + "path": "system.runtime.caching/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Runtime.Caching.targets", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net462/_._", + "lib/net6.0/System.Runtime.Caching.dll", + "lib/net6.0/System.Runtime.Caching.xml", + "lib/net7.0/System.Runtime.Caching.dll", + "lib/net7.0/System.Runtime.Caching.xml", + "lib/net8.0/System.Runtime.Caching.dll", + "lib/net8.0/System.Runtime.Caching.xml", + "lib/netstandard2.0/System.Runtime.Caching.dll", + "lib/netstandard2.0/System.Runtime.Caching.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net6.0/System.Runtime.Caching.dll", + "runtimes/win/lib/net6.0/System.Runtime.Caching.xml", + "runtimes/win/lib/net7.0/System.Runtime.Caching.dll", + "runtimes/win/lib/net7.0/System.Runtime.Caching.xml", + "runtimes/win/lib/net8.0/System.Runtime.Caching.dll", + "runtimes/win/lib/net8.0/System.Runtime.Caching.xml", + "system.runtime.caching.8.0.0.nupkg.sha512", + "system.runtime.caching.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Runtime.CompilerServices.Unsafe/4.6.0": { + "sha512": "HxozeSlipUK7dAroTYwIcGwKDeOVpQnJlpVaOkBz7CM4TsE5b/tKlQBZecTjh6FzcSbxndYaxxpsBMz+wMJeyw==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/4.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.4.6.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Security.AccessControl/6.0.0": { + "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "type": "package", + "path": "system.security.accesscontrol/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/net6.0/System.Security.AccessControl.dll", + "lib/net6.0/System.Security.AccessControl.xml", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll", + "runtimes/win/lib/net6.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml", + "system.security.accesscontrol.6.0.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.Cng/4.5.0": { + "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "type": "package", + "path": "system.security.cryptography.cng/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net462/System.Security.Cryptography.Cng.dll", + "lib/net47/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.xml", + "ref/net462/System.Security.Cryptography.Cng.dll", + "ref/net462/System.Security.Cryptography.Cng.xml", + "ref/net47/System.Security.Cryptography.Cng.dll", + "ref/net47/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.cryptography.cng.4.5.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.ProtectedData/8.0.0": { + "sha512": "+TUFINV2q2ifyXauQXRwy4CiBhqvDEDZeVJU7qfxya4aRYOKzVBpN+4acx25VcPB9ywUN6C0n8drWl110PhZEg==", + "type": "package", + "path": "system.security.cryptography.protecteddata/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Security.Cryptography.ProtectedData.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net462/System.Security.Cryptography.ProtectedData.dll", + "lib/net462/System.Security.Cryptography.ProtectedData.xml", + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "lib/net7.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net7.0/System.Security.Cryptography.ProtectedData.xml", + "lib/net8.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net8.0/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "system.security.cryptography.protecteddata.8.0.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Permissions/6.0.0": { + "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "type": "package", + "path": "system.security.permissions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.Permissions.dll", + "lib/net461/System.Security.Permissions.xml", + "lib/net5.0/System.Security.Permissions.dll", + "lib/net5.0/System.Security.Permissions.xml", + "lib/net6.0/System.Security.Permissions.dll", + "lib/net6.0/System.Security.Permissions.xml", + "lib/netcoreapp3.1/System.Security.Permissions.dll", + "lib/netcoreapp3.1/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "runtimes/win/lib/net461/System.Security.Permissions.dll", + "runtimes/win/lib/net461/System.Security.Permissions.xml", + "system.security.permissions.6.0.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.CodePages/5.0.0": { + "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==", + "type": "package", + "path": "system.text.encoding.codepages/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.xml", + "lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "system.text.encoding.codepages.5.0.0.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encodings.Web/4.7.2": { + "sha512": "iTUgB/WtrZ1sWZs84F2hwyQhiRH6QNjQv2DkwrH+WP6RoFga2Q1m3f9/Q7FG8cck8AdHitQkmkXSY8qylcDmuA==", + "type": "package", + "path": "system.text.encodings.web/4.7.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Text.Encodings.Web.dll", + "lib/net461/System.Text.Encodings.Web.xml", + "lib/netstandard1.0/System.Text.Encodings.Web.dll", + "lib/netstandard1.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.1/System.Text.Encodings.Web.dll", + "lib/netstandard2.1/System.Text.Encodings.Web.xml", + "system.text.encodings.web.4.7.2.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Json/4.7.2": { + "sha512": "TcMd95wcrubm9nHvJEQs70rC0H/8omiSGGpU4FQ/ZA1URIqD4pjmFJh2Mfv1yH1eHgJDWTi2hMDXwTET+zOOyg==", + "type": "package", + "path": "system.text.json/4.7.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Text.Json.dll", + "lib/net461/System.Text.Json.xml", + "lib/netcoreapp3.0/System.Text.Json.dll", + "lib/netcoreapp3.0/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.4.7.2.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.RegularExpressions/4.3.1": { + "sha512": "N0kNRrWe4+nXOWlpLT4LAY5brb8caNFlUuIRpraCVMDLYutKkol1aV079rQjLuSxKMJT2SpBQsYX9xbcTMmzwg==", + "type": "package", + "path": "system.text.regularexpressions/4.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.3.1.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Threading.Tasks.Extensions.dll", + "lib/net461/System.Threading.Tasks.Extensions.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netcoreapp2.1/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Windows.Extensions/6.0.0": { + "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "type": "package", + "path": "system.windows.extensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/System.Windows.Extensions.dll", + "lib/net6.0/System.Windows.Extensions.xml", + "lib/netcoreapp3.1/System.Windows.Extensions.dll", + "lib/netcoreapp3.1/System.Windows.Extensions.xml", + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net6.0/System.Windows.Extensions.xml", + "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll", + "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml", + "system.windows.extensions.6.0.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt" + ] + } + }, + "projectFileDependencyGroups": { + "net8.0": [ + "Autofac >= 8.1.1", + "Autofac.Extensions.DependencyInjection >= 10.0.0", + "Newtonsoft.Json >= 13.0.3", + "SqlSugarCore >= 5.1.4.170" + ] + }, + "packageFolders": { + "C:\\Users\\icewi\\.nuget\\packages\\": {}, + "D:\\Microsoft\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\AndriodProject\\2024_11_JinWang_ChengPing\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj", + "projectName": "WmsMobileServe", + "projectPath": "F:\\AndriodProject\\2024_11_JinWang_ChengPing\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj", + "packagesPath": "C:\\Users\\icewi\\.nuget\\packages\\", + "outputPath": "F:\\AndriodProject\\2024_11_JinWang_ChengPing\\WmsMobileServe\\WmsMobileServe\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Microsoft\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\icewi\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {}, + "https://nuget.cdn.azure.cn/v3/index.json": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Autofac": { + "target": "Package", + "version": "[8.1.1, )" + }, + "Autofac.Extensions.DependencyInjection": { + "target": "Package", + "version": "[10.0.0, )" + }, + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.3, )" + }, + "SqlSugarCore": { + "target": "Package", + "version": "[5.1.4.170, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/WmsMobileServe/obj/project.nuget.cache b/WmsMobileServe/obj/project.nuget.cache new file mode 100644 index 0000000..03d5771 --- /dev/null +++ b/WmsMobileServe/obj/project.nuget.cache @@ -0,0 +1,81 @@ +{ + "version": 2, + "dgSpecHash": "0+eHtrC5e7o=", + "success": true, + "projectFilePath": "F:\\AndriodProject\\2024_11_JinWang_ChengPing\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj", + "expectedPackageFiles": [ + "C:\\Users\\icewi\\.nuget\\packages\\autofac\\8.1.1\\autofac.8.1.1.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\autofac.extensions.dependencyinjection\\10.0.0\\autofac.extensions.dependencyinjection.10.0.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\azure.core\\1.38.0\\azure.core.1.38.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\azure.identity\\1.11.4\\azure.identity.1.11.4.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\1.1.1\\microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.data.sqlclient\\5.2.2\\microsoft.data.sqlclient.5.2.2.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\5.2.0\\microsoft.data.sqlclient.sni.runtime.5.2.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.data.sqlite\\8.0.1\\microsoft.data.sqlite.8.0.1.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.data.sqlite.core\\8.0.1\\microsoft.data.sqlite.core.8.0.1.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.1\\microsoft.extensions.dependencyinjection.abstractions.8.0.1.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.identity.client\\4.61.3\\microsoft.identity.client.4.61.3.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.identity.client.extensions.msal\\4.61.3\\microsoft.identity.client.extensions.msal.4.61.3.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.identitymodel.abstractions\\6.35.0\\microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.35.0\\microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.identitymodel.logging\\6.35.0\\microsoft.identitymodel.logging.6.35.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.35.0\\microsoft.identitymodel.protocols.6.35.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.35.0\\microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.35.0\\microsoft.identitymodel.tokens.6.35.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.netcore.targets\\1.1.3\\microsoft.netcore.targets.1.1.3.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.sqlserver.server\\1.0.0\\microsoft.sqlserver.server.1.0.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\mysqlconnector\\2.2.5\\mysqlconnector.2.2.5.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\npgsql\\5.0.18\\npgsql.5.0.18.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\oracle.manageddataaccess.core\\3.21.100\\oracle.manageddataaccess.core.3.21.100.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\oscar.data.sqlclient\\4.0.4\\oscar.data.sqlclient.4.0.4.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\sqlitepclraw.bundle_e_sqlite3\\2.1.6\\sqlitepclraw.bundle_e_sqlite3.2.1.6.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\sqlitepclraw.core\\2.1.6\\sqlitepclraw.core.2.1.6.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3\\2.1.6\\sqlitepclraw.lib.e_sqlite3.2.1.6.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\sqlitepclraw.provider.e_sqlite3\\2.1.6\\sqlitepclraw.provider.e_sqlite3.2.1.6.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\sqlsugarcore\\5.1.4.170\\sqlsugarcore.5.1.4.170.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\sqlsugarcore.dm\\8.6.0\\sqlsugarcore.dm.8.6.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\sqlsugarcore.kdbndp\\9.3.6.925\\sqlsugarcore.kdbndp.9.3.6.925.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.clientmodel\\1.0.0\\system.clientmodel.1.0.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.configuration.configurationmanager\\8.0.0\\system.configuration.configurationmanager.8.0.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.data.common\\4.3.0\\system.data.common.4.3.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.diagnostics.diagnosticsource\\8.0.1\\system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.diagnostics.eventlog\\8.0.0\\system.diagnostics.eventlog.8.0.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.diagnostics.performancecounter\\6.0.1\\system.diagnostics.performancecounter.6.0.1.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.directoryservices\\6.0.1\\system.directoryservices.6.0.1.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.directoryservices.protocols\\6.0.1\\system.directoryservices.protocols.6.0.1.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.35.0\\system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.memory.data\\1.0.2\\system.memory.data.1.0.2.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.runtime\\4.3.1\\system.runtime.4.3.1.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.runtime.caching\\8.0.0\\system.runtime.caching.8.0.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\4.6.0\\system.runtime.compilerservices.unsafe.4.6.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.security.cryptography.protecteddata\\8.0.0\\system.security.cryptography.protecteddata.8.0.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.text.encoding.codepages\\5.0.0\\system.text.encoding.codepages.5.0.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.text.encodings.web\\4.7.2\\system.text.encodings.web.4.7.2.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.text.json\\4.7.2\\system.text.json.4.7.2.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.text.regularexpressions\\4.3.1\\system.text.regularexpressions.4.3.1.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/WmsMobileServe/obj/project.packagespec.json b/WmsMobileServe/obj/project.packagespec.json new file mode 100644 index 0000000..20415be --- /dev/null +++ b/WmsMobileServe/obj/project.packagespec.json @@ -0,0 +1 @@ +"restore":{"projectUniqueName":"F:\\AndriodProject\\2024_11_JinWang_ChengPing\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj","projectName":"WmsMobileServe","projectPath":"F:\\AndriodProject\\2024_11_JinWang_ChengPing\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj","outputPath":"F:\\AndriodProject\\2024_11_JinWang_ChengPing\\WmsMobileServe\\WmsMobileServe\\obj\\","projectStyle":"PackageReference","fallbackFolders":["D:\\Microsoft\\Microsoft Visual Studio\\Shared\\NuGetPackages"],"originalTargetFrameworks":["net8.0"],"sources":{"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\":{},"C:\\Program Files\\dotnet\\library-packs":{},"https://api.nuget.org/v3/index.json":{},"https://nuget.cdn.azure.cn/v3/index.json":{},"https://www.nuget.org/api/v2/":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"Autofac":{"target":"Package","version":"[8.1.1, )"},"Autofac.Extensions.DependencyInjection":{"target":"Package","version":"[10.0.0, )"},"Newtonsoft.Json":{"target":"Package","version":"[13.0.3, )"},"SqlSugarCore":{"target":"Package","version":"[5.1.4.170, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/WmsMobileServe/obj/publish/win-x64/WmsMobileServe.csproj.nuget.dgspec.json b/WmsMobileServe/obj/publish/win-x64/WmsMobileServe.csproj.nuget.dgspec.json new file mode 100644 index 0000000..1cd84a7 --- /dev/null +++ b/WmsMobileServe/obj/publish/win-x64/WmsMobileServe.csproj.nuget.dgspec.json @@ -0,0 +1,121 @@ +{ + "format": 1, + "restore": { + "F:\\AndriodProject\\2024_11_JinWang_lengDong\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj": {} + }, + "projects": { + "F:\\AndriodProject\\2024_11_JinWang_lengDong\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\AndriodProject\\2024_11_JinWang_lengDong\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj", + "projectName": "WmsMobileServe", + "projectPath": "F:\\AndriodProject\\2024_11_JinWang_lengDong\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj", + "packagesPath": "C:\\Users\\icewi\\.nuget\\packages\\", + "outputPath": "F:\\AndriodProject\\2024_11_JinWang_lengDong\\WmsMobileServe\\WmsMobileServe\\obj\\publish\\win-x64\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Microsoft\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\icewi\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {}, + "https://nuget.cdn.azure.cn/v3/index.json": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Autofac": { + "target": "Package", + "version": "[8.1.1, )" + }, + "Autofac.Extensions.DependencyInjection": { + "target": "Package", + "version": "[10.0.0, )" + }, + "Microsoft.NET.ILLink.Tasks": { + "suppressParent": "All", + "target": "Package", + "version": "[8.0.10, )", + "autoReferenced": true + }, + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.3, )" + }, + "SqlSugarCore": { + "target": "Package", + "version": "[5.1.4.170, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Runtime.win-x64", + "version": "[8.0.10, 8.0.10]" + }, + { + "name": "Microsoft.NETCore.App.Runtime.win-x64", + "version": "[8.0.10, 8.0.10]" + }, + { + "name": "Microsoft.WindowsDesktop.App.Runtime.win-x64", + "version": "[8.0.10, 8.0.10]" + } + ], + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json" + } + }, + "runtimes": { + "win-x64": { + "#import": [] + } + } + } + } +} \ No newline at end of file diff --git a/WmsMobileServe/obj/publish/win-x64/WmsMobileServe.csproj.nuget.g.props b/WmsMobileServe/obj/publish/win-x64/WmsMobileServe.csproj.nuget.g.props new file mode 100644 index 0000000..5a043ce --- /dev/null +++ b/WmsMobileServe/obj/publish/win-x64/WmsMobileServe.csproj.nuget.g.props @@ -0,0 +1,22 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\icewi\.nuget\packages\;D:\Microsoft\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.11.1 + + + + + + + + + + C:\Users\icewi\.nuget\packages\microsoft.net.illink.tasks\8.0.10 + + \ No newline at end of file diff --git a/WmsMobileServe/obj/publish/win-x64/WmsMobileServe.csproj.nuget.g.targets b/WmsMobileServe/obj/publish/win-x64/WmsMobileServe.csproj.nuget.g.targets new file mode 100644 index 0000000..5b2a2dd --- /dev/null +++ b/WmsMobileServe/obj/publish/win-x64/WmsMobileServe.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/WmsMobileServe/obj/publish/win-x64/project.assets.json b/WmsMobileServe/obj/publish/win-x64/project.assets.json new file mode 100644 index 0000000..c054381 --- /dev/null +++ b/WmsMobileServe/obj/publish/win-x64/project.assets.json @@ -0,0 +1,5499 @@ +{ + "version": 3, + "targets": { + "net8.0": { + "Autofac/8.1.1": { + "type": "package", + "dependencies": { + "System.Diagnostics.DiagnosticSource": "8.0.1" + }, + "compile": { + "lib/net8.0/Autofac.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Autofac.dll": { + "related": ".xml" + } + } + }, + "Autofac.Extensions.DependencyInjection/10.0.0": { + "type": "package", + "dependencies": { + "Autofac": "8.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1" + }, + "compile": { + "lib/net8.0/Autofac.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Autofac.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + } + }, + "Azure.Core/1.38.0": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "1.1.1", + "System.ClientModel": "1.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.1", + "System.Memory.Data": "1.0.2", + "System.Numerics.Vectors": "4.5.0", + "System.Text.Encodings.Web": "4.7.2", + "System.Text.Json": "4.7.2", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/net6.0/Azure.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Azure.Core.dll": { + "related": ".xml" + } + } + }, + "Azure.Identity/1.11.4": { + "type": "package", + "dependencies": { + "Azure.Core": "1.38.0", + "Microsoft.Identity.Client": "4.61.3", + "Microsoft.Identity.Client.Extensions.Msal": "4.61.3", + "System.Memory": "4.5.4", + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Text.Json": "4.7.2", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/netstandard2.0/Azure.Identity.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Azure.Identity.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/1.1.1": { + "type": "package", + "compile": { + "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + } + }, + "Microsoft.CSharp/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.Data.SqlClient/5.2.2": { + "type": "package", + "dependencies": { + "Azure.Identity": "1.11.4", + "Microsoft.Data.SqlClient.SNI.runtime": "5.2.0", + "Microsoft.Identity.Client": "4.61.3", + "Microsoft.IdentityModel.JsonWebTokens": "6.35.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.35.0", + "Microsoft.SqlServer.Server": "1.0.0", + "System.Configuration.ConfigurationManager": "8.0.0", + "System.Runtime.Caching": "8.0.0" + }, + "compile": { + "ref/net8.0/Microsoft.Data.SqlClient.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Data.SqlClient.dll": { + "related": ".xml" + } + }, + "resource": { + "lib/net8.0/de/Microsoft.Data.SqlClient.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/Microsoft.Data.SqlClient.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/Microsoft.Data.SqlClient.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/Microsoft.Data.SqlClient.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/Microsoft.Data.SqlClient.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/Microsoft.Data.SqlClient.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pt-BR/Microsoft.Data.SqlClient.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/Microsoft.Data.SqlClient.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll": { + "locale": "zh-Hant" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net8.0/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net8.0/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.2.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Microsoft.Data.Sqlite/8.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Data.Sqlite.Core": "8.0.1", + "SQLitePCLRaw.bundle_e_sqlite3": "2.1.6" + }, + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "Microsoft.Data.Sqlite.Core/8.0.1": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.1.6" + }, + "compile": { + "lib/net8.0/Microsoft.Data.Sqlite.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Data.Sqlite.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.1": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Identity.Client/4.61.3": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.35.0", + "System.Diagnostics.DiagnosticSource": "6.0.1" + }, + "compile": { + "lib/net6.0/Microsoft.Identity.Client.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Identity.Client.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Identity.Client.Extensions.Msal/4.61.3": { + "type": "package", + "dependencies": { + "Microsoft.Identity.Client": "4.61.3", + "System.Security.Cryptography.ProtectedData": "4.5.0" + }, + "compile": { + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Abstractions/6.35.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.35.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encodings.Web": "4.7.2", + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Logging/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.35.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.35.0", + "Microsoft.IdentityModel.Tokens": "6.35.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.35.0", + "System.IdentityModel.Tokens.Jwt": "6.35.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.35.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.NET.ILLink.Tasks/8.0.10": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Tasks.props": {} + } + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.3": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.SqlServer.Server/1.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "MySqlConnector/2.2.5": { + "type": "package", + "compile": { + "lib/net7.0/MySqlConnector.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/MySqlConnector.dll": { + "related": ".xml" + } + } + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "compile": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "Npgsql/5.0.18": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "4.6.0" + }, + "compile": { + "lib/net5.0/Npgsql.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Npgsql.dll": { + "related": ".xml" + } + } + }, + "Oracle.ManagedDataAccess.Core/3.21.100": { + "type": "package", + "dependencies": { + "System.Diagnostics.PerformanceCounter": "6.0.1", + "System.DirectoryServices": "6.0.1", + "System.DirectoryServices.Protocols": "6.0.1" + }, + "compile": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {} + } + }, + "Oscar.Data.SqlClient/4.0.4": { + "type": "package", + "dependencies": { + "System.Text.Encoding.CodePages": "4.7.1" + }, + "compile": { + "lib/netstandard2.0/Oscar.Data.SqlClient.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Oscar.Data.SqlClient.dll": {} + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.6": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.lib.e_sqlite3": "2.1.6", + "SQLitePCLRaw.provider.e_sqlite3": "2.1.6" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {} + } + }, + "SQLitePCLRaw.core/2.1.6": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.3" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.6": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + }, + "build": { + "buildTransitive/net8.0/SQLitePCLRaw.lib.e_sqlite3.targets": {} + }, + "runtimeTargets": { + "runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a": { + "assetType": "native", + "rid": "browser-wasm" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-armel" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-mips64" + }, + "runtimes/linux-musl-arm/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-arm" + }, + "runtimes/linux-musl-arm64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-arm64" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-ppc64le/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-ppc64le" + }, + "runtimes/linux-s390x/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-s390x" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x86" + }, + "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "maccatalyst-arm64" + }, + "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "maccatalyst-x64" + }, + "runtimes/osx-arm64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "osx-arm64" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "osx-x64" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.6": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.1.6" + }, + "compile": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": {} + }, + "runtime": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": {} + } + }, + "SqlSugarCore/5.1.4.170": { + "type": "package", + "dependencies": { + "Microsoft.Data.SqlClient": "5.2.2", + "Microsoft.Data.Sqlite": "8.0.1", + "MySqlConnector": "2.2.5", + "Newtonsoft.Json": "13.0.2", + "Npgsql": "5.0.18", + "Oracle.ManagedDataAccess.Core": "3.21.100", + "Oscar.Data.SqlClient": "4.0.4", + "SqlSugarCore.Dm": "8.6.0", + "SqlSugarCore.Kdbndp": "9.3.6.925", + "System.Data.Common": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Text.RegularExpressions": "4.3.1" + }, + "compile": { + "lib/netstandard2.1/SqlSugar.dll": {} + }, + "runtime": { + "lib/netstandard2.1/SqlSugar.dll": {} + } + }, + "SqlSugarCore.Dm/8.6.0": { + "type": "package", + "dependencies": { + "System.Text.Encoding.CodePages": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/DM.DmProvider.dll": {} + }, + "runtime": { + "lib/netstandard2.0/DM.DmProvider.dll": {} + } + }, + "SqlSugarCore.Kdbndp/9.3.6.925": { + "type": "package", + "compile": { + "lib/netstandard2.1/Kdbndp.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Kdbndp.dll": {} + } + }, + "System.ClientModel/1.0.0": { + "type": "package", + "dependencies": { + "System.Memory.Data": "1.0.2", + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/net6.0/System.ClientModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.ClientModel.dll": { + "related": ".xml" + } + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.Configuration.ConfigurationManager/8.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.EventLog": "8.0.0", + "System.Security.Cryptography.ProtectedData": "8.0.0" + }, + "compile": { + "lib/net8.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Data.Common/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Data.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.2/System.Data.Common.dll": {} + } + }, + "System.Diagnostics.DiagnosticSource/8.0.1": { + "type": "package", + "compile": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Diagnostics.EventLog/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": { + "assetType": "runtime", + "rid": "win" + }, + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.PerformanceCounter/6.0.1": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices/6.0.1": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.DirectoryServices.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.DirectoryServices.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.DirectoryServices.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices.Protocols/6.0.1": { + "type": "package", + "compile": { + "lib/net6.0/System.DirectoryServices.Protocols.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.DirectoryServices.Protocols.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "assetType": "runtime", + "rid": "linux" + }, + "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.IdentityModel.Tokens.Jwt/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.35.0", + "Microsoft.IdentityModel.Tokens": "6.35.0" + }, + "compile": { + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": { + "related": ".xml" + } + } + }, + "System.Memory/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Memory.Data/1.0.2": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "4.7.2", + "System.Text.Json": "4.6.0" + }, + "compile": { + "lib/netstandard2.0/System.Memory.Data.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Memory.Data.dll": { + "related": ".xml" + } + } + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": { + "related": ".xml" + } + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + } + }, + "System.Runtime/4.3.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.3" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.Caching/8.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "8.0.0" + }, + "compile": { + "lib/net8.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Runtime.Caching.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net8.0/System.Runtime.Caching.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/4.6.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + } + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.ProtectedData/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": { + "related": ".xml" + } + } + }, + "System.Text.Encoding.CodePages/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encodings.Web/4.7.2": { + "type": "package", + "compile": { + "lib/netstandard2.1/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + } + }, + "System.Text.Json/4.7.2": { + "type": "package", + "compile": { + "lib/netcoreapp3.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.Text.Json.dll": { + "related": ".xml" + } + } + }, + "System.Text.RegularExpressions/4.3.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.1" + }, + "compile": { + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": { + "related": ".xml" + } + } + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + } + }, + "net8.0/win-x64": { + "Autofac/8.1.1": { + "type": "package", + "dependencies": { + "System.Diagnostics.DiagnosticSource": "8.0.1" + }, + "compile": { + "lib/net8.0/Autofac.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Autofac.dll": { + "related": ".xml" + } + } + }, + "Autofac.Extensions.DependencyInjection/10.0.0": { + "type": "package", + "dependencies": { + "Autofac": "8.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1" + }, + "compile": { + "lib/net8.0/Autofac.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Autofac.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + } + }, + "Azure.Core/1.38.0": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "1.1.1", + "System.ClientModel": "1.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.1", + "System.Memory.Data": "1.0.2", + "System.Numerics.Vectors": "4.5.0", + "System.Text.Encodings.Web": "4.7.2", + "System.Text.Json": "4.7.2", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/net6.0/Azure.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Azure.Core.dll": { + "related": ".xml" + } + } + }, + "Azure.Identity/1.11.4": { + "type": "package", + "dependencies": { + "Azure.Core": "1.38.0", + "Microsoft.Identity.Client": "4.61.3", + "Microsoft.Identity.Client.Extensions.Msal": "4.61.3", + "System.Memory": "4.5.4", + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Text.Json": "4.7.2", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/netstandard2.0/Azure.Identity.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Azure.Identity.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/1.1.1": { + "type": "package", + "compile": { + "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + } + }, + "Microsoft.CSharp/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.Data.SqlClient/5.2.2": { + "type": "package", + "dependencies": { + "Azure.Identity": "1.11.4", + "Microsoft.Data.SqlClient.SNI.runtime": "5.2.0", + "Microsoft.Identity.Client": "4.61.3", + "Microsoft.IdentityModel.JsonWebTokens": "6.35.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.35.0", + "Microsoft.SqlServer.Server": "1.0.0", + "System.Configuration.ConfigurationManager": "8.0.0", + "System.Runtime.Caching": "8.0.0" + }, + "compile": { + "ref/net8.0/Microsoft.Data.SqlClient.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net8.0/Microsoft.Data.SqlClient.dll": {} + }, + "resource": { + "lib/net8.0/de/Microsoft.Data.SqlClient.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/Microsoft.Data.SqlClient.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/Microsoft.Data.SqlClient.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/Microsoft.Data.SqlClient.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/Microsoft.Data.SqlClient.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/Microsoft.Data.SqlClient.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pt-BR/Microsoft.Data.SqlClient.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/Microsoft.Data.SqlClient.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.2.0": { + "type": "package", + "native": { + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {} + } + }, + "Microsoft.Data.Sqlite/8.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Data.Sqlite.Core": "8.0.1", + "SQLitePCLRaw.bundle_e_sqlite3": "2.1.6" + }, + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "Microsoft.Data.Sqlite.Core/8.0.1": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.1.6" + }, + "compile": { + "lib/net8.0/Microsoft.Data.Sqlite.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Data.Sqlite.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.1": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Identity.Client/4.61.3": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.35.0", + "System.Diagnostics.DiagnosticSource": "6.0.1" + }, + "compile": { + "lib/net6.0/Microsoft.Identity.Client.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Identity.Client.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Identity.Client.Extensions.Msal/4.61.3": { + "type": "package", + "dependencies": { + "Microsoft.Identity.Client": "4.61.3", + "System.Security.Cryptography.ProtectedData": "4.5.0" + }, + "compile": { + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Abstractions/6.35.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.35.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encodings.Web": "4.7.2", + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Logging/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.35.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.35.0", + "Microsoft.IdentityModel.Tokens": "6.35.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.35.0", + "System.IdentityModel.Tokens.Jwt": "6.35.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.35.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.NET.ILLink.Tasks/8.0.10": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Tasks.props": {} + } + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.3": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.SqlServer.Server/1.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "MySqlConnector/2.2.5": { + "type": "package", + "compile": { + "lib/net7.0/MySqlConnector.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/MySqlConnector.dll": { + "related": ".xml" + } + } + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "compile": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "Npgsql/5.0.18": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "4.6.0" + }, + "compile": { + "lib/net5.0/Npgsql.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Npgsql.dll": { + "related": ".xml" + } + } + }, + "Oracle.ManagedDataAccess.Core/3.21.100": { + "type": "package", + "dependencies": { + "System.Diagnostics.PerformanceCounter": "6.0.1", + "System.DirectoryServices": "6.0.1", + "System.DirectoryServices.Protocols": "6.0.1" + }, + "compile": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {} + } + }, + "Oscar.Data.SqlClient/4.0.4": { + "type": "package", + "dependencies": { + "System.Text.Encoding.CodePages": "4.7.1" + }, + "compile": { + "lib/netstandard2.0/Oscar.Data.SqlClient.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Oscar.Data.SqlClient.dll": {} + } + }, + "runtime.any.System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.dll": {} + } + }, + "runtime.any.System.Globalization/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Globalization.dll": {} + } + }, + "runtime.any.System.IO/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.IO.dll": {} + } + }, + "runtime.any.System.Reflection/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.dll": {} + } + }, + "runtime.any.System.Reflection.Primitives/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Primitives.dll": {} + } + }, + "runtime.any.System.Resources.ResourceManager/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Resources.ResourceManager.dll": {} + } + }, + "runtime.any.System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.dll": {} + } + }, + "runtime.any.System.Text.Encoding/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "runtime.any.System.Threading.Tasks/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "runtime.win.System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.6": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.lib.e_sqlite3": "2.1.6", + "SQLitePCLRaw.provider.e_sqlite3": "2.1.6" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {} + } + }, + "SQLitePCLRaw.core/2.1.6": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.3" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.6": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + }, + "native": { + "runtimes/win-x64/native/e_sqlite3.dll": {} + }, + "build": { + "buildTransitive/net8.0/SQLitePCLRaw.lib.e_sqlite3.targets": {} + } + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.6": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.1.6" + }, + "compile": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": {} + }, + "runtime": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": {} + } + }, + "SqlSugarCore/5.1.4.170": { + "type": "package", + "dependencies": { + "Microsoft.Data.SqlClient": "5.2.2", + "Microsoft.Data.Sqlite": "8.0.1", + "MySqlConnector": "2.2.5", + "Newtonsoft.Json": "13.0.2", + "Npgsql": "5.0.18", + "Oracle.ManagedDataAccess.Core": "3.21.100", + "Oscar.Data.SqlClient": "4.0.4", + "SqlSugarCore.Dm": "8.6.0", + "SqlSugarCore.Kdbndp": "9.3.6.925", + "System.Data.Common": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Text.RegularExpressions": "4.3.1" + }, + "compile": { + "lib/netstandard2.1/SqlSugar.dll": {} + }, + "runtime": { + "lib/netstandard2.1/SqlSugar.dll": {} + } + }, + "SqlSugarCore.Dm/8.6.0": { + "type": "package", + "dependencies": { + "System.Text.Encoding.CodePages": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/DM.DmProvider.dll": {} + }, + "runtime": { + "lib/netstandard2.0/DM.DmProvider.dll": {} + } + }, + "SqlSugarCore.Kdbndp/9.3.6.925": { + "type": "package", + "compile": { + "lib/netstandard2.1/Kdbndp.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Kdbndp.dll": {} + } + }, + "System.ClientModel/1.0.0": { + "type": "package", + "dependencies": { + "System.Memory.Data": "1.0.2", + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/net6.0/System.ClientModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.ClientModel.dll": { + "related": ".xml" + } + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Collections": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.Configuration.ConfigurationManager/8.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.EventLog": "8.0.0", + "System.Security.Cryptography.ProtectedData": "8.0.0" + }, + "compile": { + "lib/net8.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Data.Common/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Data.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.2/System.Data.Common.dll": {} + } + }, + "System.Diagnostics.DiagnosticSource/8.0.1": { + "type": "package", + "compile": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Diagnostics.EventLog/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": {}, + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Diagnostics.PerformanceCounter/6.0.1": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.DirectoryServices/6.0.1": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.DirectoryServices.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/System.DirectoryServices.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.DirectoryServices.Protocols/6.0.1": { + "type": "package", + "compile": { + "lib/net6.0/System.DirectoryServices.Protocols.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Globalization": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.IdentityModel.Tokens.Jwt/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.35.0", + "Microsoft.IdentityModel.Tokens": "6.35.0" + }, + "compile": { + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.any.System.IO": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": { + "related": ".xml" + } + } + }, + "System.Memory/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Memory.Data/1.0.2": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "4.7.2", + "System.Text.Json": "4.6.0" + }, + "compile": { + "lib/netstandard2.0/System.Memory.Data.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Memory.Data.dll": { + "related": ".xml" + } + } + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Private.Uri/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard/_._": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Reflection": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Reflection.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": { + "related": ".xml" + } + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Resources.ResourceManager": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + } + }, + "System.Runtime/4.3.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.3", + "runtime.any.System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.Caching/8.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "8.0.0" + }, + "compile": { + "lib/net8.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net8.0/System.Runtime.Caching.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Runtime.CompilerServices.Unsafe/4.6.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.win.System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + } + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + } + }, + "System.Security.Cryptography.ProtectedData/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": { + "related": ".xml" + } + } + }, + "System.Text.Encoding.CodePages/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { + "related": ".xml" + } + } + }, + "System.Text.Encodings.Web/4.7.2": { + "type": "package", + "compile": { + "lib/netstandard2.1/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + } + }, + "System.Text.Json/4.7.2": { + "type": "package", + "compile": { + "lib/netcoreapp3.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.Text.Json.dll": { + "related": ".xml" + } + } + }, + "System.Text.RegularExpressions/4.3.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.1" + }, + "compile": { + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": { + "related": ".xml" + } + } + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + } + } + } + }, + "libraries": { + "Autofac/8.1.1": { + "sha512": "lhHjVB/XJtxPDUQ/FAHWAC7Spu+P9TNfDbyx2W0ABqD1eTRo7TkcZ7l7Oq1S5pKNg7NXswdk9uH73qbOzSwQFA==", + "type": "package", + "path": "autofac/8.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "autofac.8.1.1.nupkg.sha512", + "autofac.nuspec", + "icon.png", + "lib/net6.0/Autofac.dll", + "lib/net6.0/Autofac.xml", + "lib/net7.0/Autofac.dll", + "lib/net7.0/Autofac.xml", + "lib/net8.0/Autofac.dll", + "lib/net8.0/Autofac.xml", + "lib/netstandard2.0/Autofac.dll", + "lib/netstandard2.0/Autofac.xml", + "lib/netstandard2.1/Autofac.dll", + "lib/netstandard2.1/Autofac.xml" + ] + }, + "Autofac.Extensions.DependencyInjection/10.0.0": { + "sha512": "ZjR/onUlP7BzQ7VBBigQepWLAyAzi3VRGX3pP6sBqkPRiT61fsTZqbTpRUKxo30TMgbs1o3y6bpLbETix4SJog==", + "type": "package", + "path": "autofac.extensions.dependencyinjection/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "autofac.extensions.dependencyinjection.10.0.0.nupkg.sha512", + "autofac.extensions.dependencyinjection.nuspec", + "icon.png", + "lib/net6.0/Autofac.Extensions.DependencyInjection.dll", + "lib/net6.0/Autofac.Extensions.DependencyInjection.xml", + "lib/net7.0/Autofac.Extensions.DependencyInjection.dll", + "lib/net7.0/Autofac.Extensions.DependencyInjection.xml", + "lib/net8.0/Autofac.Extensions.DependencyInjection.dll", + "lib/net8.0/Autofac.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml" + ] + }, + "Azure.Core/1.38.0": { + "sha512": "IuEgCoVA0ef7E4pQtpC3+TkPbzaoQfa77HlfJDmfuaJUCVJmn7fT0izamZiryW5sYUFKizsftIxMkXKbgIcPMQ==", + "type": "package", + "path": "azure.core/1.38.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.core.1.38.0.nupkg.sha512", + "azure.core.nuspec", + "azureicon.png", + "lib/net461/Azure.Core.dll", + "lib/net461/Azure.Core.xml", + "lib/net472/Azure.Core.dll", + "lib/net472/Azure.Core.xml", + "lib/net6.0/Azure.Core.dll", + "lib/net6.0/Azure.Core.xml", + "lib/netstandard2.0/Azure.Core.dll", + "lib/netstandard2.0/Azure.Core.xml" + ] + }, + "Azure.Identity/1.11.4": { + "sha512": "Sf4BoE6Q3jTgFkgBkx7qztYOFELBCo+wQgpYDwal/qJ1unBH73ywPztIJKXBXORRzAeNijsuxhk94h0TIMvfYg==", + "type": "package", + "path": "azure.identity/1.11.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.identity.1.11.4.nupkg.sha512", + "azure.identity.nuspec", + "azureicon.png", + "lib/netstandard2.0/Azure.Identity.dll", + "lib/netstandard2.0/Azure.Identity.xml" + ] + }, + "Microsoft.Bcl.AsyncInterfaces/1.1.1": { + "sha512": "yuvf07qFWFqtK3P/MRkEKLhn5r2UbSpVueRziSqj0yJQIKFwG1pq9mOayK3zE5qZCTs0CbrwL9M6R8VwqyGy2w==", + "type": "package", + "path": "microsoft.bcl.asyncinterfaces/1.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", + "microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512", + "microsoft.bcl.asyncinterfaces.nuspec", + "ref/net461/Microsoft.Bcl.AsyncInterfaces.dll", + "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.CSharp/4.5.0": { + "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==", + "type": "package", + "path": "microsoft.csharp/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.5.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Data.SqlClient/5.2.2": { + "sha512": "mtoeRMh7F/OA536c/Cnh8L4H0uLSKB5kSmoi54oN7Fp0hNJDy22IqyMhaMH4PkDCqI7xL//Fvg9ldtuPHG0h5g==", + "type": "package", + "path": "microsoft.data.sqlclient/5.2.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dotnet.png", + "lib/net462/Microsoft.Data.SqlClient.dll", + "lib/net462/Microsoft.Data.SqlClient.xml", + "lib/net462/de/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/es/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/it/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/Microsoft.Data.SqlClient.dll", + "lib/net6.0/Microsoft.Data.SqlClient.xml", + "lib/net6.0/de/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/es/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/it/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/Microsoft.Data.SqlClient.dll", + "lib/net8.0/Microsoft.Data.SqlClient.xml", + "lib/net8.0/de/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/es/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/it/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "lib/netstandard2.0/Microsoft.Data.SqlClient.xml", + "lib/netstandard2.0/de/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/es/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/it/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "lib/netstandard2.1/Microsoft.Data.SqlClient.xml", + "lib/netstandard2.1/de/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/es/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/it/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "microsoft.data.sqlclient.5.2.2.nupkg.sha512", + "microsoft.data.sqlclient.nuspec", + "ref/net462/Microsoft.Data.SqlClient.dll", + "ref/net462/Microsoft.Data.SqlClient.xml", + "ref/net6.0/Microsoft.Data.SqlClient.dll", + "ref/net6.0/Microsoft.Data.SqlClient.xml", + "ref/net8.0/Microsoft.Data.SqlClient.dll", + "ref/net8.0/Microsoft.Data.SqlClient.xml", + "ref/netstandard2.0/Microsoft.Data.SqlClient.dll", + "ref/netstandard2.0/Microsoft.Data.SqlClient.xml", + "ref/netstandard2.1/Microsoft.Data.SqlClient.dll", + "ref/netstandard2.1/Microsoft.Data.SqlClient.xml", + "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/net8.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net462/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net8.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll" + ] + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.2.0": { + "sha512": "po1jhvFd+8pbfvJR/puh+fkHi0GRanAdvayh/0e47yaM6CXWZ6opUjCMFuYlAnD2LcbyvQE7fPJKvogmaUcN+w==", + "type": "package", + "path": "microsoft.data.sqlclient.sni.runtime/5.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "dotnet.png", + "microsoft.data.sqlclient.sni.runtime.5.2.0.nupkg.sha512", + "microsoft.data.sqlclient.sni.runtime.nuspec", + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll" + ] + }, + "Microsoft.Data.Sqlite/8.0.1": { + "sha512": "+7uDWNYZmLrVq9eABAKwy1phGbpoFVohKCUoh/nGg9WiBwi856EkAJYFiQhTJWoXxzpInkLFj/6KACoSB7ODYg==", + "type": "package", + "path": "microsoft.data.sqlite/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/_._", + "microsoft.data.sqlite.8.0.1.nupkg.sha512", + "microsoft.data.sqlite.nuspec" + ] + }, + "Microsoft.Data.Sqlite.Core/8.0.1": { + "sha512": "s8C8xbwMb79EqzTaIhwiBrYtbv6ATnUW19pJed4fKVgN5K4VPQ7JUGqBLztknvD6EJIMKrfRnINGTjnZghrDGw==", + "type": "package", + "path": "microsoft.data.sqlite.core/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net6.0/Microsoft.Data.Sqlite.dll", + "lib/net6.0/Microsoft.Data.Sqlite.xml", + "lib/net8.0/Microsoft.Data.Sqlite.dll", + "lib/net8.0/Microsoft.Data.Sqlite.xml", + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll", + "lib/netstandard2.0/Microsoft.Data.Sqlite.xml", + "microsoft.data.sqlite.core.8.0.1.nupkg.sha512", + "microsoft.data.sqlite.core.nuspec" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.1": { + "sha512": "fGLiCRLMYd00JYpClraLjJTNKLmMJPnqxMaiRzEBIIvevlzxz33mXy39Lkd48hu1G+N21S7QpaO5ZzKsI6FRuA==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.8.0.1.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Identity.Client/4.61.3": { + "sha512": "naJo/Qm35Caaoxp5utcw+R8eU8ZtLz2ALh8S+gkekOYQ1oazfCQMWVT4NJ/FnHzdIJlm8dMz0oMpMGCabx5odA==", + "type": "package", + "path": "microsoft.identity.client/4.61.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net462/Microsoft.Identity.Client.dll", + "lib/net462/Microsoft.Identity.Client.xml", + "lib/net6.0-android31.0/Microsoft.Identity.Client.dll", + "lib/net6.0-android31.0/Microsoft.Identity.Client.xml", + "lib/net6.0-ios15.4/Microsoft.Identity.Client.dll", + "lib/net6.0-ios15.4/Microsoft.Identity.Client.xml", + "lib/net6.0/Microsoft.Identity.Client.dll", + "lib/net6.0/Microsoft.Identity.Client.xml", + "lib/netstandard2.0/Microsoft.Identity.Client.dll", + "lib/netstandard2.0/Microsoft.Identity.Client.xml", + "microsoft.identity.client.4.61.3.nupkg.sha512", + "microsoft.identity.client.nuspec" + ] + }, + "Microsoft.Identity.Client.Extensions.Msal/4.61.3": { + "sha512": "PWnJcznrSGr25MN8ajlc2XIDW4zCFu0U6FkpaNLEWLgd1NgFCp5uDY3mqLDgM8zCN8hqj8yo5wHYfLB2HjcdGw==", + "type": "package", + "path": "microsoft.identity.client.extensions.msal/4.61.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll", + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.xml", + "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll", + "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.xml", + "microsoft.identity.client.extensions.msal.4.61.3.nupkg.sha512", + "microsoft.identity.client.extensions.msal.nuspec" + ] + }, + "Microsoft.IdentityModel.Abstractions/6.35.0": { + "sha512": "xuR8E4Rd96M41CnUSCiOJ2DBh+z+zQSmyrYHdYhD6K4fXBcQGVnRCFQ0efROUYpP+p0zC1BLKr0JRpVuujTZSg==", + "type": "package", + "path": "microsoft.identitymodel.abstractions/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Abstractions.dll", + "lib/net45/Microsoft.IdentityModel.Abstractions.xml", + "lib/net461/Microsoft.IdentityModel.Abstractions.dll", + "lib/net461/Microsoft.IdentityModel.Abstractions.xml", + "lib/net462/Microsoft.IdentityModel.Abstractions.dll", + "lib/net462/Microsoft.IdentityModel.Abstractions.xml", + "lib/net472/Microsoft.IdentityModel.Abstractions.dll", + "lib/net472/Microsoft.IdentityModel.Abstractions.xml", + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml", + "microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512", + "microsoft.identitymodel.abstractions.nuspec" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/6.35.0": { + "sha512": "9wxai3hKgZUb4/NjdRKfQd0QJvtXKDlvmGMYACbEC8DFaicMFCFhQFZq9ZET1kJLwZahf2lfY5Gtcpsx8zYzbg==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/6.35.0": { + "sha512": "jePrSfGAmqT81JDCNSY+fxVWoGuJKt9e6eJ+vT7+quVS55nWl//jGjUQn4eFtVKt4rt5dXaleZdHRB9J9AJZ7Q==", + "type": "package", + "path": "microsoft.identitymodel.logging/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Logging.dll", + "lib/net45/Microsoft.IdentityModel.Logging.xml", + "lib/net461/Microsoft.IdentityModel.Logging.dll", + "lib/net461/Microsoft.IdentityModel.Logging.xml", + "lib/net462/Microsoft.IdentityModel.Logging.dll", + "lib/net462/Microsoft.IdentityModel.Logging.xml", + "lib/net472/Microsoft.IdentityModel.Logging.dll", + "lib/net472/Microsoft.IdentityModel.Logging.xml", + "lib/net6.0/Microsoft.IdentityModel.Logging.dll", + "lib/net6.0/Microsoft.IdentityModel.Logging.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", + "microsoft.identitymodel.logging.6.35.0.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols/6.35.0": { + "sha512": "BPQhlDzdFvv1PzaUxNSk+VEPwezlDEVADIKmyxubw7IiELK18uJ06RQ9QKKkds30XI+gDu9n8j24XQ8w7fjWcg==", + "type": "package", + "path": "microsoft.identitymodel.protocols/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.xml", + "lib/net462/Microsoft.IdentityModel.Protocols.dll", + "lib/net462/Microsoft.IdentityModel.Protocols.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.xml", + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll", + "lib/net6.0/Microsoft.IdentityModel.Protocols.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml", + "microsoft.identitymodel.protocols.6.35.0.nupkg.sha512", + "microsoft.identitymodel.protocols.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": { + "sha512": "LMtVqnECCCdSmyFoCOxIE5tXQqkOLrvGrL7OxHg41DIm1bpWtaCdGyVcTAfOQpJXvzND9zUKIN/lhngPkYR8vg==", + "type": "package", + "path": "microsoft.identitymodel.protocols.openidconnect/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512", + "microsoft.identitymodel.protocols.openidconnect.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/6.35.0": { + "sha512": "RN7lvp7s3Boucg1NaNAbqDbxtlLj5Qeb+4uSS1TeK5FSBVM40P4DKaTKChT43sHyKfh7V0zkrMph6DdHvyA4bg==", + "type": "package", + "path": "microsoft.identitymodel.tokens/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Tokens.dll", + "lib/net45/Microsoft.IdentityModel.Tokens.xml", + "lib/net461/Microsoft.IdentityModel.Tokens.dll", + "lib/net461/Microsoft.IdentityModel.Tokens.xml", + "lib/net462/Microsoft.IdentityModel.Tokens.dll", + "lib/net462/Microsoft.IdentityModel.Tokens.xml", + "lib/net472/Microsoft.IdentityModel.Tokens.dll", + "lib/net472/Microsoft.IdentityModel.Tokens.xml", + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll", + "lib/net6.0/Microsoft.IdentityModel.Tokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", + "microsoft.identitymodel.tokens.6.35.0.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, + "Microsoft.NET.ILLink.Tasks/8.0.10": { + "sha512": "xT8jYjlroY7SLbGtoV9vUTVW/TPgodL4Egc31a444Xe0TMytLZ3UlKQ0kxMZsy/CrWsFB6wtKnSG1SsXcWreew==", + "type": "package", + "path": "microsoft.net.illink.tasks/8.0.10", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "Sdk/Sdk.props", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/cs/ILLink.CodeFixProvider.dll", + "analyzers/dotnet/cs/ILLink.RoslynAnalyzer.dll", + "build/Microsoft.NET.ILLink.Analyzers.props", + "build/Microsoft.NET.ILLink.Tasks.props", + "build/Microsoft.NET.ILLink.targets", + "microsoft.net.illink.tasks.8.0.10.nupkg.sha512", + "microsoft.net.illink.tasks.nuspec", + "tools/net472/ILLink.Tasks.dll", + "tools/net472/ILLink.Tasks.dll.config", + "tools/net472/Mono.Cecil.Mdb.dll", + "tools/net472/Mono.Cecil.Pdb.dll", + "tools/net472/Mono.Cecil.Rocks.dll", + "tools/net472/Mono.Cecil.dll", + "tools/net472/Sdk/Sdk.props", + "tools/net472/System.Buffers.dll", + "tools/net472/System.Collections.Immutable.dll", + "tools/net472/System.Memory.dll", + "tools/net472/System.Numerics.Vectors.dll", + "tools/net472/System.Reflection.Metadata.dll", + "tools/net472/System.Runtime.CompilerServices.Unsafe.dll", + "tools/net472/build/Microsoft.NET.ILLink.Analyzers.props", + "tools/net472/build/Microsoft.NET.ILLink.Tasks.props", + "tools/net472/build/Microsoft.NET.ILLink.targets", + "tools/net8.0/ILLink.Tasks.deps.json", + "tools/net8.0/ILLink.Tasks.dll", + "tools/net8.0/Mono.Cecil.Mdb.dll", + "tools/net8.0/Mono.Cecil.Pdb.dll", + "tools/net8.0/Mono.Cecil.Rocks.dll", + "tools/net8.0/Mono.Cecil.dll", + "tools/net8.0/Sdk/Sdk.props", + "tools/net8.0/build/Microsoft.NET.ILLink.Analyzers.props", + "tools/net8.0/build/Microsoft.NET.ILLink.Tasks.props", + "tools/net8.0/build/Microsoft.NET.ILLink.targets", + "tools/net8.0/illink.deps.json", + "tools/net8.0/illink.dll", + "tools/net8.0/illink.runtimeconfig.json", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "type": "package", + "path": "microsoft.netcore.platforms/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.5.0.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.1.3": { + "sha512": "3Wrmi0kJDzClwAC+iBdUBpEKmEle8FQNsCs77fkiOIw/9oYA07bL1EZNX0kQ2OMN3xpwvl0vAtOCYY3ndDNlhQ==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.3.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.SqlServer.Server/1.0.0": { + "sha512": "N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==", + "type": "package", + "path": "microsoft.sqlserver.server/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dotnet.png", + "lib/net46/Microsoft.SqlServer.Server.dll", + "lib/net46/Microsoft.SqlServer.Server.pdb", + "lib/net46/Microsoft.SqlServer.Server.xml", + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll", + "lib/netstandard2.0/Microsoft.SqlServer.Server.pdb", + "lib/netstandard2.0/Microsoft.SqlServer.Server.xml", + "microsoft.sqlserver.server.1.0.0.nupkg.sha512", + "microsoft.sqlserver.server.nuspec" + ] + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "type": "package", + "path": "microsoft.win32.systemevents/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt" + ] + }, + "MySqlConnector/2.2.5": { + "sha512": "6sinY78RvryhHwpup3awdjYO7d5hhWahb5p/1VDODJhSxJggV/sBbYuKK5IQF9TuzXABiddqUbmRfM884tqA3Q==", + "type": "package", + "path": "mysqlconnector/2.2.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net461/MySqlConnector.dll", + "lib/net461/MySqlConnector.xml", + "lib/net471/MySqlConnector.dll", + "lib/net471/MySqlConnector.xml", + "lib/net6.0/MySqlConnector.dll", + "lib/net6.0/MySqlConnector.xml", + "lib/net7.0/MySqlConnector.dll", + "lib/net7.0/MySqlConnector.xml", + "lib/netcoreapp3.1/MySqlConnector.dll", + "lib/netcoreapp3.1/MySqlConnector.xml", + "lib/netstandard2.0/MySqlConnector.dll", + "lib/netstandard2.0/MySqlConnector.xml", + "lib/netstandard2.1/MySqlConnector.dll", + "lib/netstandard2.1/MySqlConnector.xml", + "logo.png", + "mysqlconnector.2.2.5.nupkg.sha512", + "mysqlconnector.nuspec" + ] + }, + "Newtonsoft.Json/13.0.3": { + "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "type": "package", + "path": "newtonsoft.json/13.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/net6.0/Newtonsoft.Json.dll", + "lib/net6.0/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.3.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "Npgsql/5.0.18": { + "sha512": "1u4iCPKL9wtPeSUzChIbgq/BlOhvf44o7xASacdpMY7z0PbqACKpNOF0fjEn9jDV/AJl/HtPY6zk5qasQ1URhw==", + "type": "package", + "path": "npgsql/5.0.18", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Npgsql.dll", + "lib/net5.0/Npgsql.xml", + "lib/netcoreapp3.1/Npgsql.dll", + "lib/netcoreapp3.1/Npgsql.xml", + "lib/netstandard2.0/Npgsql.dll", + "lib/netstandard2.0/Npgsql.xml", + "lib/netstandard2.1/Npgsql.dll", + "lib/netstandard2.1/Npgsql.xml", + "npgsql.5.0.18.nupkg.sha512", + "npgsql.nuspec", + "postgresql.png" + ] + }, + "Oracle.ManagedDataAccess.Core/3.21.100": { + "sha512": "nsqyUE+v246WB0SOnR1u9lfZxYoNcdj1fRjTt7TOhCN0JurEc6+qu+mMe+dl1sySB2UpyWdfqHG1iSQJYaXEfA==", + "type": "package", + "path": "oracle.manageddataaccess.core/3.21.100", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "PerfCounters/register_odpc_perfmon_counters.ps1", + "PerfCounters/unregister_odpc_perfmon_counters.ps1", + "info.txt", + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll", + "oracle.manageddataaccess.core.3.21.100.nupkg.sha512", + "oracle.manageddataaccess.core.nuspec", + "readme.txt" + ] + }, + "Oscar.Data.SqlClient/4.0.4": { + "sha512": "VJ3xVvRjxrPi/mMPT5EqYiMZor0MjFu83mw1qvUveBFWJSudGh9BOKZq7RkhqeNCcL1ud0uK0/TVkw+xTa4q4g==", + "type": "package", + "path": "oscar.data.sqlclient/4.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Oscar.Data.SqlClient.dll", + "oscar.data.sqlclient.4.0.4.nupkg.sha512", + "oscar.data.sqlclient.nuspec" + ] + }, + "runtime.any.System.Collections/4.3.0": { + "sha512": "23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==", + "type": "package", + "path": "runtime.any.system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.dll", + "lib/netstandard1.3/System.Collections.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.collections.4.3.0.nupkg.sha512", + "runtime.any.system.collections.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Globalization/4.3.0": { + "sha512": "sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw==", + "type": "package", + "path": "runtime.any.system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Globalization.dll", + "lib/netstandard1.3/System.Globalization.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.globalization.4.3.0.nupkg.sha512", + "runtime.any.system.globalization.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.IO/4.3.0": { + "sha512": "SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ==", + "type": "package", + "path": "runtime.any.system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.IO.dll", + "lib/netstandard1.5/System.IO.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.io.4.3.0.nupkg.sha512", + "runtime.any.system.io.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Reflection/4.3.0": { + "sha512": "hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ==", + "type": "package", + "path": "runtime.any.system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.dll", + "lib/netstandard1.5/System.Reflection.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.4.3.0.nupkg.sha512", + "runtime.any.system.reflection.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Reflection.Primitives/4.3.0": { + "sha512": "Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg==", + "type": "package", + "path": "runtime.any.system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/netstandard1.3/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512", + "runtime.any.system.reflection.primitives.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Resources.ResourceManager/4.3.0": { + "sha512": "Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ==", + "type": "package", + "path": "runtime.any.system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/netstandard1.3/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512", + "runtime.any.system.resources.resourcemanager.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Runtime/4.3.0": { + "sha512": "fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==", + "type": "package", + "path": "runtime.any.system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.dll", + "lib/netstandard1.5/System.Runtime.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.4.3.0.nupkg.sha512", + "runtime.any.system.runtime.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Text.Encoding/4.3.0": { + "sha512": "+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ==", + "type": "package", + "path": "runtime.any.system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.Encoding.dll", + "lib/netstandard1.3/System.Text.Encoding.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.text.encoding.4.3.0.nupkg.sha512", + "runtime.any.system.text.encoding.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Threading.Tasks/4.3.0": { + "sha512": "OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w==", + "type": "package", + "path": "runtime.any.system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "lib/netstandard1.3/System.Threading.Tasks.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.threading.tasks.4.3.0.nupkg.sha512", + "runtime.any.system.threading.tasks.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.win.System.Runtime.Extensions/4.3.0": { + "sha512": "RkgHVhUPvzZxuUubiZe8yr/6CypRVXj0VBzaR8hsqQ8f+rUo7e4PWrHTLOCjd8fBMGWCrY//fi7Ku3qXD7oHRw==", + "type": "package", + "path": "runtime.win.system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.win.system.runtime.extensions.4.3.0.nupkg.sha512", + "runtime.win.system.runtime.extensions.nuspec", + "runtimes/aot/lib/netcore50/System.Runtime.Extensions.dll", + "runtimes/win/lib/net/_._", + "runtimes/win/lib/netcore50/System.Runtime.Extensions.dll", + "runtimes/win/lib/netstandard1.5/System.Runtime.Extensions.dll" + ] + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.6": { + "sha512": "BmAf6XWt4TqtowmiWe4/5rRot6GerAeklmOPfviOvwLoF5WwgxcJHAxZtySuyW9r9w+HLILnm8VfJFLCUJYW8A==", + "type": "package", + "path": "sqlitepclraw.bundle_e_sqlite3/2.1.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/monoandroid90/SQLitePCLRaw.batteries_v2.dll", + "lib/net461/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-android31.0/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-android31.0/SQLitePCLRaw.batteries_v2.xml", + "lib/net6.0-ios14.0/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-ios14.2/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-tvos10.0/SQLitePCLRaw.batteries_v2.dll", + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll", + "lib/xamarinios10/SQLitePCLRaw.batteries_v2.dll", + "sqlitepclraw.bundle_e_sqlite3.2.1.6.nupkg.sha512", + "sqlitepclraw.bundle_e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.core/2.1.6": { + "sha512": "wO6v9GeMx9CUngAet8hbO7xdm+M42p1XeJq47ogyRoYSvNSp0NGLI+MgC0bhrMk9C17MTVFlLiN6ylyExLCc5w==", + "type": "package", + "path": "sqlitepclraw.core/2.1.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/SQLitePCLRaw.core.dll", + "sqlitepclraw.core.2.1.6.nupkg.sha512", + "sqlitepclraw.core.nuspec" + ] + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.6": { + "sha512": "2ObJJLkIUIxRpOUlZNGuD4rICpBnrBR5anjyfUFQep4hMOIeqW+XGQYzrNmHSVz5xSWZ3klSbh7sFR6UyDj68Q==", + "type": "package", + "path": "sqlitepclraw.lib.e_sqlite3/2.1.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "buildTransitive/net461/SQLitePCLRaw.lib.e_sqlite3.targets", + "buildTransitive/net6.0/SQLitePCLRaw.lib.e_sqlite3.targets", + "buildTransitive/net7.0/SQLitePCLRaw.lib.e_sqlite3.targets", + "buildTransitive/net8.0/SQLitePCLRaw.lib.e_sqlite3.targets", + "lib/net461/_._", + "lib/netstandard2.0/_._", + "runtimes/browser-wasm/nativeassets/net6.0/e_sqlite3.a", + "runtimes/browser-wasm/nativeassets/net7.0/e_sqlite3.a", + "runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a", + "runtimes/linux-arm/native/libe_sqlite3.so", + "runtimes/linux-arm64/native/libe_sqlite3.so", + "runtimes/linux-armel/native/libe_sqlite3.so", + "runtimes/linux-mips64/native/libe_sqlite3.so", + "runtimes/linux-musl-arm/native/libe_sqlite3.so", + "runtimes/linux-musl-arm64/native/libe_sqlite3.so", + "runtimes/linux-musl-x64/native/libe_sqlite3.so", + "runtimes/linux-ppc64le/native/libe_sqlite3.so", + "runtimes/linux-s390x/native/libe_sqlite3.so", + "runtimes/linux-x64/native/libe_sqlite3.so", + "runtimes/linux-x86/native/libe_sqlite3.so", + "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib", + "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib", + "runtimes/osx-arm64/native/libe_sqlite3.dylib", + "runtimes/osx-x64/native/libe_sqlite3.dylib", + "runtimes/win-arm/native/e_sqlite3.dll", + "runtimes/win-arm64/native/e_sqlite3.dll", + "runtimes/win-x64/native/e_sqlite3.dll", + "runtimes/win-x86/native/e_sqlite3.dll", + "runtimes/win10-arm/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-arm64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x86/nativeassets/uap10.0/e_sqlite3.dll", + "sqlitepclraw.lib.e_sqlite3.2.1.6.nupkg.sha512", + "sqlitepclraw.lib.e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.6": { + "sha512": "PQ2Oq3yepLY4P7ll145P3xtx2bX8xF4PzaKPRpw9jZlKvfe4LE/saAV82inND9usn1XRpmxXk7Lal3MTI+6CNg==", + "type": "package", + "path": "sqlitepclraw.provider.e_sqlite3/2.1.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net6.0-windows7.0/SQLitePCLRaw.provider.e_sqlite3.dll", + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll", + "lib/netstandard2.0/SQLitePCLRaw.provider.e_sqlite3.dll", + "sqlitepclraw.provider.e_sqlite3.2.1.6.nupkg.sha512", + "sqlitepclraw.provider.e_sqlite3.nuspec" + ] + }, + "SqlSugarCore/5.1.4.170": { + "sha512": "TVFfkbKak2I1VxUI8nqAUbn9rkt37m13ooq30pLK/bj9MZvV0hPbVElTn09Jg5PmfzFwXeXaQnay7IXwkODAtw==", + "type": "package", + "path": "sqlsugarcore/5.1.4.170", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.1/SqlSugar.dll", + "sqlsugarcore.5.1.4.170.nupkg.sha512", + "sqlsugarcore.nuspec" + ] + }, + "SqlSugarCore.Dm/8.6.0": { + "sha512": "Q0NAjF9hvkxLbNedIrCqKd3uru0enzZ49GaQtenvsLDQ29aHwlSqg1mRkVYxZ/85UYJFgXh+XHqABSrMgun4aw==", + "type": "package", + "path": "sqlsugarcore.dm/8.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/DM.DmProvider.dll", + "sqlsugarcore.dm.8.6.0.nupkg.sha512", + "sqlsugarcore.dm.nuspec" + ] + }, + "SqlSugarCore.Kdbndp/9.3.6.925": { + "sha512": "Qq1BAYi83aySpL6WHPLtIa0Pbh2TjFh5GYmAw9rxB4W7j6L3NKN3skaNxBbWw0Hn8y+bvCjnM0bejPK6i8Jihg==", + "type": "package", + "path": "sqlsugarcore.kdbndp/9.3.6.925", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.1/Kdbndp.dll", + "sqlsugarcore.kdbndp.9.3.6.925.nupkg.sha512", + "sqlsugarcore.kdbndp.nuspec" + ] + }, + "System.ClientModel/1.0.0": { + "sha512": "I3CVkvxeqFYjIVEP59DnjbeoGNfo/+SZrCLpRz2v/g0gpCHaEMPtWSY0s9k/7jR1rAsLNg2z2u1JRB76tPjnIw==", + "type": "package", + "path": "system.clientmodel/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "DotNetPackageIcon.png", + "README.md", + "lib/net6.0/System.ClientModel.dll", + "lib/net6.0/System.ClientModel.xml", + "lib/netstandard2.0/System.ClientModel.dll", + "lib/netstandard2.0/System.ClientModel.xml", + "system.clientmodel.1.0.0.nupkg.sha512", + "system.clientmodel.nuspec" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Configuration.ConfigurationManager/8.0.0": { + "sha512": "JlYi9XVvIREURRUlGMr1F6vOFLk7YSY4p1vHo4kX3tQ0AGrjqlRWHDi66ImHhy6qwXBG3BJ6Y1QlYQ+Qz6Xgww==", + "type": "package", + "path": "system.configuration.configurationmanager/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Configuration.ConfigurationManager.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets", + "lib/net462/System.Configuration.ConfigurationManager.dll", + "lib/net462/System.Configuration.ConfigurationManager.xml", + "lib/net6.0/System.Configuration.ConfigurationManager.dll", + "lib/net6.0/System.Configuration.ConfigurationManager.xml", + "lib/net7.0/System.Configuration.ConfigurationManager.dll", + "lib/net7.0/System.Configuration.ConfigurationManager.xml", + "lib/net8.0/System.Configuration.ConfigurationManager.dll", + "lib/net8.0/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.8.0.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Data.Common/4.3.0": { + "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", + "type": "package", + "path": "system.data.common/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/System.Data.Common.dll", + "lib/netstandard1.2/System.Data.Common.dll", + "lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/System.Data.Common.dll", + "ref/netstandard1.2/System.Data.Common.dll", + "ref/netstandard1.2/System.Data.Common.xml", + "ref/netstandard1.2/de/System.Data.Common.xml", + "ref/netstandard1.2/es/System.Data.Common.xml", + "ref/netstandard1.2/fr/System.Data.Common.xml", + "ref/netstandard1.2/it/System.Data.Common.xml", + "ref/netstandard1.2/ja/System.Data.Common.xml", + "ref/netstandard1.2/ko/System.Data.Common.xml", + "ref/netstandard1.2/ru/System.Data.Common.xml", + "ref/netstandard1.2/zh-hans/System.Data.Common.xml", + "ref/netstandard1.2/zh-hant/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll", + "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.data.common.4.3.0.nupkg.sha512", + "system.data.common.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/8.0.1": { + "sha512": "vaoWjvkG1aenR2XdjaVivlCV9fADfgyhW5bZtXT23qaEea0lWiUljdQuze4E31vKM7ZWJaSUsbYIKE3rnzfZUg==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", + "lib/net462/System.Diagnostics.DiagnosticSource.dll", + "lib/net462/System.Diagnostics.DiagnosticSource.xml", + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net6.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net7.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net7.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net8.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.EventLog/8.0.0": { + "sha512": "fdYxcRjQqTTacKId/2IECojlDSFvp7LP5N78+0z/xH7v/Tuw5ZAxu23Y6PTCRinqyu2ePx+Gn1098NC6jM6d+A==", + "type": "package", + "path": "system.diagnostics.eventlog/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Diagnostics.EventLog.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets", + "lib/net462/System.Diagnostics.EventLog.dll", + "lib/net462/System.Diagnostics.EventLog.xml", + "lib/net6.0/System.Diagnostics.EventLog.dll", + "lib/net6.0/System.Diagnostics.EventLog.xml", + "lib/net7.0/System.Diagnostics.EventLog.dll", + "lib/net7.0/System.Diagnostics.EventLog.xml", + "lib/net8.0/System.Diagnostics.EventLog.dll", + "lib/net8.0/System.Diagnostics.EventLog.xml", + "lib/netstandard2.0/System.Diagnostics.EventLog.dll", + "lib/netstandard2.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.xml", + "system.diagnostics.eventlog.8.0.0.nupkg.sha512", + "system.diagnostics.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.PerformanceCounter/6.0.1": { + "sha512": "dDl7Gx3bmSrM2k2ZIm+ucEJnLloZRyvfQF1DvfvATcGF3jtaUBiPvChma+6ZcZzxWMirN3kCywkW7PILphXyMQ==", + "type": "package", + "path": "system.diagnostics.performancecounter/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Diagnostics.PerformanceCounter.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Diagnostics.PerformanceCounter.dll", + "lib/net461/System.Diagnostics.PerformanceCounter.xml", + "lib/net6.0/System.Diagnostics.PerformanceCounter.dll", + "lib/net6.0/System.Diagnostics.PerformanceCounter.xml", + "lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.dll", + "lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.xml", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml", + "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.xml", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.dll", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.xml", + "system.diagnostics.performancecounter.6.0.1.nupkg.sha512", + "system.diagnostics.performancecounter.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.DirectoryServices/6.0.1": { + "sha512": "935IbO7h5FDGYxeO3cbx/CuvBBuk/VI8sENlfmXlh1pupNOB3LAGzdYdPY8CawGJFP7KNrHK5eUlsFoz3F6cuA==", + "type": "package", + "path": "system.directoryservices/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.DirectoryServices.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.DirectoryServices.dll", + "lib/net6.0/System.DirectoryServices.xml", + "lib/netcoreapp3.1/System.DirectoryServices.dll", + "lib/netcoreapp3.1/System.DirectoryServices.xml", + "lib/netstandard2.0/System.DirectoryServices.dll", + "lib/netstandard2.0/System.DirectoryServices.xml", + "runtimes/win/lib/net6.0/System.DirectoryServices.dll", + "runtimes/win/lib/net6.0/System.DirectoryServices.xml", + "runtimes/win/lib/netcoreapp3.1/System.DirectoryServices.dll", + "runtimes/win/lib/netcoreapp3.1/System.DirectoryServices.xml", + "system.directoryservices.6.0.1.nupkg.sha512", + "system.directoryservices.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.DirectoryServices.Protocols/6.0.1": { + "sha512": "ndUZlEkAMc1XzM0xGN++SsJrNhRkIHaKI8+te325vrUgoLT1ufWNI6KB8FFrL7NpRMHPrdxP99aF3fHbAPxW0A==", + "type": "package", + "path": "system.directoryservices.protocols/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.DirectoryServices.Protocols.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.DirectoryServices.Protocols.dll", + "lib/net6.0/System.DirectoryServices.Protocols.xml", + "lib/netcoreapp3.1/System.DirectoryServices.Protocols.dll", + "lib/netcoreapp3.1/System.DirectoryServices.Protocols.xml", + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll", + "lib/netstandard2.0/System.DirectoryServices.Protocols.xml", + "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll", + "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.xml", + "runtimes/linux/lib/netcoreapp3.1/System.DirectoryServices.Protocols.dll", + "runtimes/linux/lib/netcoreapp3.1/System.DirectoryServices.Protocols.xml", + "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll", + "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.xml", + "runtimes/osx/lib/netcoreapp3.1/System.DirectoryServices.Protocols.dll", + "runtimes/osx/lib/netcoreapp3.1/System.DirectoryServices.Protocols.xml", + "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll", + "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.xml", + "runtimes/win/lib/netcoreapp3.1/System.DirectoryServices.Protocols.dll", + "runtimes/win/lib/netcoreapp3.1/System.DirectoryServices.Protocols.xml", + "system.directoryservices.protocols.6.0.1.nupkg.sha512", + "system.directoryservices.protocols.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Drawing.Common/6.0.0": { + "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "type": "package", + "path": "system.drawing.common/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/net461/System.Drawing.Common.xml", + "lib/net6.0/System.Drawing.Common.dll", + "lib/net6.0/System.Drawing.Common.xml", + "lib/netcoreapp3.1/System.Drawing.Common.dll", + "lib/netcoreapp3.1/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll", + "runtimes/unix/lib/net6.0/System.Drawing.Common.xml", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml", + "runtimes/win/lib/net6.0/System.Drawing.Common.dll", + "runtimes/win/lib/net6.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml", + "system.drawing.common.6.0.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.IdentityModel.Tokens.Jwt/6.35.0": { + "sha512": "yxGIQd3BFK7F6S62/7RdZk3C/mfwyVxvh6ngd1VYMBmbJ1YZZA9+Ku6suylVtso0FjI0wbElpJ0d27CdsyLpBQ==", + "type": "package", + "path": "system.identitymodel.tokens.jwt/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/System.IdentityModel.Tokens.Jwt.dll", + "lib/net45/System.IdentityModel.Tokens.Jwt.xml", + "lib/net461/System.IdentityModel.Tokens.Jwt.dll", + "lib/net461/System.IdentityModel.Tokens.Jwt.xml", + "lib/net462/System.IdentityModel.Tokens.Jwt.dll", + "lib/net462/System.IdentityModel.Tokens.Jwt.xml", + "lib/net472/System.IdentityModel.Tokens.Jwt.dll", + "lib/net472/System.IdentityModel.Tokens.Jwt.xml", + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", + "system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512", + "system.identitymodel.tokens.jwt.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.Memory/4.5.4": { + "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "type": "package", + "path": "system.memory/4.5.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Memory.dll", + "lib/net461/System.Memory.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.4.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Memory.Data/1.0.2": { + "sha512": "JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==", + "type": "package", + "path": "system.memory.data/1.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "DotNetPackageIcon.png", + "README.md", + "lib/net461/System.Memory.Data.dll", + "lib/net461/System.Memory.Data.xml", + "lib/netstandard2.0/System.Memory.Data.dll", + "lib/netstandard2.0/System.Memory.Data.xml", + "system.memory.data.1.0.2.nupkg.sha512", + "system.memory.data.nuspec" + ] + }, + "System.Numerics.Vectors/4.5.0": { + "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "type": "package", + "path": "system.numerics.vectors/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Numerics.Vectors.dll", + "lib/net46/System.Numerics.Vectors.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.Numerics.Vectors.dll", + "lib/netstandard1.0/System.Numerics.Vectors.xml", + "lib/netstandard2.0/System.Numerics.Vectors.dll", + "lib/netstandard2.0/System.Numerics.Vectors.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.Numerics.Vectors.dll", + "ref/net45/System.Numerics.Vectors.xml", + "ref/net46/System.Numerics.Vectors.dll", + "ref/net46/System.Numerics.Vectors.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/System.Numerics.Vectors.dll", + "ref/netstandard1.0/System.Numerics.Vectors.xml", + "ref/netstandard2.0/System.Numerics.Vectors.dll", + "ref/netstandard2.0/System.Numerics.Vectors.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.numerics.vectors.4.5.0.nupkg.sha512", + "system.numerics.vectors.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Private.Uri/4.3.0": { + "sha512": "I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==", + "type": "package", + "path": "system.private.uri/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "system.private.uri.4.3.0.nupkg.sha512", + "system.private.uri.nuspec" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.1": { + "sha512": "abhfv1dTK6NXOmu4bgHIONxHyEqFjW8HwXPmpY9gmll+ix9UNo4XDcmzJn6oLooftxNssVHdJC1pGT9jkSynQg==", + "type": "package", + "path": "system.runtime/4.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.1.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Caching/8.0.0": { + "sha512": "4TmlmvGp4kzZomm7J2HJn6IIx0UUrQyhBDyb5O1XiunZlQImXW+B8b7W/sTPcXhSf9rp5NR5aDtQllwbB5elOQ==", + "type": "package", + "path": "system.runtime.caching/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Runtime.Caching.targets", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net462/_._", + "lib/net6.0/System.Runtime.Caching.dll", + "lib/net6.0/System.Runtime.Caching.xml", + "lib/net7.0/System.Runtime.Caching.dll", + "lib/net7.0/System.Runtime.Caching.xml", + "lib/net8.0/System.Runtime.Caching.dll", + "lib/net8.0/System.Runtime.Caching.xml", + "lib/netstandard2.0/System.Runtime.Caching.dll", + "lib/netstandard2.0/System.Runtime.Caching.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net6.0/System.Runtime.Caching.dll", + "runtimes/win/lib/net6.0/System.Runtime.Caching.xml", + "runtimes/win/lib/net7.0/System.Runtime.Caching.dll", + "runtimes/win/lib/net7.0/System.Runtime.Caching.xml", + "runtimes/win/lib/net8.0/System.Runtime.Caching.dll", + "runtimes/win/lib/net8.0/System.Runtime.Caching.xml", + "system.runtime.caching.8.0.0.nupkg.sha512", + "system.runtime.caching.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Runtime.CompilerServices.Unsafe/4.6.0": { + "sha512": "HxozeSlipUK7dAroTYwIcGwKDeOVpQnJlpVaOkBz7CM4TsE5b/tKlQBZecTjh6FzcSbxndYaxxpsBMz+wMJeyw==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/4.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.4.6.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Security.AccessControl/6.0.0": { + "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "type": "package", + "path": "system.security.accesscontrol/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/net6.0/System.Security.AccessControl.dll", + "lib/net6.0/System.Security.AccessControl.xml", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll", + "runtimes/win/lib/net6.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml", + "system.security.accesscontrol.6.0.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.Cng/4.5.0": { + "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "type": "package", + "path": "system.security.cryptography.cng/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net462/System.Security.Cryptography.Cng.dll", + "lib/net47/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.xml", + "ref/net462/System.Security.Cryptography.Cng.dll", + "ref/net462/System.Security.Cryptography.Cng.xml", + "ref/net47/System.Security.Cryptography.Cng.dll", + "ref/net47/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.cryptography.cng.4.5.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.ProtectedData/8.0.0": { + "sha512": "+TUFINV2q2ifyXauQXRwy4CiBhqvDEDZeVJU7qfxya4aRYOKzVBpN+4acx25VcPB9ywUN6C0n8drWl110PhZEg==", + "type": "package", + "path": "system.security.cryptography.protecteddata/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Security.Cryptography.ProtectedData.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net462/System.Security.Cryptography.ProtectedData.dll", + "lib/net462/System.Security.Cryptography.ProtectedData.xml", + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "lib/net7.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net7.0/System.Security.Cryptography.ProtectedData.xml", + "lib/net8.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net8.0/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "system.security.cryptography.protecteddata.8.0.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Permissions/6.0.0": { + "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "type": "package", + "path": "system.security.permissions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.Permissions.dll", + "lib/net461/System.Security.Permissions.xml", + "lib/net5.0/System.Security.Permissions.dll", + "lib/net5.0/System.Security.Permissions.xml", + "lib/net6.0/System.Security.Permissions.dll", + "lib/net6.0/System.Security.Permissions.xml", + "lib/netcoreapp3.1/System.Security.Permissions.dll", + "lib/netcoreapp3.1/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "runtimes/win/lib/net461/System.Security.Permissions.dll", + "runtimes/win/lib/net461/System.Security.Permissions.xml", + "system.security.permissions.6.0.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.CodePages/5.0.0": { + "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==", + "type": "package", + "path": "system.text.encoding.codepages/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.xml", + "lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "system.text.encoding.codepages.5.0.0.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encodings.Web/4.7.2": { + "sha512": "iTUgB/WtrZ1sWZs84F2hwyQhiRH6QNjQv2DkwrH+WP6RoFga2Q1m3f9/Q7FG8cck8AdHitQkmkXSY8qylcDmuA==", + "type": "package", + "path": "system.text.encodings.web/4.7.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Text.Encodings.Web.dll", + "lib/net461/System.Text.Encodings.Web.xml", + "lib/netstandard1.0/System.Text.Encodings.Web.dll", + "lib/netstandard1.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.1/System.Text.Encodings.Web.dll", + "lib/netstandard2.1/System.Text.Encodings.Web.xml", + "system.text.encodings.web.4.7.2.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Json/4.7.2": { + "sha512": "TcMd95wcrubm9nHvJEQs70rC0H/8omiSGGpU4FQ/ZA1URIqD4pjmFJh2Mfv1yH1eHgJDWTi2hMDXwTET+zOOyg==", + "type": "package", + "path": "system.text.json/4.7.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Text.Json.dll", + "lib/net461/System.Text.Json.xml", + "lib/netcoreapp3.0/System.Text.Json.dll", + "lib/netcoreapp3.0/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.4.7.2.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.RegularExpressions/4.3.1": { + "sha512": "N0kNRrWe4+nXOWlpLT4LAY5brb8caNFlUuIRpraCVMDLYutKkol1aV079rQjLuSxKMJT2SpBQsYX9xbcTMmzwg==", + "type": "package", + "path": "system.text.regularexpressions/4.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.3.1.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Threading.Tasks.Extensions.dll", + "lib/net461/System.Threading.Tasks.Extensions.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netcoreapp2.1/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Windows.Extensions/6.0.0": { + "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "type": "package", + "path": "system.windows.extensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/System.Windows.Extensions.dll", + "lib/net6.0/System.Windows.Extensions.xml", + "lib/netcoreapp3.1/System.Windows.Extensions.dll", + "lib/netcoreapp3.1/System.Windows.Extensions.xml", + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net6.0/System.Windows.Extensions.xml", + "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll", + "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml", + "system.windows.extensions.6.0.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt" + ] + } + }, + "projectFileDependencyGroups": { + "net8.0": [ + "Autofac >= 8.1.1", + "Autofac.Extensions.DependencyInjection >= 10.0.0", + "Microsoft.NET.ILLink.Tasks >= 8.0.10", + "Newtonsoft.Json >= 13.0.3", + "SqlSugarCore >= 5.1.4.170" + ] + }, + "packageFolders": { + "C:\\Users\\icewi\\.nuget\\packages\\": {}, + "D:\\Microsoft\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\AndriodProject\\2024_11_JinWang_lengDong\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj", + "projectName": "WmsMobileServe", + "projectPath": "F:\\AndriodProject\\2024_11_JinWang_lengDong\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj", + "packagesPath": "C:\\Users\\icewi\\.nuget\\packages\\", + "outputPath": "F:\\AndriodProject\\2024_11_JinWang_lengDong\\WmsMobileServe\\WmsMobileServe\\obj\\publish\\win-x64\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Microsoft\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\icewi\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {}, + "https://nuget.cdn.azure.cn/v3/index.json": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Autofac": { + "target": "Package", + "version": "[8.1.1, )" + }, + "Autofac.Extensions.DependencyInjection": { + "target": "Package", + "version": "[10.0.0, )" + }, + "Microsoft.NET.ILLink.Tasks": { + "suppressParent": "All", + "target": "Package", + "version": "[8.0.10, )", + "autoReferenced": true + }, + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.3, )" + }, + "SqlSugarCore": { + "target": "Package", + "version": "[5.1.4.170, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Runtime.win-x64", + "version": "[8.0.10, 8.0.10]" + }, + { + "name": "Microsoft.NETCore.App.Runtime.win-x64", + "version": "[8.0.10, 8.0.10]" + }, + { + "name": "Microsoft.WindowsDesktop.App.Runtime.win-x64", + "version": "[8.0.10, 8.0.10]" + } + ], + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json" + } + }, + "runtimes": { + "win-x64": { + "#import": [] + } + } + } +} \ No newline at end of file diff --git a/WmsMobileServe/obj/publish/win-x64/project.nuget.cache b/WmsMobileServe/obj/publish/win-x64/project.nuget.cache new file mode 100644 index 0000000..cb8f1b6 --- /dev/null +++ b/WmsMobileServe/obj/publish/win-x64/project.nuget.cache @@ -0,0 +1,96 @@ +{ + "version": 2, + "dgSpecHash": "UWQom+UNvUE=", + "success": true, + "projectFilePath": "F:\\AndriodProject\\2024_11_JinWang_lengDong\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj", + "expectedPackageFiles": [ + "C:\\Users\\icewi\\.nuget\\packages\\autofac\\8.1.1\\autofac.8.1.1.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\autofac.extensions.dependencyinjection\\10.0.0\\autofac.extensions.dependencyinjection.10.0.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\azure.core\\1.38.0\\azure.core.1.38.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\azure.identity\\1.11.4\\azure.identity.1.11.4.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\1.1.1\\microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.data.sqlclient\\5.2.2\\microsoft.data.sqlclient.5.2.2.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\5.2.0\\microsoft.data.sqlclient.sni.runtime.5.2.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.data.sqlite\\8.0.1\\microsoft.data.sqlite.8.0.1.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.data.sqlite.core\\8.0.1\\microsoft.data.sqlite.core.8.0.1.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.1\\microsoft.extensions.dependencyinjection.abstractions.8.0.1.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.identity.client\\4.61.3\\microsoft.identity.client.4.61.3.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.identity.client.extensions.msal\\4.61.3\\microsoft.identity.client.extensions.msal.4.61.3.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.identitymodel.abstractions\\6.35.0\\microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.35.0\\microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.identitymodel.logging\\6.35.0\\microsoft.identitymodel.logging.6.35.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.35.0\\microsoft.identitymodel.protocols.6.35.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.35.0\\microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.35.0\\microsoft.identitymodel.tokens.6.35.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.net.illink.tasks\\8.0.10\\microsoft.net.illink.tasks.8.0.10.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.netcore.targets\\1.1.3\\microsoft.netcore.targets.1.1.3.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.sqlserver.server\\1.0.0\\microsoft.sqlserver.server.1.0.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\mysqlconnector\\2.2.5\\mysqlconnector.2.2.5.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\npgsql\\5.0.18\\npgsql.5.0.18.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\oracle.manageddataaccess.core\\3.21.100\\oracle.manageddataaccess.core.3.21.100.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\oscar.data.sqlclient\\4.0.4\\oscar.data.sqlclient.4.0.4.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\runtime.any.system.collections\\4.3.0\\runtime.any.system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\runtime.any.system.globalization\\4.3.0\\runtime.any.system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\runtime.any.system.io\\4.3.0\\runtime.any.system.io.4.3.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\runtime.any.system.reflection\\4.3.0\\runtime.any.system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\runtime.any.system.reflection.primitives\\4.3.0\\runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\runtime.any.system.resources.resourcemanager\\4.3.0\\runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\runtime.any.system.runtime\\4.3.0\\runtime.any.system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\runtime.any.system.text.encoding\\4.3.0\\runtime.any.system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\runtime.any.system.threading.tasks\\4.3.0\\runtime.any.system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\runtime.win.system.runtime.extensions\\4.3.0\\runtime.win.system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\sqlitepclraw.bundle_e_sqlite3\\2.1.6\\sqlitepclraw.bundle_e_sqlite3.2.1.6.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\sqlitepclraw.core\\2.1.6\\sqlitepclraw.core.2.1.6.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3\\2.1.6\\sqlitepclraw.lib.e_sqlite3.2.1.6.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\sqlitepclraw.provider.e_sqlite3\\2.1.6\\sqlitepclraw.provider.e_sqlite3.2.1.6.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\sqlsugarcore\\5.1.4.170\\sqlsugarcore.5.1.4.170.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\sqlsugarcore.dm\\8.6.0\\sqlsugarcore.dm.8.6.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\sqlsugarcore.kdbndp\\9.3.6.925\\sqlsugarcore.kdbndp.9.3.6.925.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.clientmodel\\1.0.0\\system.clientmodel.1.0.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.configuration.configurationmanager\\8.0.0\\system.configuration.configurationmanager.8.0.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.data.common\\4.3.0\\system.data.common.4.3.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.diagnostics.diagnosticsource\\8.0.1\\system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.diagnostics.eventlog\\8.0.0\\system.diagnostics.eventlog.8.0.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.diagnostics.performancecounter\\6.0.1\\system.diagnostics.performancecounter.6.0.1.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.directoryservices\\6.0.1\\system.directoryservices.6.0.1.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.directoryservices.protocols\\6.0.1\\system.directoryservices.protocols.6.0.1.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.35.0\\system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.memory.data\\1.0.2\\system.memory.data.1.0.2.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.private.uri\\4.3.0\\system.private.uri.4.3.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.runtime\\4.3.1\\system.runtime.4.3.1.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.runtime.caching\\8.0.0\\system.runtime.caching.8.0.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\4.6.0\\system.runtime.compilerservices.unsafe.4.6.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.security.cryptography.protecteddata\\8.0.0\\system.security.cryptography.protecteddata.8.0.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.text.encoding.codepages\\5.0.0\\system.text.encoding.codepages.5.0.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.text.encodings.web\\4.7.2\\system.text.encodings.web.4.7.2.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.text.json\\4.7.2\\system.text.json.4.7.2.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.text.regularexpressions\\4.3.1\\system.text.regularexpressions.4.3.1.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.netcore.app.runtime.win-x64\\8.0.10\\microsoft.netcore.app.runtime.win-x64.8.0.10.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.windowsdesktop.app.runtime.win-x64\\8.0.10\\microsoft.windowsdesktop.app.runtime.win-x64.8.0.10.nupkg.sha512", + "C:\\Users\\icewi\\.nuget\\packages\\microsoft.aspnetcore.app.runtime.win-x64\\8.0.10\\microsoft.aspnetcore.app.runtime.win-x64.8.0.10.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/WmsMobileServe/obj/rider.project.model.nuget.info b/WmsMobileServe/obj/rider.project.model.nuget.info new file mode 100644 index 0000000..00b918d --- /dev/null +++ b/WmsMobileServe/obj/rider.project.model.nuget.info @@ -0,0 +1 @@ +17361426948459962 \ No newline at end of file diff --git a/WmsMobileServe/obj/rider.project.restore.info b/WmsMobileServe/obj/rider.project.restore.info new file mode 100644 index 0000000..81708ab --- /dev/null +++ b/WmsMobileServe/obj/rider.project.restore.info @@ -0,0 +1 @@ +17363218054602730 \ No newline at end of file