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/ApiServe/Mobile/Controllers/StockInController.cs b/WmsMobileServe/ApiServe/Mobile/Controllers/StockInController.cs index 1bc3b6d..024d198 100644 --- a/WmsMobileServe/ApiServe/Mobile/Controllers/StockInController.cs +++ b/WmsMobileServe/ApiServe/Mobile/Controllers/StockInController.cs @@ -20,6 +20,8 @@ public class StockInController(StockInService stockInService) : ControllerBase /// [HttpGet("test")] public string ApiTest() => "OK"; + + /************************************* 单机入库流程相关 ********************************************/ /// /// 空箱入库接口 @@ -28,32 +30,57 @@ public class StockInController(StockInService stockInService) : ControllerBase /// [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); - // --------------------- 冷冻仓 - /// - /// 获取可用的物料 - /// - /// - /// - [HttpPost("getCanUseGoods")] - public MobileApiResponse GetCanUseGoods([FromBody] GetCanUseGoodsRequest request) => stockInService.GetCanUseGoods(request); - - // ------------------- 冷冻仓 - /// - /// 码盘入库 - /// - /// - [HttpPost("bindingVehicleIn")] - public MobileApiResponse BindingVehicleIn([FromBody] BindingVehicleInRequest request) => stockInService.BindingVehicleIn(request); + + @@ -66,12 +93,7 @@ public class StockInController(StockInService stockInService) : ControllerBase [HttpPost("bindingVehicleInMes")] public MobileApiResponse BindingVehicleInMes([FromBody] BindingVehicleInReq request) => stockInService.BindingVehicleInMes(request); - /// - /// 获取EBS码盘信息 - /// - /// - [HttpGet("getCuxData")] - public MobileApiResponse> GetCuxData() => stockInService.GetCuxData(); + /// diff --git a/WmsMobileServe/ApiServe/Mobile/Service/StockInService.cs b/WmsMobileServe/ApiServe/Mobile/Service/StockInService.cs index a70d618..e373ce8 100644 --- a/WmsMobileServe/ApiServe/Mobile/Service/StockInService.cs +++ b/WmsMobileServe/ApiServe/Mobile/Service/StockInService.cs @@ -138,22 +138,21 @@ public class StockInService(MesApiClient mesApiClient, TOnGoodsShelfDao onGoodsS /// /// /// - public MobileApiResponse GetCanUseGoods(GetCanUseGoodsRequest request) + public MobileApiResponse GetCanUseGoods(GetCanUseGoodsRequest request) { if (string.IsNullOrEmpty(request.OrderId) || string.IsNullOrEmpty(request.GoodsId) || !request.GoodsId.IsNumber()) - return MobileApiResponse.Fail("传入的参数不正确"); - List? wareNoticeTabs = wareNoticeTabDao.SelectWithOrderIdAndGoodsId(request.OrderId, request.GoodsId); - if(wareNoticeTabs == default) return MobileApiResponse.Fail("数据服务异常,请稍后再试"); - if(wareNoticeTabs.Count < 1) return MobileApiResponse.Fail("该入库单行和物料无入库单数据"); + 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.PrintSts == "0") return MobileApiResponse.Success("查询成功", cus); + if(cus.Quantity - cus.QuantityReceives > 0) return MobileApiResponse.Success("查询成功", cus); } - return MobileApiResponse.Fail("无可入库的数量或数量不足,请检查采购单可入库数量"); + return MobileApiResponse.Fail("无可入库的数量或数量不足,请检查采购单可入库数量"); } - - // -------------------- 冷冻仓 + /// /// 码盘入库 /// @@ -206,9 +205,9 @@ public class StockInService(MesApiClient mesApiClient, TOnGoodsShelfDao onGoodsS }; onGoodsShelfs.Add(onGoodsShelf); } - bool createTask = wareNoticeTabDao.UpdateStatusAndInsertInTask("1", onGoodsShelfs, request.VehicleNo); - //var insertResult = onGoodsShelfDao.Insert([.. onGoodsShelfs]); - if (createTask) return MobileApiResponse.Success(string.Format("空载具:{0} 产生入库任务成功", request.VehicleNo)); + //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)); } @@ -224,15 +223,15 @@ public class StockInService(MesApiClient mesApiClient, TOnGoodsShelfDao onGoodsS /// public MobileApiResponse BindingVehicleInMes(BindingVehicleInReq request) { - if (string.IsNullOrEmpty(request.VehicleNo) || request.BindingGoodsDetails == default) return MobileApiResponse.Fail("传入的数据无法识别"); + 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 == default) return MobileApiResponse.Fail("数据服务异常,请稍后再试"); + 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 == default) return MobileApiResponse.Fail("数据服务异常,请稍后再试"); + if (stocks == null) return MobileApiResponse.Fail("数据服务异常,请稍后再试"); if (stocks.Count > 0) return MobileApiResponse.Fail(string.Format("该载具号:{0} 仍在库中,请核实后再试", request.VehicleNo)); /* 构建入库任务 */ List onGoodsShelves = []; // 需要入库的任务 @@ -294,15 +293,15 @@ public class StockInService(MesApiClient mesApiClient, TOnGoodsShelfDao onGoodsS /// public MobileApiResponse BindingVehicleInEbsOld(BindingVehicleInEbsOldReq request) { - if (string.IsNullOrEmpty(request.VehicleNo) || request.BindingGoodsDetails == default) return MobileApiResponse.Fail("传入的数据无法识别"); + 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 == default) return MobileApiResponse.Fail("数据服务异常,请稍后再试"); + 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 == default) return MobileApiResponse.Fail("数据服务异常,请稍后再试"); + if (stocks == null) return MobileApiResponse.Fail("数据服务异常,请稍后再试"); if (stocks.Count > 0) return MobileApiResponse.Fail(string.Format("该载具号:{0} 仍在库中,请核实后再试", request.VehicleNo)); /* 构建入库任务 */ List onGoodsShelves = []; // 需要入库的任务 diff --git a/WmsMobileServe/ApiServe/Mobile/Vo/CuxWmsPoLinesItfView.cs b/WmsMobileServe/ApiServe/Mobile/Vo/CuxWmsPoLinesItfView.cs index a021e83..d2158ae 100644 --- a/WmsMobileServe/ApiServe/Mobile/Vo/CuxWmsPoLinesItfView.cs +++ b/WmsMobileServe/ApiServe/Mobile/Vo/CuxWmsPoLinesItfView.cs @@ -37,12 +37,7 @@ public class CuxWmsPoLinesItfView /// [SugarColumn(ColumnName = "SHIP_TO_ORGANIZATION_CODE")] [JsonPropertyName("shipToOrganization")] - public string? ShipToOrganization - { - get; set; - - - } + public string? ShipToOrganization { get; set;} /// /// 订单行号 diff --git a/WmsMobileServe/DataBase/Base/Dao/CuxWmsPoLinesItfDao.cs b/WmsMobileServe/DataBase/Base/Dao/CuxWmsPoLinesItfDao.cs index 8e331c0..4399919 100644 --- a/WmsMobileServe/DataBase/Base/Dao/CuxWmsPoLinesItfDao.cs +++ b/WmsMobileServe/DataBase/Base/Dao/CuxWmsPoLinesItfDao.cs @@ -66,11 +66,6 @@ public class CuxWmsPoLinesItfDao(DataBaseClient client) { try { - //var sqlFuc = client.Instance().Queryable() - // .Where(w => w.Segment1 == orderId && w.ItemId == goodId && (w.ClosedCode == "OPEN" || w.ClosedCode == "CLOSED_FOR_INVOICE")); - //return sqlFuc.ToList(); - - 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') @@ -80,7 +75,7 @@ RIGHT JOIN CUX_WMS_PO_HEADES_ITF_ZH b ON a.PO_HEADER_ID = b.PO_HEADER_ID WHERE a catch (Exception ex) { _ = ex; - return default; + return null; } } diff --git a/WmsMobileServe/DataBase/Base/DataBaseClient.cs b/WmsMobileServe/DataBase/Base/DataBaseClient.cs index cc0dd8f..7f5b7ae 100644 --- a/WmsMobileServe/DataBase/Base/DataBaseClient.cs +++ b/WmsMobileServe/DataBase/Base/DataBaseClient.cs @@ -19,8 +19,14 @@ public class DataBaseClient 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_RF;Password=Q12.U. -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 +// This code was generated by a tool. // -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. // //------------------------------------------------------------------------------ @@ -14,7 +13,7 @@ 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+94c54b82555445843d22ac8de595acdd22fbf676")] +[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")] diff --git a/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.AssemblyInfoInputs.cache b/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.AssemblyInfoInputs.cache index 30c4059..6d93d51 100644 --- a/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.AssemblyInfoInputs.cache +++ b/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.AssemblyInfoInputs.cache @@ -1 +1 @@ -58f4eac3dae52b7e0c1fbd9876f42dcbd662ed904cd2dcce8ee6f9b9de2e5422 +57b915cc3dd986cb7712cc8a44714d35a1500e18dc27945745e3553dae0fec22 diff --git a/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.GeneratedMSBuildEditorConfig.editorconfig b/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.GeneratedMSBuildEditorConfig.editorconfig index 321f5c0..32e481a 100644 --- a/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.GeneratedMSBuildEditorConfig.editorconfig +++ b/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.GeneratedMSBuildEditorConfig.editorconfig @@ -13,11 +13,11 @@ 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.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_lengDong\WmsMobileServe\WmsMobileServe +build_property.MSBuildProjectDirectory = F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe build_property._RazorSourceGeneratorDebug = diff --git a/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.assets.cache b/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.assets.cache index 0de763a..1d75699 100644 Binary files a/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.assets.cache and b/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.assets.cache differ diff --git a/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.csproj.FileListAbsolute.txt b/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.csproj.FileListAbsolute.txt index 2be595b..d733338 100644 --- a/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.csproj.FileListAbsolute.txt +++ b/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.csproj.FileListAbsolute.txt @@ -226,3 +226,117 @@ F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Deb 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 index 15278ce..8318f76 100644 Binary files a/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.dll 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 index 23646e7..96faa03 100644 --- a/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.genruntimeconfig.cache +++ b/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.genruntimeconfig.cache @@ -1 +1 @@ -1df9b4acfd4419218b21debad6593d30aa3be018074a2232e1230d5f5080010a +ea4146c0425584f0aac77d16435fcf84ce8cc24d8b36018af67282d71b9a8c6b diff --git a/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.pdb b/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.pdb index 811de20..89d097f 100644 Binary files a/WmsMobileServe/obj/Debug/net8.0/WmsMobileServe.pdb 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 index 99072c6..dc8998b 100644 Binary files a/WmsMobileServe/obj/Debug/net8.0/apphost.exe 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 index 934350d..96cd5be 100644 Binary files a/WmsMobileServe/obj/Debug/net8.0/ref/WmsMobileServe.dll 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 index 934350d..96cd5be 100644 Binary files a/WmsMobileServe/obj/Debug/net8.0/refint/WmsMobileServe.dll and b/WmsMobileServe/obj/Debug/net8.0/refint/WmsMobileServe.dll differ 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/WmsMobileServe.AssemblyInfo.cs b/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.AssemblyInfo.cs index c3aa08b..b73003a 100644 --- a/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.AssemblyInfo.cs +++ b/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.AssemblyInfo.cs @@ -1,10 +1,9 @@ //------------------------------------------------------------------------------ // -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 +// This code was generated by a tool. // -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. // //------------------------------------------------------------------------------ @@ -14,7 +13,7 @@ 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+94c54b82555445843d22ac8de595acdd22fbf676")] +[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")] diff --git a/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.AssemblyInfoInputs.cache b/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.AssemblyInfoInputs.cache index 4af9cc0..71754f8 100644 --- a/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.AssemblyInfoInputs.cache +++ b/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.AssemblyInfoInputs.cache @@ -1 +1 @@ -23cb11e5adc75462b07265dba4fe3529aa3b73decc7f47ec62d3ecb1eef453bc +7612ee502144279321ac41faf810fc219847daadcbfda97da9631a2ea429bfdb diff --git a/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.GeneratedMSBuildEditorConfig.editorconfig b/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.GeneratedMSBuildEditorConfig.editorconfig index d8c1ec5..321f5c0 100644 --- a/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.GeneratedMSBuildEditorConfig.editorconfig +++ b/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.GeneratedMSBuildEditorConfig.editorconfig @@ -1,4 +1,8 @@ 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 diff --git a/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.assets.cache b/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.assets.cache index a53e7d8..7f198ee 100644 Binary files a/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.assets.cache and b/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.assets.cache differ diff --git a/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.dll b/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.dll index e2b6a22..5de740e 100644 Binary files a/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.dll and b/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.dll differ diff --git a/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.pdb b/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.pdb index 64c61b5..fc42fba 100644 Binary files a/WmsMobileServe/obj/Release/net8.0/WmsMobileServe.pdb 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 index a53a198..dc8998b 100644 Binary files a/WmsMobileServe/obj/Release/net8.0/apphost.exe 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 index a10e066..48b8651 100644 Binary files a/WmsMobileServe/obj/Release/net8.0/ref/WmsMobileServe.dll 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 index a10e066..48b8651 100644 Binary files a/WmsMobileServe/obj/Release/net8.0/refint/WmsMobileServe.dll and b/WmsMobileServe/obj/Release/net8.0/refint/WmsMobileServe.dll differ 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/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/WmsMobileServe.AssemblyInfo.cs b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.AssemblyInfo.cs index c3aa08b..b73003a 100644 --- a/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.AssemblyInfo.cs +++ b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.AssemblyInfo.cs @@ -1,10 +1,9 @@ //------------------------------------------------------------------------------ // -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 +// This code was generated by a tool. // -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. // //------------------------------------------------------------------------------ @@ -14,7 +13,7 @@ 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+94c54b82555445843d22ac8de595acdd22fbf676")] +[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")] diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.AssemblyInfoInputs.cache b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.AssemblyInfoInputs.cache index 4af9cc0..71754f8 100644 --- a/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.AssemblyInfoInputs.cache +++ b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.AssemblyInfoInputs.cache @@ -1 +1 @@ -23cb11e5adc75462b07265dba4fe3529aa3b73decc7f47ec62d3ecb1eef453bc +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 index 3babb7b..6346ac9 100644 --- a/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.GeneratedMSBuildEditorConfig.editorconfig +++ b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.GeneratedMSBuildEditorConfig.editorconfig @@ -13,11 +13,11 @@ 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.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_lengDong\WmsMobileServe\WmsMobileServe +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.assets.cache b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.assets.cache index fa43cfd..f27d6ba 100644 Binary files a/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.assets.cache 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.FileListAbsolute.txt b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.csproj.FileListAbsolute.txt index 989561a..44e2122 100644 --- a/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.csproj.FileListAbsolute.txt +++ b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.csproj.FileListAbsolute.txt @@ -802,3 +802,405 @@ F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Rel 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.dll b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.dll index 95010fb..a025750 100644 Binary files a/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.dll 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 index af3c034..7f7c531 100644 --- a/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.genbundle.cache +++ b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.genbundle.cache @@ -1 +1 @@ -450a5dbdf43f0b8ae5f53519df373f75df4a31e3980a0d873b8f7505334018a2 +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 index 3b83b04..44d646b 100644 --- a/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.genpublishdeps.cache +++ b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.genpublishdeps.cache @@ -1 +1 @@ -dd2ebde69c43b58c2f3017d46d534c7974795299e634fd90d3f928604a927cd0 +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 index dff8f64..dc71b04 100644 --- a/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.genruntimeconfig.cache +++ b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.genruntimeconfig.cache @@ -1 +1 @@ -4c034518e2ddeb65f5ca3c4e4a10c620496af2bc710b5593f599885ce40bec1b +698cfa7a294c9e39fb0f63f8e35bf542113d670d97fdc0eb62419c1a899d96d4 diff --git a/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.pdb b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.pdb index 41161ac..5c9a313 100644 Binary files a/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.pdb and b/WmsMobileServe/obj/Release/net8.0/win-x64/WmsMobileServe.pdb 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 index fb18c61..68fca79 100644 Binary files a/WmsMobileServe/obj/Release/net8.0/win-x64/ref/WmsMobileServe.dll 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 index fb18c61..68fca79 100644 Binary files a/WmsMobileServe/obj/Release/net8.0/win-x64/refint/WmsMobileServe.dll 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 index bf2c57c..8406fd3 100644 Binary files a/WmsMobileServe/obj/Release/net8.0/win-x64/singlefilehost.exe and b/WmsMobileServe/obj/Release/net8.0/win-x64/singlefilehost.exe differ diff --git a/WmsMobileServe/obj/WmsMobileServe.csproj.nuget.dgspec.json b/WmsMobileServe/obj/WmsMobileServe.csproj.nuget.dgspec.json index a54f707..229ac5e 100644 --- a/WmsMobileServe/obj/WmsMobileServe.csproj.nuget.dgspec.json +++ b/WmsMobileServe/obj/WmsMobileServe.csproj.nuget.dgspec.json @@ -1,17 +1,17 @@ { "format": 1, "restore": { - "F:\\AndriodProject\\2024_11_JinWang_lengDong\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj": {} + "F:\\AndriodProject\\2024_11_JinWang_BanCai\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj": {} }, "projects": { - "F:\\AndriodProject\\2024_11_JinWang_lengDong\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj": { + "F:\\AndriodProject\\2024_11_JinWang_BanCai\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "F:\\AndriodProject\\2024_11_JinWang_lengDong\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj", + "projectUniqueName": "F:\\AndriodProject\\2024_11_JinWang_BanCai\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj", "projectName": "WmsMobileServe", - "projectPath": "F:\\AndriodProject\\2024_11_JinWang_lengDong\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj", + "projectPath": "F:\\AndriodProject\\2024_11_JinWang_BanCai\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj", "packagesPath": "C:\\Users\\icewi\\.nuget\\packages\\", - "outputPath": "F:\\AndriodProject\\2024_11_JinWang_lengDong\\WmsMobileServe\\WmsMobileServe\\obj\\", + "outputPath": "F:\\AndriodProject\\2024_11_JinWang_BanCai\\WmsMobileServe\\WmsMobileServe\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "D:\\Microsoft\\Microsoft Visual Studio\\Shared\\NuGetPackages" diff --git a/WmsMobileServe/obj/project.assets.json b/WmsMobileServe/obj/project.assets.json index 351ecc4..21f825e 100644 --- a/WmsMobileServe/obj/project.assets.json +++ b/WmsMobileServe/obj/project.assets.json @@ -5386,11 +5386,11 @@ "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "F:\\AndriodProject\\2024_11_JinWang_lengDong\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj", + "projectUniqueName": "F:\\AndriodProject\\2024_11_JinWang_BanCai\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj", "projectName": "WmsMobileServe", - "projectPath": "F:\\AndriodProject\\2024_11_JinWang_lengDong\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj", + "projectPath": "F:\\AndriodProject\\2024_11_JinWang_BanCai\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj", "packagesPath": "C:\\Users\\icewi\\.nuget\\packages\\", - "outputPath": "F:\\AndriodProject\\2024_11_JinWang_lengDong\\WmsMobileServe\\WmsMobileServe\\obj\\", + "outputPath": "F:\\AndriodProject\\2024_11_JinWang_BanCai\\WmsMobileServe\\WmsMobileServe\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "D:\\Microsoft\\Microsoft Visual Studio\\Shared\\NuGetPackages" diff --git a/WmsMobileServe/obj/project.nuget.cache b/WmsMobileServe/obj/project.nuget.cache index ef2c864..0109629 100644 --- a/WmsMobileServe/obj/project.nuget.cache +++ b/WmsMobileServe/obj/project.nuget.cache @@ -1,8 +1,8 @@ { "version": 2, - "dgSpecHash": "pZKdSN5ZD1k=", + "dgSpecHash": "6z3DPxQUbgY=", "success": true, - "projectFilePath": "F:\\AndriodProject\\2024_11_JinWang_lengDong\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj", + "projectFilePath": "F:\\AndriodProject\\2024_11_JinWang_BanCai\\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", diff --git a/WmsMobileServe/obj/project.packagespec.json b/WmsMobileServe/obj/project.packagespec.json index 6a2173b..f7174c3 100644 --- a/WmsMobileServe/obj/project.packagespec.json +++ b/WmsMobileServe/obj/project.packagespec.json @@ -1 +1 @@ -"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","outputPath":"F:\\AndriodProject\\2024_11_JinWang_lengDong\\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 +"restore":{"projectUniqueName":"F:\\AndriodProject\\2024_11_JinWang_BanCai\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj","projectName":"WmsMobileServe","projectPath":"F:\\AndriodProject\\2024_11_JinWang_BanCai\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj","outputPath":"F:\\AndriodProject\\2024_11_JinWang_BanCai\\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/rider.project.model.nuget.info b/WmsMobileServe/obj/rider.project.model.nuget.info index a9716ca..00b918d 100644 --- a/WmsMobileServe/obj/rider.project.model.nuget.info +++ b/WmsMobileServe/obj/rider.project.model.nuget.info @@ -1 +1 @@ -17355203247492567 \ No newline at end of file +17361426948459962 \ No newline at end of file diff --git a/WmsMobileServe/obj/rider.project.restore.info b/WmsMobileServe/obj/rider.project.restore.info index ce14051..6fca429 100644 --- a/WmsMobileServe/obj/rider.project.restore.info +++ b/WmsMobileServe/obj/rider.project.restore.info @@ -1 +1 @@ -17355200402884727 \ No newline at end of file +17361262063448236 \ No newline at end of file