Compare commits
4 Commits
98d129582d
...
c26278f21e
| Author | SHA1 | Date | |
|---|---|---|---|
| c26278f21e | |||
| a6c0441e76 | |||
| b625cd37dc | |||
| 92bbc387a8 |
|
|
@ -1,4 +1,6 @@
|
||||||
using Microsoft.IdentityModel.Tokens;
|
using System.Net;
|
||||||
|
using System.Text;
|
||||||
|
using Microsoft.IdentityModel.Tokens;
|
||||||
using WmsMobileServe.Annotation;
|
using WmsMobileServe.Annotation;
|
||||||
using WmsMobileServe.Utils.HttpUtils;
|
using WmsMobileServe.Utils.HttpUtils;
|
||||||
using WmsMobileServe.Utils.HttpUtils.Entity;
|
using WmsMobileServe.Utils.HttpUtils.Entity;
|
||||||
|
|
@ -13,7 +15,7 @@ public class MesApiClient : WebApiClient
|
||||||
{
|
{
|
||||||
public MesApiClient()
|
public MesApiClient()
|
||||||
{
|
{
|
||||||
SetBaseUrl("http://ip:port");
|
SetBaseUrl("http://10.50.220.1:8099");
|
||||||
SetResponseAction(ApiClientResponseEvent.ApiResponse);
|
SetResponseAction(ApiClientResponseEvent.ApiResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -32,6 +34,69 @@ public class MesApiClient : WebApiClient
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
private readonly HttpClient _httpClient;
|
||||||
|
private readonly string _baseUrl;
|
||||||
|
|
||||||
|
public MesApiClient(string baseUrl)
|
||||||
|
{
|
||||||
|
_baseUrl = baseUrl.TrimEnd('/');
|
||||||
|
_httpClient = new HttpClient
|
||||||
|
{
|
||||||
|
Timeout = TimeSpan.FromSeconds(30)
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task<ApiResponseInfo> HttpGetAsync(Dictionary<string, object> parameters, string apiPath)
|
||||||
|
{
|
||||||
|
var responseInfo = new ApiResponseInfo
|
||||||
|
{
|
||||||
|
RequestTime = DateTime.Now,
|
||||||
|
RequestMethod = "GET"
|
||||||
|
};
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
// 构建查询字符串
|
||||||
|
var queryString = new StringBuilder();
|
||||||
|
foreach (var param in parameters)
|
||||||
|
{
|
||||||
|
if (queryString.Length > 0)
|
||||||
|
queryString.Append('&');
|
||||||
|
|
||||||
|
queryString.Append($"{WebUtility.UrlEncode(param.Key)}={WebUtility.UrlEncode(param.Value?.ToString() ?? "")}");
|
||||||
|
}
|
||||||
|
|
||||||
|
// 构建完整URL
|
||||||
|
var requestUrl = $"{_baseUrl}{apiPath}?{queryString}";
|
||||||
|
responseInfo.RequestUrl = requestUrl;
|
||||||
|
responseInfo.RequestMsg = queryString.ToString();
|
||||||
|
|
||||||
|
// 发送请求
|
||||||
|
var response = await _httpClient.GetAsync(requestUrl);
|
||||||
|
var responseContent = await response.Content.ReadAsStringAsync();
|
||||||
|
|
||||||
|
responseInfo.ResponseTime = DateTime.Now;
|
||||||
|
responseInfo.ResponseMsg = responseContent;
|
||||||
|
responseInfo.IsSend = response.IsSuccessStatusCode;
|
||||||
|
responseInfo.UseTime = (responseInfo.ResponseTime - responseInfo.RequestTime).Value.TotalMilliseconds;
|
||||||
|
|
||||||
|
if (!response.IsSuccessStatusCode)
|
||||||
|
{
|
||||||
|
responseInfo.Exception = new HttpRequestException($"HTTP请求失败,状态码: {response.StatusCode}");
|
||||||
|
}
|
||||||
|
|
||||||
|
return responseInfo;
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
responseInfo.ResponseTime = DateTime.Now;
|
||||||
|
responseInfo.IsSend = false;
|
||||||
|
responseInfo.Exception = ex;
|
||||||
|
responseInfo.UseTime = (responseInfo.ResponseTime - responseInfo.RequestTime).Value.TotalMilliseconds;
|
||||||
|
return responseInfo;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -61,8 +61,6 @@ public class StockInController(StockInService stockInService) : ControllerBase
|
||||||
|
|
||||||
/************************************* MES入库相关 *************************************************/
|
/************************************* MES入库相关 *************************************************/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 传入箱号获取箱号详细信息
|
/// 传入箱号获取箱号详细信息
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,19 @@
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using WmsMobileServe.ApiServe.Mobile.Service;
|
||||||
|
using WmsMobileServe.ApiServe.Mobile.Vo;
|
||||||
|
|
||||||
|
namespace WmsMobileServe.ApiServe.Mobile.Controllers;
|
||||||
|
|
||||||
|
|
||||||
|
[Route("api/mobile/stockOut")]
|
||||||
|
[ApiController]
|
||||||
|
public class StockOutController(StockOutService stockOutService) : ControllerBase
|
||||||
|
{
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 出一个空托
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
[HttpPost("outEmptyVehicle")]
|
||||||
|
public MobileApiResponse OutEmptyVehicle() => stockOutService.OutEmptyVehicle();
|
||||||
|
}
|
||||||
|
|
@ -22,14 +22,25 @@ public class BindingVehicleInReq
|
||||||
/// 1 -- 直接入库
|
/// 1 -- 直接入库
|
||||||
/// 2 -- 去往站台
|
/// 2 -- 去往站台
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
[JsonPropertyName("taskType")]
|
[JsonPropertyName("inArea")]
|
||||||
public int? TaskType { get; set; }
|
public string? InArea { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 子库编号
|
||||||
|
/// </summary>
|
||||||
|
[JsonPropertyName("minorWarehouseId")]
|
||||||
|
public string? MinorWarehouseId { get; set;}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 绑定的物料
|
/// 绑定的物料
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("bindingGoods")]
|
[JsonPropertyName("bindingGoods")]
|
||||||
public List<BindingGoodsDetails>? BindingGoodsDetails { get; set; }
|
public List<BindingGoodsDetails>? BindingGoodsDetails { get; set; }
|
||||||
|
/// <summary>
|
||||||
|
/// 装箱线口
|
||||||
|
/// </summary>
|
||||||
|
[JsonPropertyName("port")]
|
||||||
|
public string? port { get; set; }
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -48,25 +59,25 @@ public class BindingGoodsDetails
|
||||||
/// 每包数量
|
/// 每包数量
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("numPerBox")]
|
[JsonPropertyName("numPerBox")]
|
||||||
public decimal? NumPerBox { get; set; }
|
public string? NumPerBox { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 包装数量
|
/// 包装数量
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("goodsNum")]
|
[JsonPropertyName("goodsNum")]
|
||||||
public decimal? GoodsNum { get; set; }
|
public string? GoodsNum { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 包数量
|
/// 包数量
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("picketNum")]
|
[JsonPropertyName("picketNum")]
|
||||||
public decimal? PacketNum { get; set; }
|
public string? PacketNum { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 零包数量
|
/// 零包数量
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("otherNum")]
|
[JsonPropertyName("otherNum")]
|
||||||
public decimal? OtherNum { get; set; }
|
public string? OtherNum { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 产品编码
|
/// 产品编码
|
||||||
|
|
@ -109,4 +120,12 @@ public class BindingGoodsDetails
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("goodsDesc")]
|
[JsonPropertyName("goodsDesc")]
|
||||||
public string? GoodsDesc { get; set; }
|
public string? GoodsDesc { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 客户编码
|
||||||
|
/// </summary>
|
||||||
|
[JsonPropertyName("customerId")]
|
||||||
|
public string? CustomerId { get; set; }
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -116,6 +116,12 @@ public class BindingVehicleInRequestBindingGoods
|
||||||
[JsonPropertyName("poLineId")]
|
[JsonPropertyName("poLineId")]
|
||||||
public string? PoLineId { get; set; }
|
public string? PoLineId { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 装箱线口
|
||||||
|
/// </summary>
|
||||||
|
[JsonPropertyName("PORT")]
|
||||||
|
public string? PORT { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 发运行主键
|
/// 发运行主键
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
||||||
|
|
@ -78,4 +78,16 @@ public class GetGoodsDetailResp
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("goodsDesc")]
|
[JsonPropertyName("goodsDesc")]
|
||||||
public string? GoodsDesc { get; set; }
|
public string? GoodsDesc { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 客户编码
|
||||||
|
/// </summary>
|
||||||
|
[JsonPropertyName("customerId")]
|
||||||
|
public string? CustomerId { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 当前工位
|
||||||
|
/// </summary>
|
||||||
|
//[JsonPropertyName("procedure")]
|
||||||
|
//public string? Procedure { get; set; }
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -15,8 +15,9 @@ public class PickService(TPickingGoodsDao pickingGoodsDao)
|
||||||
public MobileApiResponse<List<TPickGoods>> GetPickTask(string? vehicleNo)
|
public MobileApiResponse<List<TPickGoods>> GetPickTask(string? vehicleNo)
|
||||||
{
|
{
|
||||||
if (string.IsNullOrWhiteSpace(vehicleNo)) return MobileApiResponse<List<TPickGoods>>.Fail("请求参数错误");
|
if (string.IsNullOrWhiteSpace(vehicleNo)) return MobileApiResponse<List<TPickGoods>>.Fail("请求参数错误");
|
||||||
List<TPickGoods>? result = pickingGoodsDao.SelectPickTask(vehicleNo);
|
vehicleNo = vehicleNo.Trim();
|
||||||
if(result == default) return MobileApiResponse<List<TPickGoods>>.Fail("数据服务异常");
|
var result = pickingGoodsDao.SelectPickTask(vehicleNo);
|
||||||
|
if(result == null) return MobileApiResponse<List<TPickGoods>>.Fail("数据服务异常");
|
||||||
if(result.Count < 1) return MobileApiResponse<List<TPickGoods>>.Fail("该托盘没有待检货物");
|
if(result.Count < 1) return MobileApiResponse<List<TPickGoods>>.Fail("该托盘没有待检货物");
|
||||||
return MobileApiResponse<List<TPickGoods>>.Success("成功", result);
|
return MobileApiResponse<List<TPickGoods>>.Success("成功", result);
|
||||||
}
|
}
|
||||||
|
|
@ -27,13 +28,13 @@ public class PickService(TPickingGoodsDao pickingGoodsDao)
|
||||||
{
|
{
|
||||||
if (request.Count < 1) return MobileApiResponse.Fail("请求参数错误");
|
if (request.Count < 1) return MobileApiResponse.Fail("请求参数错误");
|
||||||
List<(string? vehicleNo, string? goodsId, decimal? pickingNum)> pickData = [];
|
List<(string? vehicleNo, string? goodsId, decimal? pickingNum)> pickData = [];
|
||||||
foreach (PickCompleteDto pickCompleteDto in request)
|
foreach (var pickCompleteDto in request)
|
||||||
{
|
{
|
||||||
var pickNum = pickCompleteDto.PickingNum;
|
var pickNum = pickCompleteDto.PickingNum;
|
||||||
if(!pickNum.IsNumber()) pickNum = "0";
|
if(!pickNum.IsNumber()) pickNum = "0";
|
||||||
pickData.Add((pickCompleteDto.VehicleNo, pickCompleteDto.GoodsId, Convert.ToDecimal(pickNum)));
|
pickData.Add((pickCompleteDto.VehicleNo, pickCompleteDto.GoodsId, Convert.ToDecimal(pickNum)));
|
||||||
}
|
}
|
||||||
bool updateResult = pickingGoodsDao.PickComplete(pickData);
|
var updateResult = pickingGoodsDao.PickComplete(pickData);
|
||||||
return updateResult ? MobileApiResponse.Success("完成") : MobileApiResponse.Fail("数据服务异常");
|
return updateResult ? MobileApiResponse.Success("完成") : MobileApiResponse.Fail("数据服务异常");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,13 @@
|
||||||
using WmsMobileServe.Annotation;
|
using System.Net;
|
||||||
|
using System.Runtime.CompilerServices;
|
||||||
|
using System.Security.Policy;
|
||||||
|
using System.Text;
|
||||||
|
using Azure;
|
||||||
|
using Azure.Core;
|
||||||
|
using Microsoft.IdentityModel.Tokens;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using Newtonsoft.Json.Linq;
|
||||||
|
using WmsMobileServe.Annotation;
|
||||||
using WmsMobileServe.ApiClient.Mes;
|
using WmsMobileServe.ApiClient.Mes;
|
||||||
using WmsMobileServe.ApiClient.Mes.Dto;
|
using WmsMobileServe.ApiClient.Mes.Dto;
|
||||||
using WmsMobileServe.ApiServe.Mobile.Dto;
|
using WmsMobileServe.ApiServe.Mobile.Dto;
|
||||||
|
|
@ -11,8 +20,7 @@ namespace WmsMobileServe.ApiServe.Mobile.Service;
|
||||||
|
|
||||||
|
|
||||||
[Component]
|
[Component]
|
||||||
public class StockInService(MesApiClient mesApiClient, TOnGoodsShelfDao onGoodsShelfDao, TMiStockDao miStockDao, CuxWmsPoLinesItfDao cuxWmsPoLinesItfDao,
|
public class StockInService(MesApiClient mesApiClient, TOnGoodsShelfDao onGoodsShelfDao,TPickingGoodsDao pickingGoodsDao, TMiStockDao miStockDao, CuxWmsPoLinesItfDao cuxWmsPoLinesItfDao)
|
||||||
TRKWareNOticeTabDao wareNoticeTabDao)
|
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 空载具入库
|
/// 空载具入库
|
||||||
|
|
@ -43,18 +51,18 @@ public class StockInService(MesApiClient mesApiClient, TOnGoodsShelfDao onGoodsS
|
||||||
StockNum = 0,
|
StockNum = 0,
|
||||||
OnDate = DateTime.Now,
|
OnDate = DateTime.Now,
|
||||||
OnShelfUserId = "Mobile_Android",
|
OnShelfUserId = "Mobile_Android",
|
||||||
StorageId = "-",
|
StorageId = "",
|
||||||
StorageAreaId = "-",
|
StorageAreaId = "",
|
||||||
UpGoodsId = UUIDUtils.GetNewUUID2(),
|
UpGoodsId = UUIDUtils.GetNewUUID2(),
|
||||||
GoodsTypeId = "0",
|
GoodsTypeId = "0",
|
||||||
StorageMode = "空托入库",
|
StorageMode = "空托入库",
|
||||||
ProdictionDate = DateTime.Now,
|
ProdictionDate = DateTime.Now,
|
||||||
Ctl = request.VehicleNo,
|
Ctl = request.VehicleNo,
|
||||||
BarCode = "-",
|
BarCode = "",
|
||||||
CustomerId = "景旺",
|
CustomerId = "景旺",
|
||||||
GoodsName = "空载具",
|
GoodsName = "空载具",
|
||||||
Status = "0",
|
Status = "0",
|
||||||
Unit = "-",
|
Unit = "",
|
||||||
TaskType = "1",
|
TaskType = "1",
|
||||||
GoodsMeasureId = UUIDUtils.GetNewUUID2(),
|
GoodsMeasureId = UUIDUtils.GetNewUUID2(),
|
||||||
PackingNum = 1,
|
PackingNum = 1,
|
||||||
|
|
@ -75,60 +83,50 @@ public class StockInService(MesApiClient mesApiClient, TOnGoodsShelfDao onGoodsS
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public MobileApiResponse<GetGoodsDetailResp> GetGoodsDetail(string? boxNo)
|
public MobileApiResponse<GetGoodsDetailResp> GetGoodsDetail(string? boxNo)
|
||||||
{
|
{
|
||||||
|
Log.WriteLog("获取箱子号对应的信息" + JsonConvert.SerializeObject(boxNo));
|
||||||
if (string.IsNullOrEmpty(boxNo)) return MobileApiResponse<GetGoodsDetailResp>.Fail("无法识别的箱子号");
|
if (string.IsNullOrEmpty(boxNo)) return MobileApiResponse<GetGoodsDetailResp>.Fail("无法识别的箱子号");
|
||||||
/* -------------- 测试 --------------------------- */
|
boxNo = boxNo.Trim();
|
||||||
//GetGoodsDetailResp mesGoodsDetailTest = new()
|
|
||||||
//{
|
|
||||||
// BoxNo = boxNo,
|
|
||||||
// NumPerBox = 1,
|
|
||||||
// GoodsNum = 23,
|
|
||||||
// PacketNum = 44,
|
|
||||||
// OtherNum = 12,
|
|
||||||
// GoodsId = "000",
|
|
||||||
// SaleOrderNo = "sa123",
|
|
||||||
// PacketLevel = "1",
|
|
||||||
// Cycle = "20天",
|
|
||||||
// CustomSaleOrderNo = "Csale1122",
|
|
||||||
// MinorWarehouseId = "99",
|
|
||||||
// GoodsDesc = "测试物料",
|
|
||||||
//};
|
|
||||||
//return MobileApiResponse<GetGoodsDetailResp>.Success(data: mesGoodsDetailTest);
|
|
||||||
/* -------------- 测试结束 --------------------------- */
|
|
||||||
var response = mesApiClient.GetOutBoxInfo(boxNo);
|
var response = mesApiClient.GetOutBoxInfo(boxNo);
|
||||||
if (!response.IsSend) return MobileApiResponse<GetGoodsDetailResp>.Fail(string.Format("请求MES货物物料信息失败,异常信息:{0}", response.Exception?.Message));
|
if (!response.IsSend) return MobileApiResponse<GetGoodsDetailResp>.Fail(string.Format("请求MES货物物料信息失败,异常信息:{0}", response.Exception?.Message));
|
||||||
string? responseData = response.ResponseMsg;
|
var responseData = response.ResponseMsg;
|
||||||
if (string.IsNullOrEmpty(responseData)) return MobileApiResponse<GetGoodsDetailResp>.Fail(string.Format("MES返回的信息无法识别,信息:{0}", responseData));
|
if (string.IsNullOrEmpty(responseData)) return MobileApiResponse<GetGoodsDetailResp>.Fail(string.Format("MES返回的信息无法识别,信息:{0}", responseData));
|
||||||
var responseDto = XmlUtils.Deserialize<GetOutBoxInfoResp>(responseData);
|
var responseDto = XmlUtils.Deserialize<GetOutBoxInfoResp>(responseData);
|
||||||
if (responseDto == null) return MobileApiResponse<GetGoodsDetailResp>.Fail(string.Format("MES返回的信息无法解析,信息:{0}", responseData));
|
if (responseDto == null) return MobileApiResponse<GetGoodsDetailResp>.Fail(string.Format("MES返回的信息无法解析,信息:{0}", responseData));
|
||||||
string mesData = responseDto.Data ?? "";
|
var mesData = responseDto.Data ?? "";
|
||||||
string[] dataDetail = mesData.Split(':');
|
//var mesData = "Succ:|2|2|1|0|PL0125367A|11120240400183-2|BAG|2345||3031|";
|
||||||
|
var dataDetail = mesData.Split(':');
|
||||||
if (dataDetail.Length < 2) return MobileApiResponse<GetGoodsDetailResp>.Fail(string.Format("MES返回的信息格式不正确,信息:{0}", responseData));
|
if (dataDetail.Length < 2) return MobileApiResponse<GetGoodsDetailResp>.Fail(string.Format("MES返回的信息格式不正确,信息:{0}", responseData));
|
||||||
if (dataDetail[0] != "Succ") return MobileApiResponse<GetGoodsDetailResp>.Fail(string.Format("MES返回箱子错误,信息:{0}", responseData));
|
if (dataDetail[0] != "Succ") return MobileApiResponse<GetGoodsDetailResp>.Fail(string.Format("MES返回箱子错误,信息:{0}", responseData));
|
||||||
string goodsInfo = dataDetail[1];
|
var goodsInfo = dataDetail[1];
|
||||||
string[] goodsDetails = goodsInfo.Split("|");
|
var goodsDetails = goodsInfo.Split("|");
|
||||||
if (goodsDetails.Length < 12) return MobileApiResponse<GetGoodsDetailResp>.Fail(string.Format("MES返回的箱子信息参数数量不足,信息:{0}", goodsDetails));
|
if (goodsDetails.Length < 14) return MobileApiResponse<GetGoodsDetailResp>.Fail(string.Format("MES返回的箱子信息参数数量不足,信息:{0}", goodsInfo));
|
||||||
if(goodsDetails[0] != boxNo) return MobileApiResponse<GetGoodsDetailResp>.Fail(string.Format("MES返回的箱子号和扫描的箱子号不一致,返回的箱号:{0}", goodsDetails[0]));
|
//if(goodsDetails[0] != boxNo) return MobileApiResponse<GetGoodsDetailResp>.Fail(string.Format("MES返回的箱子号和扫描的箱子号不一致,返回的箱号:{0}", goodsDetails[0]));
|
||||||
string numPerBox = goodsDetails[1]; // 每包数量
|
var numPerBox = goodsDetails[1]; // 每包数量
|
||||||
string goodsNum = goodsDetails[2]; // 包装数量
|
var goodsNum = goodsDetails[2]; // 包装数量
|
||||||
string packetNum = goodsDetails[3]; // 包数量
|
var packetNum = goodsDetails[3]; // 包数量
|
||||||
string otherNum = goodsDetails[4]; // 零包数量
|
var otherNum = goodsDetails[4]; // 零包数量
|
||||||
if(numPerBox.IsNotDecimal() || goodsNum.IsNotDecimal() || packetNum.IsNotDecimal() || otherNum.IsNotDecimal())
|
if(numPerBox.IsNotNumber() || goodsNum.IsNotNumber() || packetNum.IsNotNumber() || otherNum.IsNotNumber())
|
||||||
return MobileApiResponse<GetGoodsDetailResp>.Fail(string.Format("MES返回的箱子信息内的数量存在不是数字情况,信息:{0}", goodsDetails));
|
return MobileApiResponse<GetGoodsDetailResp>.Fail(string.Format("MES返回的箱子信息内的数量存在不是数字情况,信息:{0}", goodsInfo));
|
||||||
|
if(numPerBox=="0"|| packetNum == "0")
|
||||||
|
return MobileApiResponse<GetGoodsDetailResp>.Fail(string.Format("MES返回的箱子信息内的数量为0的情况,信息:{0}", goodsInfo));
|
||||||
GetGoodsDetailResp mesGoodsDetail = new()
|
GetGoodsDetailResp mesGoodsDetail = new()
|
||||||
{
|
{
|
||||||
BoxNo = dataDetail[0],
|
BoxNo = boxNo,
|
||||||
NumPerBox = numPerBox.ToDecimal(),
|
NumPerBox = numPerBox.ToDecimal(),
|
||||||
GoodsNum = goodsNum.ToDecimal(),
|
GoodsNum = goodsNum.ToDecimal(),
|
||||||
PacketNum = packetNum.ToDecimal(),
|
PacketNum = packetNum.ToDecimal(),
|
||||||
OtherNum = otherNum.ToDecimal(),
|
OtherNum = otherNum.ToDecimal(),
|
||||||
GoodsId = dataDetail[5],
|
GoodsId = goodsDetails[5],
|
||||||
SaleOrderNo = dataDetail[6],
|
SaleOrderNo = goodsDetails[6],
|
||||||
PacketLevel = dataDetail[7],
|
PacketLevel = goodsDetails[7],
|
||||||
Cycle = dataDetail[8],
|
Cycle = goodsDetails[8],
|
||||||
CustomSaleOrderNo = dataDetail[9],
|
CustomSaleOrderNo = goodsDetails[9],
|
||||||
MinorWarehouseId = dataDetail[10],
|
MinorWarehouseId = goodsDetails[10],
|
||||||
GoodsDesc = dataDetail[11],
|
GoodsDesc = goodsDetails[11],
|
||||||
|
CustomerId = goodsDetails[12],
|
||||||
};
|
};
|
||||||
|
var procedure = goodsDetails[13];
|
||||||
|
|
||||||
return MobileApiResponse<GetGoodsDetailResp>.Success(data: mesGoodsDetail);
|
return MobileApiResponse<GetGoodsDetailResp>.Success(data: mesGoodsDetail);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -140,6 +138,7 @@ public class StockInService(MesApiClient mesApiClient, TOnGoodsShelfDao onGoodsS
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public MobileApiResponse<CuxWmsPoLinesItfView> GetCanUseGoods(GetCanUseGoodsRequest request)
|
public MobileApiResponse<CuxWmsPoLinesItfView> GetCanUseGoods(GetCanUseGoodsRequest request)
|
||||||
{
|
{
|
||||||
|
Log.WriteLog("根据订单行和物料号" + JsonConvert.SerializeObject(request));
|
||||||
if (string.IsNullOrEmpty(request.OrderId) || string.IsNullOrEmpty(request.GoodsId) || !request.GoodsId.IsNumber())
|
if (string.IsNullOrEmpty(request.OrderId) || string.IsNullOrEmpty(request.GoodsId) || !request.GoodsId.IsNumber())
|
||||||
return MobileApiResponse<CuxWmsPoLinesItfView>.Fail("传入的参数不正确");
|
return MobileApiResponse<CuxWmsPoLinesItfView>.Fail("传入的参数不正确");
|
||||||
var wareNoticeTabs = cuxWmsPoLinesItfDao.SelectCanUse(request.OrderId, Convert.ToInt64(request.GoodsId));
|
var wareNoticeTabs = cuxWmsPoLinesItfDao.SelectCanUse(request.OrderId, Convert.ToInt64(request.GoodsId));
|
||||||
|
|
@ -160,14 +159,27 @@ public class StockInService(MesApiClient mesApiClient, TOnGoodsShelfDao onGoodsS
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public MobileApiResponse BindingVehicleIn(BindingVehicleInRequest request)
|
public MobileApiResponse BindingVehicleIn(BindingVehicleInRequest request)
|
||||||
{
|
{
|
||||||
if(string.IsNullOrEmpty(request.VehicleNo)) return MobileApiResponse.Fail("载具号为空");
|
Log.WriteLog("码盘入库" + JsonConvert.SerializeObject(request));
|
||||||
|
if (request.VehicleNo.Substring(0, 3) != "CPC") return MobileApiResponse.Fail("传入的箱号不是CPC成品仓箱子格式");
|
||||||
|
if (string.IsNullOrEmpty(request.VehicleNo)) return MobileApiResponse.Fail("载具号为空");
|
||||||
var goods = request.Goods;
|
var goods = request.Goods;
|
||||||
if (goods == null || goods.Count < 1) return MobileApiResponse.Fail("传入的数据为空");
|
if (goods == null || goods.Count < 1) return MobileApiResponse.Fail("传入的数据为空");
|
||||||
List<TOnGoodsShelf> onGoodsShelfs = [];
|
List<TOnGoodsShelf> onGoodsShelfs = [];
|
||||||
foreach (var item in goods)
|
foreach (var item in goods)
|
||||||
{
|
{
|
||||||
|
var vehicleNo = item.Batch;
|
||||||
|
if(string.IsNullOrEmpty(vehicleNo)) return MobileApiResponse.Fail("载具号不能为空");
|
||||||
|
/* 检验载具是否有入库任务 */
|
||||||
|
var stackInTasks = onGoodsShelfDao.SelectWithVehicleNo(vehicleNo);
|
||||||
|
if(stackInTasks == null) return MobileApiResponse.Fail("数据服务异常,请稍后再试");
|
||||||
|
if(stackInTasks.Count > 0) return MobileApiResponse.Fail(string.Format("该载具号:{0} 存在入库任务,请核实后再试", vehicleNo));
|
||||||
|
/* 检验载具是否在库存中 */
|
||||||
|
var stocks = miStockDao.SelectWithVehicleNo(vehicleNo);
|
||||||
|
if (stocks == null) return MobileApiResponse.Fail("数据服务异常,请稍后再试");
|
||||||
|
if (stocks.Count > 0) return MobileApiResponse.Fail(string.Format("该载具号:{0} 仍在库中,请核实后再试", vehicleNo));
|
||||||
|
|
||||||
if (string.IsNullOrEmpty(item.ProductData)) item.ProductData = "19970102";
|
if (string.IsNullOrEmpty(item.ProductData)) item.ProductData = "19970102";
|
||||||
/* 构建空载具信息插入数据库 */
|
/* 构建码盘载具信息插入数据库 */
|
||||||
TOnGoodsShelf onGoodsShelf = new()
|
TOnGoodsShelf onGoodsShelf = new()
|
||||||
{
|
{
|
||||||
LotId = UUIDUtils.GetNewUUID2(),
|
LotId = UUIDUtils.GetNewUUID2(),
|
||||||
|
|
@ -180,7 +192,7 @@ public class StockInService(MesApiClient mesApiClient, TOnGoodsShelfDao onGoodsS
|
||||||
StockNum = 0,
|
StockNum = 0,
|
||||||
OnDate = DateTime.Now,
|
OnDate = DateTime.Now,
|
||||||
OnShelfUserId = "Mobile_Android",
|
OnShelfUserId = "Mobile_Android",
|
||||||
StorageId = "-",
|
StorageId = "",
|
||||||
StorageAreaId = item.Area,
|
StorageAreaId = item.Area,
|
||||||
UpGoodsId = UUIDUtils.GetNewUUID2(),
|
UpGoodsId = UUIDUtils.GetNewUUID2(),
|
||||||
GoodsTypeId = item.GoodsTypeId,
|
GoodsTypeId = item.GoodsTypeId,
|
||||||
|
|
@ -192,6 +204,7 @@ public class StockInService(MesApiClient mesApiClient, TOnGoodsShelfDao onGoodsS
|
||||||
GoodsName = item.GoodsName,
|
GoodsName = item.GoodsName,
|
||||||
WGH = item.Weight,
|
WGH = item.Weight,
|
||||||
BAOZHIQI = "",
|
BAOZHIQI = "",
|
||||||
|
//INSTAND=item.PORT,
|
||||||
Status = "0",
|
Status = "0",
|
||||||
PRODUCLOTID = item.LineLocationId,
|
PRODUCLOTID = item.LineLocationId,
|
||||||
Unit = item.Unit,
|
Unit = item.Unit,
|
||||||
|
|
@ -199,16 +212,14 @@ public class StockInService(MesApiClient mesApiClient, TOnGoodsShelfDao onGoodsS
|
||||||
GoodsMeasureId = item.Batch,
|
GoodsMeasureId = item.Batch,
|
||||||
PackingNum = 1,
|
PackingNum = 1,
|
||||||
DamageNum = 1,
|
DamageNum = 1,
|
||||||
Remark = "",
|
Remark = ""
|
||||||
PoHeaderId = item.PoHeaderId,
|
|
||||||
PoLineId = item.PoLineId,
|
|
||||||
};
|
};
|
||||||
onGoodsShelfs.Add(onGoodsShelf);
|
onGoodsShelfs.Add(onGoodsShelf);
|
||||||
}
|
}
|
||||||
//bool createTask = wareNoticeTabDao.UpdateStatusAndInsertInTask("1", onGoodsShelfs, request.VehicleNo);
|
//bool createTask = wareNoticeTabDao.UpdateStatusAndInsertInTask("1", onGoodsShelfs, request.VehicleNo);
|
||||||
var insertResult = onGoodsShelfDao.Insert([.. onGoodsShelfs]);
|
var insertResult = onGoodsShelfDao.Insert([.. onGoodsShelfs]);
|
||||||
if (insertResult > 0) return MobileApiResponse.Success(string.Format("空载具:{0} 产生入库任务成功", request.VehicleNo));
|
if (insertResult > 0) return MobileApiResponse.Success(string.Format("载具:{0} 产生入库任务成功", request.VehicleNo));
|
||||||
return MobileApiResponse.Fail(string.Format("空载具:{0} 产生入库任务失败,数据无法插入", request.VehicleNo));
|
return MobileApiResponse.Fail(string.Format("载具:{0} 产生入库任务失败,数据无法插入", request.VehicleNo));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -223,56 +234,182 @@ public class StockInService(MesApiClient mesApiClient, TOnGoodsShelfDao onGoodsS
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public MobileApiResponse BindingVehicleInMes(BindingVehicleInReq request)
|
public MobileApiResponse BindingVehicleInMes(BindingVehicleInReq request)
|
||||||
{
|
{
|
||||||
if (string.IsNullOrEmpty(request.VehicleNo) || request.BindingGoodsDetails == null) return MobileApiResponse.Fail("传入的数据无法识别");
|
try
|
||||||
if (request.BindingGoodsDetails.Count < 1) return MobileApiResponse.Fail("传入的数据为空");
|
{
|
||||||
/* 检验载具是否有入库任务 */
|
// 记录原始请求日志
|
||||||
var stackInRasks = onGoodsShelfDao.SelectWithVehicleNo(request.VehicleNo);
|
Log.WriteLog("MES码盘入库 请求数据:" + JsonConvert.SerializeObject(request));
|
||||||
if (stackInRasks == null) return MobileApiResponse.Fail("数据服务异常,请稍后再试");
|
|
||||||
if (stackInRasks.Count > 0) return MobileApiResponse.Fail(string.Format("该载具号:{0} 存在入库任务,请核实后再试", request.VehicleNo));
|
// 校验车辆编号格式
|
||||||
/* 检验载具是否在库存中 */
|
if (!string.IsNullOrEmpty(request.VehicleNo))
|
||||||
|
{
|
||||||
|
if (request.VehicleNo.Substring(0, 3) != "CPC" || request.VehicleNo.Length != 8)
|
||||||
|
return MobileApiResponse.Fail("传入的箱号不是正确的成品仓箱子格式");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return MobileApiResponse.Fail("传入的数据无法识别");
|
||||||
|
}
|
||||||
|
|
||||||
|
//检查是否是未下发的入库任务
|
||||||
|
var stackInTasks_empty = onGoodsShelfDao.SelectWithVehicleNo_Empty(request.VehicleNo);
|
||||||
|
if(stackInTasks_empty.Count>0)
|
||||||
|
{
|
||||||
|
//清楚这个料箱的任务
|
||||||
|
bool isDeleted = onGoodsShelfDao.DeleteWithVehicleNo(request.VehicleNo);
|
||||||
|
if (isDeleted)
|
||||||
|
{
|
||||||
|
Log.WriteLog("删除成功!");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Log.WriteLog($"删除失败或没有匹配的记录。");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (request.BindingGoodsDetails == null || request.BindingGoodsDetails.Count < 1 && request.InArea == "1")
|
||||||
|
return MobileApiResponse.Fail("传入的数据为空");
|
||||||
|
// 检查是否存在入库任务
|
||||||
|
var stackInTasks = onGoodsShelfDao.SelectWithVehicleNo(request.VehicleNo);
|
||||||
|
if (stackInTasks == null)
|
||||||
|
return MobileApiResponse.Fail("数据服务异常,请稍后再试");
|
||||||
|
if (stackInTasks.Count > 0)
|
||||||
|
return MobileApiResponse.Fail($"该载具号:{request.VehicleNo} 存在入库任务,请核实后再试");
|
||||||
|
|
||||||
|
// 检查库存中是否存在该载具
|
||||||
var stocks = miStockDao.SelectWithVehicleNo(request.VehicleNo);
|
var stocks = miStockDao.SelectWithVehicleNo(request.VehicleNo);
|
||||||
if (stocks == null) return MobileApiResponse.Fail("数据服务异常,请稍后再试");
|
if (stocks == null)
|
||||||
if (stocks.Count > 0) return MobileApiResponse.Fail(string.Format("该载具号:{0} 仍在库中,请核实后再试", request.VehicleNo));
|
return MobileApiResponse.Fail("数据服务异常,请稍后再试");
|
||||||
/* 构建入库任务 */
|
if (stocks.Count > 0)
|
||||||
List<TOnGoodsShelf> onGoodsShelves = []; // 需要入库的任务
|
return MobileApiResponse.Fail($"该载具号:{request.VehicleNo} 仍在库中,请核实后再试");
|
||||||
|
|
||||||
|
//// 构建入库任务列表
|
||||||
|
List<TOnGoodsShelf> onGoodsShelves = new();
|
||||||
|
#region
|
||||||
|
//List<string> errorList = new();
|
||||||
|
//string MesIpPort = "10.50.220.1:8099";
|
||||||
|
//var options = new ParallelOptions { MaxDegreeOfParallelism = 25 }; // 控制并发数
|
||||||
|
|
||||||
|
//Parallel.ForEach(request.BindingGoodsDetails, options, box =>
|
||||||
|
//{
|
||||||
|
// string BARCODE = box.BoxNo;
|
||||||
|
// string STORAGE_ID = box.MinorWarehouseId;
|
||||||
|
// string newLoc = box.MinorWarehouseId + "-WMS-00";
|
||||||
|
|
||||||
|
// try
|
||||||
|
// {
|
||||||
|
// string response = GetWmsData($"http://{MesIpPort}/Camstar/PackStock.asmx/PackStockIn?pkwPackLot={BARCODE}&pCustPackId=&pSubInventory={STORAGE_ID}&pLocation={newLoc}", "");
|
||||||
|
|
||||||
|
// lock (errorList)
|
||||||
|
// {
|
||||||
|
// if (string.IsNullOrWhiteSpace(response))
|
||||||
|
// {
|
||||||
|
// Log.WriteLog($"MES返回空响应(箱号:{box.BoxNo})");
|
||||||
|
// errorList.Add(box.BoxNo);
|
||||||
|
// return;
|
||||||
|
// }
|
||||||
|
// if (response.Contains("Error") && !response.Contains("当前工位 '成品仓'"))
|
||||||
|
// {
|
||||||
|
// Log.WriteLog($"MES返回错误(箱号:{box.BoxNo}): {response}");
|
||||||
|
// errorList.Add(box.BoxNo);
|
||||||
|
// }
|
||||||
|
// else
|
||||||
|
// {
|
||||||
|
// Log.WriteLog($"MES入库成功(箱号:{box.BoxNo}): {response}");
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// catch (Exception ex)
|
||||||
|
// {
|
||||||
|
// lock (errorList)
|
||||||
|
// {
|
||||||
|
// Log.WriteLog($"请求失败(箱号:{box.BoxNo}): {ex}");
|
||||||
|
// errorList.Add(box.BoxNo);
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
//});
|
||||||
|
//if(!errorList.IsNullOrEmpty())
|
||||||
|
//{
|
||||||
|
// return MobileApiResponse.Fail($"上报mes失败:{errorList}");
|
||||||
|
//}
|
||||||
|
#endregion
|
||||||
foreach (var item in request.BindingGoodsDetails)
|
foreach (var item in request.BindingGoodsDetails)
|
||||||
{
|
{
|
||||||
onGoodsShelves.Add(new()
|
//如果物料编码(GoodsId)或者周期(Cycle)有大于一种的
|
||||||
|
var distinctGoodsIds = request.BindingGoodsDetails.Select(x => x.GoodsId).Distinct().Count();
|
||||||
|
bool hasMultipleGoodsIds = distinctGoodsIds > 1;
|
||||||
|
|
||||||
|
// 检查是否有多个不同的 Cycle
|
||||||
|
var distinctCycles = request.BindingGoodsDetails.Select(x => x.Cycle).Distinct().Count();
|
||||||
|
bool hasMultipleCycles = distinctCycles > 1;
|
||||||
|
|
||||||
|
if (hasMultipleGoodsIds || hasMultipleCycles)
|
||||||
|
{
|
||||||
|
// 处理 GoodsId 或 Cycle 有多种值的情况
|
||||||
|
return MobileApiResponse.Fail($"有周期或者物料编号大于一种的情况,请检查后重新绑定");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
foreach (var item in request.BindingGoodsDetails)
|
||||||
|
{
|
||||||
|
string code_PLCID = request.VehicleNo.Substring(3, 5).Trim() ;
|
||||||
|
if (string.IsNullOrEmpty(item.GoodsId)) continue;
|
||||||
|
|
||||||
|
bool isToStorage = request.InArea == "1";
|
||||||
|
string goodsName = isToStorage ? item.GoodsDesc : "去包装线托盘";
|
||||||
|
string storageMode = isToStorage ? "MES码盘入库" : "MES码盘包装线";
|
||||||
|
|
||||||
|
onGoodsShelves.Add(new TOnGoodsShelf
|
||||||
{
|
{
|
||||||
LotId = UUIDUtils.GetNewUUID2(),
|
LotId = UUIDUtils.GetNewUUID2(),
|
||||||
GoodsId = item.GoodsId,
|
GoodsId = item.GoodsId.Trim(),
|
||||||
ProviderId = item.SaleOrderNo,
|
ProviderId = item.SaleOrderNo,
|
||||||
LocationId = "",
|
LocationId = "",
|
||||||
StoNum = item.OtherNum,
|
StoNum = item.OtherNum.ToDecimal(),
|
||||||
AccNum = item.NumPerBox,
|
AccNum = item.NumPerBox.ToDecimal(),
|
||||||
ShelfNum = item.GoodsNum,
|
ShelfNum = item.GoodsNum.ToDecimal(),
|
||||||
StockNum = item.PacketNum,
|
StockNum = item.PacketNum.ToDecimal(),
|
||||||
OnDate = DateTime.Now,
|
OnDate = DateTime.Now,
|
||||||
OnShelfUserId = "Mobile_Android",
|
OnShelfUserId = "Mobile_Android",
|
||||||
StorageId = "-",
|
StorageId = "",
|
||||||
StorageAreaId = item.MinorWarehouseId,
|
StorageAreaId = item.MinorWarehouseId,
|
||||||
UpGoodsId = UUIDUtils.GetNewUUID2(),
|
UpGoodsId = UUIDUtils.GetNewUUID2(),
|
||||||
GoodsTypeId = item.PacketLevel,
|
GoodsTypeId = item.PacketLevel,
|
||||||
StorageMode = "MES码盘入库",
|
StorageMode = storageMode,
|
||||||
ProdictionDate = DateTime.Now,
|
ProdictionDate = DateTime.Now,
|
||||||
Ctl = request.VehicleNo,
|
Ctl = request.VehicleNo,
|
||||||
BarCode = item.BoxNo,
|
BarCode = item.BoxNo,
|
||||||
CustomerId = item.CustomSaleOrderNo,
|
CustomerId = item.CustomerId,
|
||||||
GoodsName = item.GoodsDesc,
|
GoodsName = goodsName,
|
||||||
Status = "0",
|
Status = "0",
|
||||||
Unit = "-",
|
PRODUCLOTID = item.MinorWarehouseId,
|
||||||
TaskType = request.TaskType.ToString(),
|
Unit = "",
|
||||||
|
TaskType = request.InArea,
|
||||||
GoodsMeasureId = item.SaleOrderNo,
|
GoodsMeasureId = item.SaleOrderNo,
|
||||||
PackingNum = 1,
|
PackingNum = 1,
|
||||||
DamageNum = 1,
|
DamageNum = 1,
|
||||||
ScaleUnit = item.Cycle,
|
ScaleUnit = item.Cycle,
|
||||||
Remark = ""
|
Remark = item.CustomSaleOrderNo,
|
||||||
|
INSTAND = request.port,
|
||||||
|
PLCID= code_PLCID
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
var insertResult = onGoodsShelfDao.Insert([.. onGoodsShelves]);
|
// 插入数据库
|
||||||
if (insertResult > 0) return MobileApiResponse.Success(string.Format("载具:{0} 产生入库任务成功", request.VehicleNo));
|
var insertResult = onGoodsShelfDao.Insert(onGoodsShelves.ToArray());
|
||||||
return MobileApiResponse.Fail(string.Format("载具:{0} 产生入库任务失败,数据无法插入", request.VehicleNo));
|
if (insertResult > 0)
|
||||||
|
{
|
||||||
|
Log.WriteLog($"{request.VehicleNo}入库任务生成成功");
|
||||||
|
return MobileApiResponse.Success($"载具:{request.VehicleNo} 产生入库任务成功");
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return MobileApiResponse.Fail($"载具:{request.VehicleNo} 产生入库任务失败,数据无法插入");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Log.WriteLog($"BindingVehicleInMes 发生异常: {ex.Message}\n{ex.StackTrace}");
|
||||||
|
return MobileApiResponse.Fail("系统内部错误,请稍后重试");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
@ -293,6 +430,8 @@ public class StockInService(MesApiClient mesApiClient, TOnGoodsShelfDao onGoodsS
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public MobileApiResponse BindingVehicleInEbsOld(BindingVehicleInEbsOldReq request)
|
public MobileApiResponse BindingVehicleInEbsOld(BindingVehicleInEbsOldReq request)
|
||||||
{
|
{
|
||||||
|
Log.WriteLog("Ebs 码盘入库" + JsonConvert.SerializeObject(request));
|
||||||
|
if (request.VehicleNo.Substring(0,3)!="CPC") return MobileApiResponse.Fail("传入的箱号不是CPC成品仓箱子格式");
|
||||||
if (string.IsNullOrEmpty(request.VehicleNo) || request.BindingGoodsDetails == null) return MobileApiResponse.Fail("传入的数据无法识别");
|
if (string.IsNullOrEmpty(request.VehicleNo) || request.BindingGoodsDetails == null) return MobileApiResponse.Fail("传入的数据无法识别");
|
||||||
if (request.BindingGoodsDetails.Count < 1) return MobileApiResponse.Fail("传入的数据为空");
|
if (request.BindingGoodsDetails.Count < 1) return MobileApiResponse.Fail("传入的数据为空");
|
||||||
/* 检验载具是否有入库任务 */
|
/* 检验载具是否有入库任务 */
|
||||||
|
|
@ -303,6 +442,9 @@ public class StockInService(MesApiClient mesApiClient, TOnGoodsShelfDao onGoodsS
|
||||||
var stocks = miStockDao.SelectWithVehicleNo(request.VehicleNo);
|
var stocks = miStockDao.SelectWithVehicleNo(request.VehicleNo);
|
||||||
if (stocks == null) return MobileApiResponse.Fail("数据服务异常,请稍后再试");
|
if (stocks == null) return MobileApiResponse.Fail("数据服务异常,请稍后再试");
|
||||||
if (stocks.Count > 0) return MobileApiResponse.Fail(string.Format("该载具号:{0} 仍在库中,请核实后再试", request.VehicleNo));
|
if (stocks.Count > 0) return MobileApiResponse.Fail(string.Format("该载具号:{0} 仍在库中,请核实后再试", request.VehicleNo));
|
||||||
|
var stockOutRasks = pickingGoodsDao.SelectPickTask_Empty(request.VehicleNo);
|
||||||
|
if (stockOutRasks == null) return MobileApiResponse.Fail("数据服务异常,请稍后再试");
|
||||||
|
if (stockOutRasks.Count > 0) return MobileApiResponse.Fail(string.Format("该载具号:{0} 存在出库任务,请核实后再试", request.VehicleNo));
|
||||||
/* 构建入库任务 */
|
/* 构建入库任务 */
|
||||||
List<TOnGoodsShelf> onGoodsShelves = []; // 需要入库的任务
|
List<TOnGoodsShelf> onGoodsShelves = []; // 需要入库的任务
|
||||||
List<(string? PoHeaderId, string? PoLineId, string? LineLocationId)> orders = [];
|
List<(string? PoHeaderId, string? PoLineId, string? LineLocationId)> orders = [];
|
||||||
|
|
@ -320,7 +462,7 @@ public class StockInService(MesApiClient mesApiClient, TOnGoodsShelfDao onGoodsS
|
||||||
StockNum = item.PacketNum,
|
StockNum = item.PacketNum,
|
||||||
OnDate = DateTime.Now,
|
OnDate = DateTime.Now,
|
||||||
OnShelfUserId = "Mobile_Android",
|
OnShelfUserId = "Mobile_Android",
|
||||||
StorageId = "-",
|
StorageId = "",
|
||||||
StorageAreaId = item.MinorWarehouseId,
|
StorageAreaId = item.MinorWarehouseId,
|
||||||
UpGoodsId = UUIDUtils.GetNewUUID2(),
|
UpGoodsId = UUIDUtils.GetNewUUID2(),
|
||||||
GoodsTypeId = item.PacketLevel,
|
GoodsTypeId = item.PacketLevel,
|
||||||
|
|
@ -331,7 +473,7 @@ public class StockInService(MesApiClient mesApiClient, TOnGoodsShelfDao onGoodsS
|
||||||
CustomerId = item.CustomSaleOrderNo,
|
CustomerId = item.CustomSaleOrderNo,
|
||||||
GoodsName = item.GoodsDesc,
|
GoodsName = item.GoodsDesc,
|
||||||
Status = "0",
|
Status = "0",
|
||||||
Unit = "-",
|
Unit = "",
|
||||||
TaskType = request.TaskType.ToString(),
|
TaskType = request.TaskType.ToString(),
|
||||||
GoodsMeasureId = item.SaleOrderNo,
|
GoodsMeasureId = item.SaleOrderNo,
|
||||||
PackingNum = 1,
|
PackingNum = 1,
|
||||||
|
|
@ -340,6 +482,7 @@ public class StockInService(MesApiClient mesApiClient, TOnGoodsShelfDao onGoodsS
|
||||||
Remark = ""
|
Remark = ""
|
||||||
});
|
});
|
||||||
orders.Add((item.PoHeaderId, item.PoLineId, item.LineLocationId));
|
orders.Add((item.PoHeaderId, item.PoLineId, item.LineLocationId));
|
||||||
|
|
||||||
}
|
}
|
||||||
// 插入数据,更新状态
|
// 插入数据,更新状态
|
||||||
var insertResult = onGoodsShelfDao.InsertWithCux(onGoodsShelves, orders);
|
var insertResult = onGoodsShelfDao.InsertWithCux(onGoodsShelves, orders);
|
||||||
|
|
@ -354,6 +497,7 @@ public class StockInService(MesApiClient mesApiClient, TOnGoodsShelfDao onGoodsS
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public MobileApiResponse BindingVehicleInEbs(BindingVehicleInEbsReq request)
|
public MobileApiResponse BindingVehicleInEbs(BindingVehicleInEbsReq request)
|
||||||
{
|
{
|
||||||
|
//Log.WriteLog("Ebs 码盘入库" + JsonConvert.SerializeObject(request));
|
||||||
if (string.IsNullOrEmpty(request.VehicleNo) || request.BindingGoodsDetails == default) return MobileApiResponse.Fail("传入的数据无法识别");
|
if (string.IsNullOrEmpty(request.VehicleNo) || request.BindingGoodsDetails == default) return MobileApiResponse.Fail("传入的数据无法识别");
|
||||||
if (request.BindingGoodsDetails.Count < 1) return MobileApiResponse.Fail("传入的数据为空");
|
if (request.BindingGoodsDetails.Count < 1) return MobileApiResponse.Fail("传入的数据为空");
|
||||||
/* 检验载具是否有入库任务 */
|
/* 检验载具是否有入库任务 */
|
||||||
|
|
@ -424,4 +568,32 @@ public class StockInService(MesApiClient mesApiClient, TOnGoodsShelfDao onGoodsS
|
||||||
//if (insertResult) return MobileApiResponse.Success(string.Format("载具:{0} 产生入库任务成功", request.VehicleNo));
|
//if (insertResult) return MobileApiResponse.Success(string.Format("载具:{0} 产生入库任务成功", request.VehicleNo));
|
||||||
return MobileApiResponse.Fail(string.Format("载具:{0} 产生入库任务失败,数据无法插入", request.VehicleNo));
|
return MobileApiResponse.Fail(string.Format("载具:{0} 产生入库任务失败,数据无法插入", request.VehicleNo));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public string GetWmsData(string value, string sts)
|
||||||
|
{
|
||||||
|
string retJson = "";
|
||||||
|
try
|
||||||
|
{
|
||||||
|
Log.WriteLog("WCS调用MES 入库接口发送:" + value);
|
||||||
|
string url = value;
|
||||||
|
HttpWebRequest? req = WebRequest.Create(url) as HttpWebRequest;
|
||||||
|
req.ContentType = "text/html";
|
||||||
|
|
||||||
|
req.Method = "GET";
|
||||||
|
req.Timeout = 2000;
|
||||||
|
|
||||||
|
HttpWebResponse response = req.GetResponse() as HttpWebResponse;
|
||||||
|
using (StreamReader sr = new StreamReader(response.GetResponseStream(), Encoding.UTF8))
|
||||||
|
{
|
||||||
|
retJson = sr.ReadToEnd();
|
||||||
|
Log.WriteLog("WCS调用MES 入库接口返回:" + retJson);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
return retJson;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
45
WmsMobileServe/ApiServe/Mobile/Service/StockOutService.cs
Normal file
45
WmsMobileServe/ApiServe/Mobile/Service/StockOutService.cs
Normal file
|
|
@ -0,0 +1,45 @@
|
||||||
|
using WmsMobileServe.Annotation;
|
||||||
|
using WmsMobileServe.ApiServe.Mobile.Vo;
|
||||||
|
using WmsMobileServe.DataBase.Base.Dao;
|
||||||
|
using WmsMobileServe.DataBase.Base.Po;
|
||||||
|
using WmsMobileServe.Utils;
|
||||||
|
|
||||||
|
namespace WmsMobileServe.ApiServe.Mobile.Service;
|
||||||
|
|
||||||
|
[Component]
|
||||||
|
public class StockOutService(TPickingGoodsDao pickingGoodsDao)
|
||||||
|
{
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 出一个空托
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
public MobileApiResponse OutEmptyVehicle()
|
||||||
|
{
|
||||||
|
//查询有无空托
|
||||||
|
var emptyBoxes = pickingGoodsDao.SelectEmptyBox(null); // You might need to pass the correct CTL parameter here
|
||||||
|
|
||||||
|
if (emptyBoxes == null || emptyBoxes.Count == 0)
|
||||||
|
{
|
||||||
|
return MobileApiResponse.Fail("库内没有找到可用的空载具");
|
||||||
|
}
|
||||||
|
|
||||||
|
TPickGoods pickGoods = new()
|
||||||
|
{
|
||||||
|
PickingId = UUIDUtils.GetNewUUID2(),
|
||||||
|
GoodsId = "000000",
|
||||||
|
GoodsName = "空载具(移动端出空托)",
|
||||||
|
VehicleNo = "",
|
||||||
|
Location = "-",
|
||||||
|
MiStockNum = 0,
|
||||||
|
PickingNum = 0,
|
||||||
|
GoodsNumSj = 0,
|
||||||
|
Status = "0",
|
||||||
|
OutStand = "113"
|
||||||
|
};
|
||||||
|
var insertResult = pickingGoodsDao.InsertReturnErr(pickGoods);
|
||||||
|
if (insertResult == "") return MobileApiResponse.Success(string.Format("空载具产生出库任务成功"));
|
||||||
|
return MobileApiResponse.Fail(string.Format("空载具产生出库任务失败,异常信息:{0}", insertResult));
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -73,8 +73,36 @@ public class TOnGoodsShelfDao(DataBaseClient client)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public List<TOnGoodsShelf>? SelectWithVehicleNo_Empty(string vehicleNo)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
return client.Instance().Queryable<TOnGoodsShelf>()
|
||||||
|
.Where(w => w.Ctl == vehicleNo && w.Status =="0").ToList();
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
_ = ex;
|
||||||
|
return default;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public bool DeleteWithVehicleNo(string vehicleNo)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
// 返回删除的记录数(>0 表示成功)
|
||||||
|
return client.Instance().Deleteable<TOnGoodsShelf>()
|
||||||
|
.Where(w => w.Ctl == vehicleNo)
|
||||||
|
.ExecuteCommand() > 0;
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
_ = ex; // 可记录日志
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,27 @@ public class TPickingGoodsDao(DataBaseClient client)
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var sqlFuc = client.Instance().Queryable<TPickGoods>()
|
var sqlFuc = client.Instance().Queryable<TPickGoods>()
|
||||||
.Where(w => w.VehicleNo == vehicleNo && w.Status == "2");
|
.Where(w => w.VehicleNo == vehicleNo && w.Status == "6");
|
||||||
|
return sqlFuc.ToList();
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
_ = ex;
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="vehicleNo"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
public List<TPickGoods>? SelectPickTask_Empty(string? vehicleNo)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var sqlFuc = client.Instance().Queryable<TPickGoods>()
|
||||||
|
.Where(w => w.VehicleNo == vehicleNo);
|
||||||
return sqlFuc.ToList();
|
return sqlFuc.ToList();
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
|
|
@ -36,7 +56,7 @@ public class TPickingGoodsDao(DataBaseClient client)
|
||||||
foreach ((string? vehicleNo, string? goodsId, decimal? pickingNum) in pickData)
|
foreach ((string? vehicleNo, string? goodsId, decimal? pickingNum) in pickData)
|
||||||
{
|
{
|
||||||
client.Instance().Updateable<TPickGoods>()
|
client.Instance().Updateable<TPickGoods>()
|
||||||
.SetColumns(s => s.Status == "3")
|
.SetColumns(s => s.Status == "9")
|
||||||
.SetColumns(s => s.GoodsNumSj == pickingNum)
|
.SetColumns(s => s.GoodsNumSj == pickingNum)
|
||||||
.Where(w => w.VehicleNo == vehicleNo && w.GoodsId == goodsId).ExecuteCommand();
|
.Where(w => w.VehicleNo == vehicleNo && w.GoodsId == goodsId).ExecuteCommand();
|
||||||
}
|
}
|
||||||
|
|
@ -50,6 +70,36 @@ public class TPickingGoodsDao(DataBaseClient client)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public string InsertReturnErr(params TPickGoods[] pickGoods)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
client.Instance().Insertable(pickGoods).ExecuteCommand();
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
_ = ex;
|
||||||
|
return ex.Message;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public List<TMiStock>? SelectEmptyBox(string? CTL)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var sqlFuc = client.Instance().Queryable<TMiStock>()
|
||||||
|
.Where(w => w.Ctl == CTL && w.Barcode == "000000");
|
||||||
|
return sqlFuc.ToList();
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
_ = ex;
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -29,36 +29,6 @@ public class TRKWareNOticeTabDao(DataBaseClient client)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public bool UpdateStatusAndInsertInTask(string? status, List<TOnGoodsShelf>? goodsShelves, string? vehicleNo)
|
|
||||||
{
|
|
||||||
if (goodsShelves == null || goodsShelves.Count < 1) return false;
|
|
||||||
try
|
|
||||||
{
|
|
||||||
var sqlFuc = client.Instance().UseTran(() =>
|
|
||||||
{
|
|
||||||
foreach(var goodsShelf in goodsShelves)
|
|
||||||
{
|
|
||||||
client.Instance().Updateable<TRKWareNoticeTab>()
|
|
||||||
.SetColumns(s => s.PrintSts == status)
|
|
||||||
.SetColumns(s => s.PackageId == vehicleNo)
|
|
||||||
.SetColumns(s => s.ArrAmount == goodsShelf.ShelfNum)
|
|
||||||
.Where(w => w.PurchaseId == goodsShelf.ProviderId && w.GoodsId == goodsShelf.GoodsId && w.PoLineId == Convert.ToInt32(goodsShelf.PoLineId)).ExecuteCommand();
|
|
||||||
|
|
||||||
client.Instance().Insertable(goodsShelf).ExecuteCommand();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
return sqlFuc.IsSuccess;
|
|
||||||
}
|
|
||||||
catch (Exception ex)
|
|
||||||
{
|
|
||||||
_ = ex;
|
|
||||||
return false;
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -19,14 +19,12 @@ public class DataBaseClient
|
||||||
IsAutoCloseConnection = true,
|
IsAutoCloseConnection = true,
|
||||||
ConfigId = "0",
|
ConfigId = "0",
|
||||||
DbType = DbType.Oracle,
|
DbType = DbType.Oracle,
|
||||||
ConnectionString = "Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.63.179)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=OMS)));User Id=WMS_BW;Password=Q12.U.<r15;",
|
ConnectionString = "Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.63.179)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=OMS)));User Id=WMS_FPW;Password=Q12.U.<r12;",
|
||||||
});
|
});
|
||||||
return _instance;
|
return _instance;
|
||||||
}
|
}
|
||||||
// 测试
|
// 测试
|
||||||
// Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=120.53.102.2)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=ORCL)));User Id=C##JWDZ_WMS2;Password=JWDZ_WMS2;
|
// Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=120.53.102.2)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=ORCL)));User Id=C##JWDZ_WMS2;Password=JWDZ_WMS2;
|
||||||
// 冷冻仓
|
// 正式
|
||||||
// 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.<r15;
|
// Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.63.179)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=OMS)));User Id=WMS_FPW;Password=Q12.U.<r12;
|
||||||
// 板材仓
|
|
||||||
// Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.63.179)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=OMS)));User Id=WMS_BW;Password=Q12.U.<r15;
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,6 +24,7 @@ public class TMiStock
|
||||||
[SugarColumn(ColumnName = "STS")]
|
[SugarColumn(ColumnName = "STS")]
|
||||||
public string? Status { get; set; }
|
public string? Status { get; set; }
|
||||||
|
|
||||||
|
[SugarColumn(ColumnName = "BARCODE")]
|
||||||
|
public string? Barcode { get; set; }
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -133,6 +133,9 @@ public class TOnGoodsShelf
|
||||||
[SugarColumn(ColumnName = "GOODSNAME")]
|
[SugarColumn(ColumnName = "GOODSNAME")]
|
||||||
public string? GoodsName { get; set; }
|
public string? GoodsName { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
[SugarColumn(ColumnName = "PLCID")]
|
||||||
|
public string? PLCID { get; set; }
|
||||||
// PLCID
|
// PLCID
|
||||||
// HIGH
|
// HIGH
|
||||||
|
|
||||||
|
|
@ -162,7 +165,8 @@ public class TOnGoodsShelf
|
||||||
// WHSELOC
|
// WHSELOC
|
||||||
// INSTAND
|
// INSTAND
|
||||||
|
|
||||||
|
[SugarColumn(ColumnName = "INSTAND")]
|
||||||
|
public string? INSTAND { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 重量
|
/// 重量
|
||||||
|
|
@ -211,11 +215,4 @@ public class TOnGoodsShelf
|
||||||
public string? Remark { get; set; }
|
public string? Remark { get; set; }
|
||||||
|
|
||||||
|
|
||||||
[SugarColumn(ColumnName = "PO_HEADER_ID")]
|
|
||||||
public string? PoHeaderId { get; set; }
|
|
||||||
|
|
||||||
[SugarColumn(ColumnName = "PO_LINE_ID")]
|
|
||||||
public string? PoLineId { get; set; }
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -80,6 +80,13 @@ public class TPickGoods
|
||||||
[SugarColumn(ColumnName = "OUTSTAND")]
|
[SugarColumn(ColumnName = "OUTSTAND")]
|
||||||
public string? OutStand { get; set; }
|
public string? OutStand { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
|
[JsonPropertyName("barCode")]
|
||||||
|
[SugarColumn(ColumnName = "BARCODE")]
|
||||||
|
public string? BarCode { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5,17 +5,17 @@ using Autofac;
|
||||||
using WmsMobileServe.AppRunning;
|
using WmsMobileServe.AppRunning;
|
||||||
using WmsMobileServe.Utils;
|
using WmsMobileServe.Utils;
|
||||||
|
|
||||||
Console.Title = "WMS后台服务";
|
Console.Title = "WMS<EFBFBD><EFBFBD>̨<EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
|
||||||
Console.OutputEncoding = Encoding.UTF8;
|
Console.OutputEncoding = Encoding.UTF8;
|
||||||
ConsoleLog.DisbleQuickEditMode();
|
ConsoleLog.DisbleQuickEditMode();
|
||||||
|
|
||||||
var builder = WebApplication.CreateBuilder(args);
|
var builder = WebApplication.CreateBuilder(args);
|
||||||
builder.Services.AddControllers().AddJsonOptions(options =>
|
builder.Services.AddControllers().AddJsonOptions(options =>
|
||||||
{
|
{
|
||||||
options.JsonSerializerOptions.PropertyNamingPolicy = null; // 修改返回配置,返回原实体类数据
|
options.JsonSerializerOptions.PropertyNamingPolicy = null; // <EFBFBD>ķ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ã<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ԭʵ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||||
});
|
});
|
||||||
builder.Services.AddHostedService<HostService>();
|
builder.Services.AddHostedService<HostService>();
|
||||||
// 添加跨域,允许任何人访问
|
// <EFBFBD><EFBFBD>ӿ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>κ<EFBFBD><EFBFBD>˷<EFBFBD><EFBFBD><EFBFBD>
|
||||||
builder.Services.AddCors(options =>
|
builder.Services.AddCors(options =>
|
||||||
{
|
{
|
||||||
options.AddPolicy("any", policyBuilder =>
|
options.AddPolicy("any", policyBuilder =>
|
||||||
|
|
@ -24,7 +24,7 @@ builder.Services.AddCors(options =>
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
builder.WebHost.UseUrls("http://*:19990");
|
builder.WebHost.UseUrls("http://*:19990");
|
||||||
builder.Host.UseServiceProviderFactory(new AutofacServiceProviderFactory()); // 使用 autoFac 替换注入容器
|
builder.Host.UseServiceProviderFactory(new AutofacServiceProviderFactory()); // ʹ<EFBFBD><EFBFBD> autoFac <20>滻ע<E6BBBB><D7A2><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||||
builder.Host.ConfigureContainer<ContainerBuilder>(builder =>
|
builder.Host.ConfigureContainer<ContainerBuilder>(builder =>
|
||||||
{
|
{
|
||||||
builder.RegisterModule<AutofacModule>();
|
builder.RegisterModule<AutofacModule>();
|
||||||
|
|
|
||||||
|
|
@ -4,8 +4,8 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||||
-->
|
-->
|
||||||
<Project>
|
<Project>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<_PublishTargetUrl>F:\A开发项目\A菲达宝开项目\2024-11-3_景旺电子\Application\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\</_PublishTargetUrl>
|
<_PublishTargetUrl>D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\publish\</_PublishTargetUrl>
|
||||||
<History>True|2024-11-30T10:55:01.7053760Z||;True|2024-11-28T10:34:31.9681134+08:00||;</History>
|
<History>True|2025-08-04T07:15:07.5871107Z||;True|2025-08-04T15:13:49.3372353+08:00||;True|2025-07-27T16:55:00.4937694+08:00||;True|2025-07-27T11:59:10.3329349+08:00||;True|2025-07-16T14:37:15.2673246+08:00||;True|2025-06-23T16:59:12.1995695+08:00||;True|2025-06-11T16:43:09.7222362+08:00||;True|2025-06-11T16:40:12.2063884+08:00||;True|2025-06-10T16:38:37.0013537+08:00||;True|2025-06-10T16:24:13.4123435+08:00||;True|2025-06-10T15:57:39.1859207+08:00||;True|2025-06-10T15:32:41.4168453+08:00||;True|2025-06-10T10:22:55.1434726+08:00||;True|2025-06-09T16:48:05.6031471+08:00||;True|2025-06-09T16:44:39.3261495+08:00||;False|2025-06-09T16:43:17.5395162+08:00||;True|2025-06-09T15:29:20.7239909+08:00||;True|2025-06-09T15:27:38.5121498+08:00||;True|2025-06-05T15:55:07.8149376+08:00||;True|2025-06-05T15:09:16.8743094+08:00||;True|2025-06-05T13:57:07.0923922+08:00||;True|2025-06-05T13:38:42.5829124+08:00||;True|2025-06-05T11:08:42.6090447+08:00||;True|2025-06-05T10:36:28.4436865+08:00||;False|2025-06-05T10:35:51.6117583+08:00||;True|2025-06-05T10:04:18.5460144+08:00||;True|2025-06-04T10:39:41.3708315+08:00||;False|2025-05-22T23:54:31.3700583+08:00||;False|2025-05-22T23:48:46.3467909+08:00||;False|2025-05-22T23:47:54.7432110+08:00||;False|2025-05-22T23:43:24.8038946+08:00||;True|2025-05-13T15:41:21.7786362+08:00||;True|2025-05-13T14:11:17.1191481+08:00||;True|2025-05-05T17:49:58.9380878+08:00||;True|2024-11-30T18:55:01.7053760+08:00||;True|2024-11-28T10:34:31.9681134+08:00||;</History>
|
||||||
<LastFailureDetails />
|
<LastFailureDetails />
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
@ -12,7 +12,7 @@ public static class StringUtils
|
||||||
public static bool IsDecimal(this string? value)
|
public static bool IsDecimal(this string? value)
|
||||||
{
|
{
|
||||||
if(string.IsNullOrWhiteSpace(value)) return false;
|
if(string.IsNullOrWhiteSpace(value)) return false;
|
||||||
return Regex.IsMatch(value, "^\\d+\\.?\\d+$");
|
return decimal.TryParse(value, out _);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
@ -46,5 +46,9 @@ public static class StringUtils
|
||||||
return Regex.IsMatch(value, "^\\d+$");
|
return Regex.IsMatch(value, "^\\d+$");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static bool IsNotNumber(this string? value)
|
||||||
|
{
|
||||||
|
return !IsNumber(value);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
<Controller_SelectedScaffolderID>ApiControllerEmptyScaffolder</Controller_SelectedScaffolderID>
|
<Controller_SelectedScaffolderID>ApiControllerEmptyScaffolder</Controller_SelectedScaffolderID>
|
||||||
<Controller_SelectedScaffolderCategoryPath>root/Common/Api</Controller_SelectedScaffolderCategoryPath>
|
<Controller_SelectedScaffolderCategoryPath>root/Common/Api</Controller_SelectedScaffolderCategoryPath>
|
||||||
<ActiveDebugProfile>http</ActiveDebugProfile>
|
<ActiveDebugProfile>http</ActiveDebugProfile>
|
||||||
<NameOfLastUsedPublishProfile>F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\Properties\PublishProfiles\FolderProfile1.pubxml</NameOfLastUsedPublishProfile>
|
<NameOfLastUsedPublishProfile>D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\Properties\PublishProfiles\FolderProfile.pubxml</NameOfLastUsedPublishProfile>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||||||
<DebuggerFlavor>ProjectDebugger</DebuggerFlavor>
|
<DebuggerFlavor>ProjectDebugger</DebuggerFlavor>
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,56 @@
|
||||||
[
|
[
|
||||||
|
{
|
||||||
|
"ContainingType": "WmsMobileServe.ApiServe.Mobile.Controllers.PickController",
|
||||||
|
"Method": "GetPickTask",
|
||||||
|
"RelativePath": "api/mobile/pick/getPickTask",
|
||||||
|
"HttpMethod": "GET",
|
||||||
|
"IsController": true,
|
||||||
|
"Order": 0,
|
||||||
|
"Parameters": [
|
||||||
|
{
|
||||||
|
"Name": "vehicleNo",
|
||||||
|
"Type": "System.String",
|
||||||
|
"IsRequired": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ReturnTypes": [
|
||||||
|
{
|
||||||
|
"Type": "WmsMobileServe.ApiServe.Mobile.Vo.MobileApiResponse\u00601[[System.Collections.Generic.List\u00601[[WmsMobileServe.DataBase.Base.Po.TPickGoods, WmsMobileServe, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]",
|
||||||
|
"MediaTypes": [
|
||||||
|
"text/plain",
|
||||||
|
"application/json",
|
||||||
|
"text/json"
|
||||||
|
],
|
||||||
|
"StatusCode": 200
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ContainingType": "WmsMobileServe.ApiServe.Mobile.Controllers.PickController",
|
||||||
|
"Method": "PickComplete",
|
||||||
|
"RelativePath": "api/mobile/pick/pickComplete",
|
||||||
|
"HttpMethod": "POST",
|
||||||
|
"IsController": true,
|
||||||
|
"Order": 0,
|
||||||
|
"Parameters": [
|
||||||
|
{
|
||||||
|
"Name": "request",
|
||||||
|
"Type": "System.Collections.Generic.List\u00601[[WmsMobileServe.ApiServe.Mobile.Dto.PickCompleteDto, WmsMobileServe, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]",
|
||||||
|
"IsRequired": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ReturnTypes": [
|
||||||
|
{
|
||||||
|
"Type": "WmsMobileServe.ApiServe.Mobile.Vo.MobileApiResponse",
|
||||||
|
"MediaTypes": [
|
||||||
|
"text/plain",
|
||||||
|
"application/json",
|
||||||
|
"text/json"
|
||||||
|
],
|
||||||
|
"StatusCode": 200
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"ContainingType": "WmsMobileServe.ApiServe.Mobile.Controllers.StockInController",
|
"ContainingType": "WmsMobileServe.ApiServe.Mobile.Controllers.StockInController",
|
||||||
"Method": "BindingVehicleIn",
|
"Method": "BindingVehicleIn",
|
||||||
|
|
@ -145,7 +197,7 @@
|
||||||
],
|
],
|
||||||
"ReturnTypes": [
|
"ReturnTypes": [
|
||||||
{
|
{
|
||||||
"Type": "WmsMobileServe.ApiServe.Mobile.Vo.MobileApiResponse\u00601[[System.Collections.Generic.List\u00601[[WmsMobileServe.DataBase.Base.Po.CuxWmsPoLinesItf, WmsMobileServe, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]",
|
"Type": "WmsMobileServe.ApiServe.Mobile.Vo.MobileApiResponse\u00601[[WmsMobileServe.ApiServe.Mobile.Vo.CuxWmsPoLinesItfView, WmsMobileServe, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]",
|
||||||
"MediaTypes": [
|
"MediaTypes": [
|
||||||
"text/plain",
|
"text/plain",
|
||||||
"application/json",
|
"application/json",
|
||||||
|
|
@ -220,5 +272,25 @@
|
||||||
"StatusCode": 200
|
"StatusCode": 200
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ContainingType": "WmsMobileServe.ApiServe.Mobile.Controllers.StockOutController",
|
||||||
|
"Method": "OutEmptyVehicle",
|
||||||
|
"RelativePath": "api/mobile/stockOut/outEmptyVehicle",
|
||||||
|
"HttpMethod": "POST",
|
||||||
|
"IsController": true,
|
||||||
|
"Order": 0,
|
||||||
|
"Parameters": [],
|
||||||
|
"ReturnTypes": [
|
||||||
|
{
|
||||||
|
"Type": "WmsMobileServe.ApiServe.Mobile.Vo.MobileApiResponse",
|
||||||
|
"MediaTypes": [
|
||||||
|
"text/plain",
|
||||||
|
"application/json",
|
||||||
|
"text/json"
|
||||||
|
],
|
||||||
|
"StatusCode": 200
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
@ -1,9 +1,10 @@
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
// <auto-generated>
|
// <auto-generated>
|
||||||
// This code was generated by a tool.
|
// 此代码由工具生成。
|
||||||
|
// 运行时版本:4.0.30319.42000
|
||||||
//
|
//
|
||||||
// Changes to this file may cause incorrect behavior and will be lost if
|
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||||
// the code is regenerated.
|
// 重新生成代码,这些更改将会丢失。
|
||||||
// </auto-generated>
|
// </auto-generated>
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -13,7 +14,7 @@ using System.Reflection;
|
||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("WmsMobileServe")]
|
[assembly: System.Reflection.AssemblyCompanyAttribute("WmsMobileServe")]
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+051c9739c4e22ef13eae1293e06d561541999e46")]
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6c0441e7646198c6d0803ea33a3b619005fa7be")]
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("WmsMobileServe")]
|
[assembly: System.Reflection.AssemblyProductAttribute("WmsMobileServe")]
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("WmsMobileServe")]
|
[assembly: System.Reflection.AssemblyTitleAttribute("WmsMobileServe")]
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
faba1f4984443d296d9b9914e64aa807a202192c9637182dc0adfc7bbbba75aa
|
130066ec0e232a95c14543590b6fb9fd1fb294f8b6eafa1feb0d66356eda8081
|
||||||
|
|
|
||||||
|
|
@ -9,11 +9,13 @@ build_property.EnforceExtendedAnalyzerRules =
|
||||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||||
build_property.RootNamespace = WmsMobileServe
|
build_property.RootNamespace = WmsMobileServe
|
||||||
build_property.RootNamespace = WmsMobileServe
|
build_property.RootNamespace = WmsMobileServe
|
||||||
build_property.ProjectDir = F:\AndriodProject\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\
|
build_property.ProjectDir = D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\
|
||||||
build_property.EnableComHosting =
|
build_property.EnableComHosting =
|
||||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||||
build_property.RazorLangVersion = 8.0
|
build_property.RazorLangVersion = 8.0
|
||||||
build_property.SupportLocalizedComponentNames =
|
build_property.SupportLocalizedComponentNames =
|
||||||
build_property.GenerateRazorMetadataSourceChecksumAttributes =
|
build_property.GenerateRazorMetadataSourceChecksumAttributes =
|
||||||
build_property.MSBuildProjectDirectory = F:\AndriodProject\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe
|
build_property.MSBuildProjectDirectory = D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe
|
||||||
build_property._RazorSourceGeneratorDebug =
|
build_property._RazorSourceGeneratorDebug =
|
||||||
|
build_property.EffectiveAnalysisLevelStyle = 8.0
|
||||||
|
build_property.EnableCodeStyleSeverity =
|
||||||
|
|
|
||||||
Binary file not shown.
Binary file not shown.
|
|
@ -1 +1 @@
|
||||||
34fcacf41ab5c6025d87556e7654341b2ee60b401570bffc8193512a948fbb8e
|
17668c5314a8ad5baf9fb093a8d6e2b214941d47687c2f9113c349ab8f2365f2
|
||||||
|
|
|
||||||
|
|
@ -340,3 +340,349 @@ F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Debug
|
||||||
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.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\WmsMobileServe.genruntimeconfig.cache
|
||||||
F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\ref\WmsMobileServe.dll
|
F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\ref\WmsMobileServe.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\appsettings.Development.json
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\appsettings.json
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\WmsMobileServe.exe
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\WmsMobileServe.deps.json
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\WmsMobileServe.runtimeconfig.json
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\WmsMobileServe.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\WmsMobileServe.pdb
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Autofac.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Autofac.Extensions.DependencyInjection.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Azure.Core.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Azure.Identity.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Bcl.AsyncInterfaces.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Data.SqlClient.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Data.Sqlite.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Identity.Client.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Identity.Client.Extensions.Msal.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.IdentityModel.Abstractions.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.IdentityModel.JsonWebTokens.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.IdentityModel.Logging.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.IdentityModel.Tokens.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.SqlServer.Server.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Win32.SystemEvents.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\MySqlConnector.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Newtonsoft.Json.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Npgsql.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Oracle.ManagedDataAccess.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Oscar.Data.SqlClient.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\SQLitePCLRaw.batteries_v2.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\SQLitePCLRaw.core.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\SQLitePCLRaw.provider.e_sqlite3.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\SqlSugar.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\DM.DmProvider.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Kdbndp.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.ClientModel.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Configuration.ConfigurationManager.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Diagnostics.PerformanceCounter.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.DirectoryServices.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.DirectoryServices.Protocols.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Drawing.Common.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.IdentityModel.Tokens.Jwt.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Memory.Data.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Runtime.Caching.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Security.Cryptography.ProtectedData.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Security.Permissions.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Windows.Extensions.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\de\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\es\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\fr\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\it\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\ja\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\ko\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\pt-BR\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\ru\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\zh-Hans\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\zh-Hant\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\unix\lib\net8.0\Microsoft.Data.SqlClient.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net8.0\Microsoft.Data.SqlClient.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\browser-wasm\nativeassets\net8.0\e_sqlite3.a
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-arm\native\libe_sqlite3.so
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-arm64\native\libe_sqlite3.so
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-armel\native\libe_sqlite3.so
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-mips64\native\libe_sqlite3.so
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-musl-arm\native\libe_sqlite3.so
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-musl-arm64\native\libe_sqlite3.so
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-musl-x64\native\libe_sqlite3.so
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-ppc64le\native\libe_sqlite3.so
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-s390x\native\libe_sqlite3.so
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-x64\native\libe_sqlite3.so
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-x86\native\libe_sqlite3.so
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\maccatalyst-arm64\native\libe_sqlite3.dylib
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\maccatalyst-x64\native\libe_sqlite3.dylib
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\osx-arm64\native\libe_sqlite3.dylib
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\osx-x64\native\libe_sqlite3.dylib
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-arm\native\e_sqlite3.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-arm64\native\e_sqlite3.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-x64\native\e_sqlite3.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-x86\native\e_sqlite3.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Diagnostics.PerformanceCounter.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.DirectoryServices.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux\lib\net6.0\System.DirectoryServices.Protocols.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\osx\lib\net6.0\System.DirectoryServices.Protocols.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.DirectoryServices.Protocols.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net8.0\System.Runtime.Caching.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.csproj.AssemblyReference.cache
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.AssemblyInfoInputs.cache
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.AssemblyInfo.cs
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.csproj.CoreCompileInputs.cache
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.MvcApplicationPartsAssemblyInfo.cache
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets.build.json
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets.development.json
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets\msbuild.WmsMobileServe.Microsoft.AspNetCore.StaticWebAssets.props
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets\msbuild.build.WmsMobileServe.props
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets\msbuild.buildMultiTargeting.WmsMobileServe.props
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets\msbuild.buildTransitive.WmsMobileServe.props
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets.pack.json
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\scopedcss\bundle\WmsMobileServe.styles.css
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobil.9D52FE47.Up2Date
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\refint\WmsMobileServe.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.pdb
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.genruntimeconfig.cache
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\ref\WmsMobileServe.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\appsettings.Development.json
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\appsettings.json
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\WmsMobileServe.exe
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\WmsMobileServe.deps.json
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\WmsMobileServe.runtimeconfig.json
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\WmsMobileServe.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\WmsMobileServe.pdb
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Autofac.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Autofac.Extensions.DependencyInjection.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Azure.Core.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Azure.Identity.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Bcl.AsyncInterfaces.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Data.SqlClient.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Data.Sqlite.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Identity.Client.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Identity.Client.Extensions.Msal.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.IdentityModel.Abstractions.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.IdentityModel.JsonWebTokens.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.IdentityModel.Logging.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.IdentityModel.Tokens.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.SqlServer.Server.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Win32.SystemEvents.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\MySqlConnector.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Newtonsoft.Json.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Npgsql.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Oracle.ManagedDataAccess.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Oscar.Data.SqlClient.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\SQLitePCLRaw.batteries_v2.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\SQLitePCLRaw.core.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\SQLitePCLRaw.provider.e_sqlite3.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\SqlSugar.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\DM.DmProvider.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Kdbndp.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.ClientModel.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Configuration.ConfigurationManager.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Diagnostics.PerformanceCounter.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.DirectoryServices.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.DirectoryServices.Protocols.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Drawing.Common.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.IdentityModel.Tokens.Jwt.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Memory.Data.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Runtime.Caching.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Security.Cryptography.ProtectedData.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Security.Permissions.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Windows.Extensions.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\de\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\es\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\fr\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\it\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\ja\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\ko\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\pt-BR\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\ru\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\zh-Hans\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\zh-Hant\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\unix\lib\net8.0\Microsoft.Data.SqlClient.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net8.0\Microsoft.Data.SqlClient.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\browser-wasm\nativeassets\net8.0\e_sqlite3.a
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-arm\native\libe_sqlite3.so
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-arm64\native\libe_sqlite3.so
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-armel\native\libe_sqlite3.so
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-mips64\native\libe_sqlite3.so
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-musl-arm\native\libe_sqlite3.so
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-musl-arm64\native\libe_sqlite3.so
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-musl-x64\native\libe_sqlite3.so
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-ppc64le\native\libe_sqlite3.so
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-s390x\native\libe_sqlite3.so
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-x64\native\libe_sqlite3.so
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-x86\native\libe_sqlite3.so
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\maccatalyst-arm64\native\libe_sqlite3.dylib
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\maccatalyst-x64\native\libe_sqlite3.dylib
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\osx-arm64\native\libe_sqlite3.dylib
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\osx-x64\native\libe_sqlite3.dylib
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-arm\native\e_sqlite3.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-arm64\native\e_sqlite3.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-x64\native\e_sqlite3.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-x86\native\e_sqlite3.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Diagnostics.PerformanceCounter.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.DirectoryServices.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux\lib\net6.0\System.DirectoryServices.Protocols.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\osx\lib\net6.0\System.DirectoryServices.Protocols.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.DirectoryServices.Protocols.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net8.0\System.Runtime.Caching.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.csproj.AssemblyReference.cache
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.AssemblyInfoInputs.cache
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.AssemblyInfo.cs
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.csproj.CoreCompileInputs.cache
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.MvcApplicationPartsAssemblyInfo.cache
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets.build.json
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets.development.json
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets\msbuild.WmsMobileServe.Microsoft.AspNetCore.StaticWebAssets.props
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets\msbuild.build.WmsMobileServe.props
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets\msbuild.buildMultiTargeting.WmsMobileServe.props
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets\msbuild.buildTransitive.WmsMobileServe.props
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets.pack.json
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\scopedcss\bundle\WmsMobileServe.styles.css
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobil.9D52FE47.Up2Date
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\refint\WmsMobileServe.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.pdb
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.genruntimeconfig.cache
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\ref\WmsMobileServe.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\appsettings.Development.json
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\appsettings.json
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\WmsMobileServe.staticwebassets.endpoints.json
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\WmsMobileServe.exe
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\WmsMobileServe.deps.json
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\WmsMobileServe.runtimeconfig.json
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\WmsMobileServe.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\WmsMobileServe.pdb
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Autofac.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Autofac.Extensions.DependencyInjection.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Azure.Core.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Azure.Identity.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Bcl.AsyncInterfaces.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Data.SqlClient.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Data.Sqlite.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Identity.Client.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Identity.Client.Extensions.Msal.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.IdentityModel.Abstractions.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.IdentityModel.JsonWebTokens.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.IdentityModel.Logging.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.IdentityModel.Tokens.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.SqlServer.Server.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Microsoft.Win32.SystemEvents.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\MySqlConnector.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Newtonsoft.Json.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Npgsql.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Oracle.ManagedDataAccess.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Oscar.Data.SqlClient.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\SQLitePCLRaw.batteries_v2.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\SQLitePCLRaw.core.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\SQLitePCLRaw.provider.e_sqlite3.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\SqlSugar.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\DM.DmProvider.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\Kdbndp.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.ClientModel.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Configuration.ConfigurationManager.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Diagnostics.PerformanceCounter.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.DirectoryServices.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.DirectoryServices.Protocols.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Drawing.Common.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.IdentityModel.Tokens.Jwt.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Memory.Data.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Runtime.Caching.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Security.Cryptography.ProtectedData.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Security.Permissions.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\System.Windows.Extensions.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\de\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\es\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\fr\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\it\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\ja\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\ko\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\pt-BR\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\ru\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\zh-Hans\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\zh-Hant\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\unix\lib\net8.0\Microsoft.Data.SqlClient.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net8.0\Microsoft.Data.SqlClient.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\browser-wasm\nativeassets\net8.0\e_sqlite3.a
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-arm\native\libe_sqlite3.so
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-arm64\native\libe_sqlite3.so
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-armel\native\libe_sqlite3.so
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-mips64\native\libe_sqlite3.so
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-musl-arm\native\libe_sqlite3.so
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-musl-arm64\native\libe_sqlite3.so
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-musl-x64\native\libe_sqlite3.so
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-ppc64le\native\libe_sqlite3.so
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-s390x\native\libe_sqlite3.so
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-x64\native\libe_sqlite3.so
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux-x86\native\libe_sqlite3.so
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\maccatalyst-arm64\native\libe_sqlite3.dylib
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\maccatalyst-x64\native\libe_sqlite3.dylib
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\osx-arm64\native\libe_sqlite3.dylib
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\osx-x64\native\libe_sqlite3.dylib
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-arm\native\e_sqlite3.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-arm64\native\e_sqlite3.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-x64\native\e_sqlite3.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win-x86\native\e_sqlite3.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Diagnostics.PerformanceCounter.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.DirectoryServices.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\linux\lib\net6.0\System.DirectoryServices.Protocols.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\osx\lib\net6.0\System.DirectoryServices.Protocols.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.DirectoryServices.Protocols.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net8.0\System.Runtime.Caching.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.csproj.AssemblyReference.cache
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.AssemblyInfoInputs.cache
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.AssemblyInfo.cs
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.csproj.CoreCompileInputs.cache
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.MvcApplicationPartsAssemblyInfo.cache
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\scopedcss\bundle\WmsMobileServe.styles.css
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets.build.json
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets.development.json
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets.build.endpoints.json
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets\msbuild.WmsMobileServe.Microsoft.AspNetCore.StaticWebAssets.props
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets\msbuild.WmsMobileServe.Microsoft.AspNetCore.StaticWebAssetEndpoints.props
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets\msbuild.build.WmsMobileServe.props
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets\msbuild.buildMultiTargeting.WmsMobileServe.props
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets\msbuild.buildTransitive.WmsMobileServe.props
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets.pack.json
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\staticwebassets.upToDateCheck.txt
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobil.9D52FE47.Up2Date
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\refint\WmsMobileServe.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.pdb
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\WmsMobileServe.genruntimeconfig.cache
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Debug\net8.0\ref\WmsMobileServe.dll
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -1 +1 @@
|
||||||
ea4146c0425584f0aac77d16435fcf84ce8cc24d8b36018af67282d71b9a8c6b
|
a93a780ba03f4372f09e33fae6fbd2d75323bbc18476e642393963c18d3df46d
|
||||||
|
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -1,11 +1,12 @@
|
||||||
{
|
{
|
||||||
"Version": 1,
|
"Version": 1,
|
||||||
"Hash": "no2FY122M3c5wMy0eUk7qMP8sKcnK8IabNLWFD0lv/4=",
|
"Hash": "s0ixjdE0vfpcQcKW0q1h/PVylzGSTafFiPTdU+3V9ZQ=",
|
||||||
"Source": "WmsMobileServe",
|
"Source": "WmsMobileServe",
|
||||||
"BasePath": "_content/WmsMobileServe",
|
"BasePath": "_content/WmsMobileServe",
|
||||||
"Mode": "Default",
|
"Mode": "Default",
|
||||||
"ManifestType": "Build",
|
"ManifestType": "Build",
|
||||||
"ReferencedProjectsConfiguration": [],
|
"ReferencedProjectsConfiguration": [],
|
||||||
"DiscoveryPatterns": [],
|
"DiscoveryPatterns": [],
|
||||||
"Assets": []
|
"Assets": [],
|
||||||
|
"Endpoints": []
|
||||||
}
|
}
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
<Project>
|
<Project>
|
||||||
|
<Import Project="Microsoft.AspNetCore.StaticWebAssetEndpoints.props" />
|
||||||
<Import Project="Microsoft.AspNetCore.StaticWebAssets.props" />
|
<Import Project="Microsoft.AspNetCore.StaticWebAssets.props" />
|
||||||
</Project>
|
</Project>
|
||||||
|
|
@ -1,9 +1,10 @@
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
// <auto-generated>
|
// <auto-generated>
|
||||||
// This code was generated by a tool.
|
// 此代码由工具生成。
|
||||||
|
// 运行时版本:4.0.30319.42000
|
||||||
//
|
//
|
||||||
// Changes to this file may cause incorrect behavior and will be lost if
|
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||||
// the code is regenerated.
|
// 重新生成代码,这些更改将会丢失。
|
||||||
// </auto-generated>
|
// </auto-generated>
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -13,7 +14,7 @@ using System.Reflection;
|
||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("WmsMobileServe")]
|
[assembly: System.Reflection.AssemblyCompanyAttribute("WmsMobileServe")]
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a7da6f0255148dcc63118c774686c5d7598a10ac")]
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6c0441e7646198c6d0803ea33a3b619005fa7be")]
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("WmsMobileServe")]
|
[assembly: System.Reflection.AssemblyProductAttribute("WmsMobileServe")]
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("WmsMobileServe")]
|
[assembly: System.Reflection.AssemblyTitleAttribute("WmsMobileServe")]
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
7612ee502144279321ac41faf810fc219847daadcbfda97da9631a2ea429bfdb
|
5cb87d9e86c1ccdc353eb796d6f172322d696f9214a5444ce6fff0e2ba857a8f
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,4 @@
|
||||||
is_global = true
|
is_global = true
|
||||||
build_property.EnableAotAnalyzer =
|
|
||||||
build_property.EnableSingleFileAnalyzer =
|
|
||||||
build_property.EnableTrimAnalyzer =
|
|
||||||
build_property.IncludeAllContentForSelfExtract =
|
|
||||||
build_property.TargetFramework = net8.0
|
build_property.TargetFramework = net8.0
|
||||||
build_property.TargetPlatformMinVersion =
|
build_property.TargetPlatformMinVersion =
|
||||||
build_property.UsingMicrosoftNETSdkWeb = true
|
build_property.UsingMicrosoftNETSdkWeb = true
|
||||||
|
|
@ -13,11 +9,13 @@ build_property.EnforceExtendedAnalyzerRules =
|
||||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||||
build_property.RootNamespace = WmsMobileServe
|
build_property.RootNamespace = WmsMobileServe
|
||||||
build_property.RootNamespace = WmsMobileServe
|
build_property.RootNamespace = WmsMobileServe
|
||||||
build_property.ProjectDir = F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\
|
build_property.ProjectDir = D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\
|
||||||
build_property.EnableComHosting =
|
build_property.EnableComHosting =
|
||||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||||
build_property.RazorLangVersion = 8.0
|
build_property.RazorLangVersion = 8.0
|
||||||
build_property.SupportLocalizedComponentNames =
|
build_property.SupportLocalizedComponentNames =
|
||||||
build_property.GenerateRazorMetadataSourceChecksumAttributes =
|
build_property.GenerateRazorMetadataSourceChecksumAttributes =
|
||||||
build_property.MSBuildProjectDirectory = F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe
|
build_property.MSBuildProjectDirectory = D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe
|
||||||
build_property._RazorSourceGeneratorDebug =
|
build_property._RazorSourceGeneratorDebug =
|
||||||
|
build_property.EffectiveAnalysisLevelStyle = 8.0
|
||||||
|
build_property.EnableCodeStyleSeverity =
|
||||||
|
|
|
||||||
Binary file not shown.
Binary file not shown.
|
|
@ -1 +1 @@
|
||||||
90da5e51f7a402d8f0875de768bd55acbb03b0d7117f037e928bd2605c233445
|
51870ad9af58c2a68f8d62b4f6e329cb32bc4d0619d199730b2c32ddf869e31b
|
||||||
|
|
|
||||||
|
|
@ -226,3 +226,235 @@ F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Rel
|
||||||
F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobil.9D52FE47.Up2Date
|
F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobil.9D52FE47.Up2Date
|
||||||
F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.genruntimeconfig.cache
|
F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.genruntimeconfig.cache
|
||||||
F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\ref\WmsMobileServe.dll
|
F:\AndriodProject\2024_11_JinWang_lengDong\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\ref\WmsMobileServe.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\appsettings.Development.json
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\appsettings.json
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\WmsMobileServe.exe
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\WmsMobileServe.deps.json
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\WmsMobileServe.runtimeconfig.json
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\WmsMobileServe.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\WmsMobileServe.pdb
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Autofac.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Autofac.Extensions.DependencyInjection.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Azure.Core.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Azure.Identity.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.Bcl.AsyncInterfaces.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.Data.SqlClient.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.Data.Sqlite.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.Identity.Client.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.Identity.Client.Extensions.Msal.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.IdentityModel.Abstractions.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.IdentityModel.JsonWebTokens.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.IdentityModel.Logging.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.IdentityModel.Protocols.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.IdentityModel.Tokens.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.SqlServer.Server.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.Win32.SystemEvents.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\MySqlConnector.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Newtonsoft.Json.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Npgsql.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Oracle.ManagedDataAccess.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Oscar.Data.SqlClient.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\SQLitePCLRaw.batteries_v2.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\SQLitePCLRaw.core.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\SQLitePCLRaw.provider.e_sqlite3.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\SqlSugar.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\DM.DmProvider.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Kdbndp.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.ClientModel.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.Configuration.ConfigurationManager.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.Diagnostics.PerformanceCounter.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.DirectoryServices.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.DirectoryServices.Protocols.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.Drawing.Common.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.IdentityModel.Tokens.Jwt.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.Memory.Data.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.Runtime.Caching.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.Security.Cryptography.ProtectedData.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.Security.Permissions.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.Windows.Extensions.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\de\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\es\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\fr\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\it\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\ja\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\ko\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\pt-BR\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\ru\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\zh-Hans\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\zh-Hant\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\unix\lib\net8.0\Microsoft.Data.SqlClient.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win\lib\net8.0\Microsoft.Data.SqlClient.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\browser-wasm\nativeassets\net8.0\e_sqlite3.a
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-arm\native\libe_sqlite3.so
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-arm64\native\libe_sqlite3.so
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-armel\native\libe_sqlite3.so
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-mips64\native\libe_sqlite3.so
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-musl-arm\native\libe_sqlite3.so
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-musl-arm64\native\libe_sqlite3.so
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-musl-x64\native\libe_sqlite3.so
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-ppc64le\native\libe_sqlite3.so
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-s390x\native\libe_sqlite3.so
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-x64\native\libe_sqlite3.so
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-x86\native\libe_sqlite3.so
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\maccatalyst-arm64\native\libe_sqlite3.dylib
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\maccatalyst-x64\native\libe_sqlite3.dylib
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\osx-arm64\native\libe_sqlite3.dylib
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\osx-x64\native\libe_sqlite3.dylib
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win-arm\native\e_sqlite3.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win-arm64\native\e_sqlite3.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win-x64\native\e_sqlite3.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win-x86\native\e_sqlite3.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win\lib\net6.0\System.Diagnostics.PerformanceCounter.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win\lib\net6.0\System.DirectoryServices.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux\lib\net6.0\System.DirectoryServices.Protocols.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\osx\lib\net6.0\System.DirectoryServices.Protocols.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win\lib\net6.0\System.DirectoryServices.Protocols.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win\lib\net8.0\System.Runtime.Caching.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.csproj.AssemblyReference.cache
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.AssemblyInfoInputs.cache
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.AssemblyInfo.cs
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.csproj.CoreCompileInputs.cache
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.MvcApplicationPartsAssemblyInfo.cache
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\staticwebassets.build.json
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\staticwebassets.development.json
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\staticwebassets\msbuild.WmsMobileServe.Microsoft.AspNetCore.StaticWebAssets.props
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\staticwebassets\msbuild.build.WmsMobileServe.props
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\staticwebassets\msbuild.buildMultiTargeting.WmsMobileServe.props
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\staticwebassets\msbuild.buildTransitive.WmsMobileServe.props
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\staticwebassets.pack.json
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\scopedcss\bundle\WmsMobileServe.styles.css
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobil.9D52FE47.Up2Date
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\refint\WmsMobileServe.dll
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.pdb
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.genruntimeconfig.cache
|
||||||
|
E:\WeChat\WeChat Files\wxid_kxr7xegrzz9u22\FileStorage\File\2025-03\WmsMobileServe(1)\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\ref\WmsMobileServe.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\appsettings.Development.json
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\appsettings.json
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\WmsMobileServe.staticwebassets.endpoints.json
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\WmsMobileServe.exe
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\WmsMobileServe.deps.json
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\WmsMobileServe.runtimeconfig.json
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\WmsMobileServe.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\WmsMobileServe.pdb
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Autofac.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Autofac.Extensions.DependencyInjection.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Azure.Core.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Azure.Identity.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.Bcl.AsyncInterfaces.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.Data.SqlClient.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.Data.Sqlite.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.Identity.Client.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.Identity.Client.Extensions.Msal.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.IdentityModel.Abstractions.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.IdentityModel.JsonWebTokens.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.IdentityModel.Logging.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.IdentityModel.Protocols.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.IdentityModel.Tokens.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.SqlServer.Server.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Microsoft.Win32.SystemEvents.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\MySqlConnector.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Newtonsoft.Json.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Npgsql.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Oracle.ManagedDataAccess.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Oscar.Data.SqlClient.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\SQLitePCLRaw.batteries_v2.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\SQLitePCLRaw.core.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\SQLitePCLRaw.provider.e_sqlite3.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\SqlSugar.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\DM.DmProvider.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\Kdbndp.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.ClientModel.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.Configuration.ConfigurationManager.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.Diagnostics.PerformanceCounter.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.DirectoryServices.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.DirectoryServices.Protocols.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.Drawing.Common.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.IdentityModel.Tokens.Jwt.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.Memory.Data.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.Runtime.Caching.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.Security.Cryptography.ProtectedData.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.Security.Permissions.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\System.Windows.Extensions.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\de\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\es\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\fr\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\it\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\ja\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\ko\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\pt-BR\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\ru\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\zh-Hans\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\zh-Hant\Microsoft.Data.SqlClient.resources.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\unix\lib\net8.0\Microsoft.Data.SqlClient.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win\lib\net8.0\Microsoft.Data.SqlClient.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\browser-wasm\nativeassets\net8.0\e_sqlite3.a
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-arm\native\libe_sqlite3.so
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-arm64\native\libe_sqlite3.so
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-armel\native\libe_sqlite3.so
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-mips64\native\libe_sqlite3.so
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-musl-arm\native\libe_sqlite3.so
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-musl-arm64\native\libe_sqlite3.so
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-musl-x64\native\libe_sqlite3.so
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-ppc64le\native\libe_sqlite3.so
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-s390x\native\libe_sqlite3.so
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-x64\native\libe_sqlite3.so
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux-x86\native\libe_sqlite3.so
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\maccatalyst-arm64\native\libe_sqlite3.dylib
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\maccatalyst-x64\native\libe_sqlite3.dylib
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\osx-arm64\native\libe_sqlite3.dylib
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\osx-x64\native\libe_sqlite3.dylib
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win-arm\native\e_sqlite3.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win-arm64\native\e_sqlite3.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win-x64\native\e_sqlite3.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win-x86\native\e_sqlite3.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win\lib\net6.0\System.Diagnostics.PerformanceCounter.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win\lib\net6.0\System.DirectoryServices.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\linux\lib\net6.0\System.DirectoryServices.Protocols.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\osx\lib\net6.0\System.DirectoryServices.Protocols.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win\lib\net6.0\System.DirectoryServices.Protocols.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win\lib\net8.0\System.Runtime.Caching.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.csproj.AssemblyReference.cache
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.AssemblyInfoInputs.cache
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.AssemblyInfo.cs
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.csproj.CoreCompileInputs.cache
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.MvcApplicationPartsAssemblyInfo.cache
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\scopedcss\bundle\WmsMobileServe.styles.css
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\staticwebassets.build.json
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\staticwebassets.development.json
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\staticwebassets.build.endpoints.json
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\staticwebassets\msbuild.WmsMobileServe.Microsoft.AspNetCore.StaticWebAssets.props
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\staticwebassets\msbuild.WmsMobileServe.Microsoft.AspNetCore.StaticWebAssetEndpoints.props
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\staticwebassets\msbuild.build.WmsMobileServe.props
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\staticwebassets\msbuild.buildMultiTargeting.WmsMobileServe.props
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\staticwebassets\msbuild.buildTransitive.WmsMobileServe.props
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\staticwebassets.pack.json
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\staticwebassets.upToDateCheck.txt
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobil.9D52FE47.Up2Date
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\refint\WmsMobileServe.dll
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.pdb
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\WmsMobileServe.genruntimeconfig.cache
|
||||||
|
D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\obj\Release\net8.0\ref\WmsMobileServe.dll
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -1 +1 @@
|
||||||
5ef42e92c31c07e8e4897a791a0fa71b86c1340c2d56213750cb322a94afe040
|
8da419e7424770883fe31157f6d5a17d88009add301fbd3b033d95a9c5bed643
|
||||||
|
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -1,11 +1,12 @@
|
||||||
{
|
{
|
||||||
"Version": 1,
|
"Version": 1,
|
||||||
"Hash": "no2FY122M3c5wMy0eUk7qMP8sKcnK8IabNLWFD0lv/4=",
|
"Hash": "s0ixjdE0vfpcQcKW0q1h/PVylzGSTafFiPTdU+3V9ZQ=",
|
||||||
"Source": "WmsMobileServe",
|
"Source": "WmsMobileServe",
|
||||||
"BasePath": "_content/WmsMobileServe",
|
"BasePath": "_content/WmsMobileServe",
|
||||||
"Mode": "Default",
|
"Mode": "Default",
|
||||||
"ManifestType": "Build",
|
"ManifestType": "Build",
|
||||||
"ReferencedProjectsConfiguration": [],
|
"ReferencedProjectsConfiguration": [],
|
||||||
"DiscoveryPatterns": [],
|
"DiscoveryPatterns": [],
|
||||||
"Assets": []
|
"Assets": [],
|
||||||
|
"Endpoints": []
|
||||||
}
|
}
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
<Project>
|
<Project>
|
||||||
|
<Import Project="Microsoft.AspNetCore.StaticWebAssetEndpoints.props" />
|
||||||
<Import Project="Microsoft.AspNetCore.StaticWebAssets.props" />
|
<Import Project="Microsoft.AspNetCore.StaticWebAssets.props" />
|
||||||
</Project>
|
</Project>
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1,7 @@
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\publish\appsettings.Development.json
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\publish\appsettings.json
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\publish\WmsMobileServe.pdb
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\publish\aspnetcorev2_inprocess.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\publish\Microsoft.Data.SqlClient.SNI.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\publish\e_sqlite3.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\publish\WmsMobileServe.exe
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
F:\AndriodProject\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\publish\appsettings.Development.json
|
||||||
|
F:\AndriodProject\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\publish\appsettings.json
|
||||||
|
F:\AndriodProject\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\publish\WmsMobileServe.pdb
|
||||||
|
F:\AndriodProject\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\publish\aspnetcorev2_inprocess.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\publish\Microsoft.Data.SqlClient.SNI.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\publish\e_sqlite3.dll
|
||||||
|
F:\AndriodProject\2024_11_JinWang_ChengPing\WmsMobileServe\WmsMobileServe\bin\Release\net8.0\win-x64\publish\WmsMobileServe.exe
|
||||||
|
|
@ -1,9 +1,10 @@
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
// <auto-generated>
|
// <auto-generated>
|
||||||
// This code was generated by a tool.
|
// 此代码由工具生成。
|
||||||
|
// 运行时版本:4.0.30319.42000
|
||||||
//
|
//
|
||||||
// Changes to this file may cause incorrect behavior and will be lost if
|
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||||
// the code is regenerated.
|
// 重新生成代码,这些更改将会丢失。
|
||||||
// </auto-generated>
|
// </auto-generated>
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -13,7 +14,7 @@ using System.Reflection;
|
||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("WmsMobileServe")]
|
[assembly: System.Reflection.AssemblyCompanyAttribute("WmsMobileServe")]
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a7da6f0255148dcc63118c774686c5d7598a10ac")]
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6c0441e7646198c6d0803ea33a3b619005fa7be")]
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("WmsMobileServe")]
|
[assembly: System.Reflection.AssemblyProductAttribute("WmsMobileServe")]
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("WmsMobileServe")]
|
[assembly: System.Reflection.AssemblyTitleAttribute("WmsMobileServe")]
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
7612ee502144279321ac41faf810fc219847daadcbfda97da9631a2ea429bfdb
|
5cb87d9e86c1ccdc353eb796d6f172322d696f9214a5444ce6fff0e2ba857a8f
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ is_global = true
|
||||||
build_property.EnableAotAnalyzer =
|
build_property.EnableAotAnalyzer =
|
||||||
build_property.EnableSingleFileAnalyzer = true
|
build_property.EnableSingleFileAnalyzer = true
|
||||||
build_property.EnableTrimAnalyzer =
|
build_property.EnableTrimAnalyzer =
|
||||||
build_property.IncludeAllContentForSelfExtract = false
|
build_property.IncludeAllContentForSelfExtract =
|
||||||
build_property.TargetFramework = net8.0
|
build_property.TargetFramework = net8.0
|
||||||
build_property.TargetPlatformMinVersion =
|
build_property.TargetPlatformMinVersion =
|
||||||
build_property.UsingMicrosoftNETSdkWeb = true
|
build_property.UsingMicrosoftNETSdkWeb = true
|
||||||
|
|
@ -13,11 +13,13 @@ build_property.EnforceExtendedAnalyzerRules =
|
||||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||||
build_property.RootNamespace = WmsMobileServe
|
build_property.RootNamespace = WmsMobileServe
|
||||||
build_property.RootNamespace = WmsMobileServe
|
build_property.RootNamespace = WmsMobileServe
|
||||||
build_property.ProjectDir = F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe\
|
build_property.ProjectDir = D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe\
|
||||||
build_property.EnableComHosting =
|
build_property.EnableComHosting =
|
||||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||||
build_property.RazorLangVersion = 8.0
|
build_property.RazorLangVersion = 8.0
|
||||||
build_property.SupportLocalizedComponentNames =
|
build_property.SupportLocalizedComponentNames =
|
||||||
build_property.GenerateRazorMetadataSourceChecksumAttributes =
|
build_property.GenerateRazorMetadataSourceChecksumAttributes =
|
||||||
build_property.MSBuildProjectDirectory = F:\AndriodProject\2024_11_JinWang_BanCai\WmsMobileServe\WmsMobileServe
|
build_property.MSBuildProjectDirectory = D:\成品仓库\CPCWmsMobileServe\WmsMobileServe\WmsMobileServe
|
||||||
build_property._RazorSourceGeneratorDebug =
|
build_property._RazorSourceGeneratorDebug =
|
||||||
|
build_property.EffectiveAnalysisLevelStyle = 8.0
|
||||||
|
build_property.EnableCodeStyleSeverity =
|
||||||
|
|
|
||||||
Binary file not shown.
Binary file not shown.
|
|
@ -1 +1 @@
|
||||||
888e1690f56cbb82c040ac22a79df3ee68d4e31f94c1bf6967d4a02514a796df
|
172080f1c4876e8008a8087b4061d581d0b973f557c1f2153ea5be427de7f547
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
|
|
@ -1 +1 @@
|
||||||
b5b114dee2b806c7c3e112de77c4473c6b616b557e10690dbd58ea2179815d85
|
3008ef5a148198f890c3323682c27265208e0be20a0be0eb2911a0f012896eae
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
aaee9269bab2170af35f3082791cbce5d3cd992e11353db74550d30b82e232df
|
c5cc7abeaac7cb7328ff1e39382144b2981cbce7c73791bc1599761c577fc462
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
698cfa7a294c9e39fb0f63f8e35bf542113d670d97fdc0eb62419c1a899d96d4
|
145435e8f54408f05d6b432a7baf57ae5506c99f90d46d548a5e781d64542548
|
||||||
|
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -1,11 +1,12 @@
|
||||||
{
|
{
|
||||||
"Version": 1,
|
"Version": 1,
|
||||||
"Hash": "no2FY122M3c5wMy0eUk7qMP8sKcnK8IabNLWFD0lv/4=",
|
"Hash": "s0ixjdE0vfpcQcKW0q1h/PVylzGSTafFiPTdU+3V9ZQ=",
|
||||||
"Source": "WmsMobileServe",
|
"Source": "WmsMobileServe",
|
||||||
"BasePath": "_content/WmsMobileServe",
|
"BasePath": "_content/WmsMobileServe",
|
||||||
"Mode": "Default",
|
"Mode": "Default",
|
||||||
"ManifestType": "Build",
|
"ManifestType": "Build",
|
||||||
"ReferencedProjectsConfiguration": [],
|
"ReferencedProjectsConfiguration": [],
|
||||||
"DiscoveryPatterns": [],
|
"DiscoveryPatterns": [],
|
||||||
"Assets": []
|
"Assets": [],
|
||||||
|
"Endpoints": []
|
||||||
}
|
}
|
||||||
|
|
@ -1,11 +1,12 @@
|
||||||
{
|
{
|
||||||
"Version": 1,
|
"Version": 1,
|
||||||
"Hash": "bar20eruJ95aBiaIcDQGJNJWgH+FjzBw3arFz9xpW1E=",
|
"Hash": "Pif/4MRtcPM5yWk2BEOMHkUbgBCfCHFMDdg85ea+xek=",
|
||||||
"Source": "WmsMobileServe",
|
"Source": "WmsMobileServe",
|
||||||
"BasePath": "_content/WmsMobileServe",
|
"BasePath": "_content/WmsMobileServe",
|
||||||
"Mode": "Default",
|
"Mode": "Default",
|
||||||
"ManifestType": "Publish",
|
"ManifestType": "Publish",
|
||||||
"ReferencedProjectsConfiguration": [],
|
"ReferencedProjectsConfiguration": [],
|
||||||
"DiscoveryPatterns": [],
|
"DiscoveryPatterns": [],
|
||||||
"Assets": []
|
"Assets": [],
|
||||||
|
"Endpoints": []
|
||||||
}
|
}
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
<Project>
|
<Project>
|
||||||
|
<Import Project="Microsoft.AspNetCore.StaticWebAssetEndpoints.props" />
|
||||||
<Import Project="Microsoft.AspNetCore.StaticWebAssets.props" />
|
<Import Project="Microsoft.AspNetCore.StaticWebAssets.props" />
|
||||||
</Project>
|
</Project>
|
||||||
|
|
@ -1,23 +1,25 @@
|
||||||
{
|
{
|
||||||
"format": 1,
|
"format": 1,
|
||||||
"restore": {
|
"restore": {
|
||||||
"F:\\AndriodProject\\2024_11_JinWang_ChengPing\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj": {}
|
"D:\\成品仓库\\CPCWmsMobileServe\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj": {}
|
||||||
},
|
},
|
||||||
"projects": {
|
"projects": {
|
||||||
"F:\\AndriodProject\\2024_11_JinWang_ChengPing\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj": {
|
"D:\\成品仓库\\CPCWmsMobileServe\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\AndriodProject\\2024_11_JinWang_ChengPing\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj",
|
"projectUniqueName": "D:\\成品仓库\\CPCWmsMobileServe\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj",
|
||||||
"projectName": "WmsMobileServe",
|
"projectName": "WmsMobileServe",
|
||||||
"projectPath": "F:\\AndriodProject\\2024_11_JinWang_ChengPing\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj",
|
"projectPath": "D:\\成品仓库\\CPCWmsMobileServe\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj",
|
||||||
"packagesPath": "C:\\Users\\icewi\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\abc\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\AndriodProject\\2024_11_JinWang_ChengPing\\WmsMobileServe\\WmsMobileServe\\obj\\",
|
"outputPath": "D:\\成品仓库\\CPCWmsMobileServe\\WmsMobileServe\\WmsMobileServe\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"D:\\Microsoft\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
"C:\\Program Files\\DevExpress 22.2\\Components\\Offline Packages",
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||||
],
|
],
|
||||||
"configFilePaths": [
|
"configFilePaths": [
|
||||||
"C:\\Users\\icewi\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
"C:\\Users\\abc\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||||
|
"C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.2.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||||
],
|
],
|
||||||
|
|
@ -26,10 +28,8 @@
|
||||||
],
|
],
|
||||||
"sources": {
|
"sources": {
|
||||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||||
"C:\\Program Files\\dotnet\\library-packs": {},
|
"C:\\Program Files\\DevExpress 22.2\\Components\\System\\Components\\Packages": {},
|
||||||
"https://api.nuget.org/v3/index.json": {},
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
"https://nuget.cdn.azure.cn/v3/index.json": {},
|
|
||||||
"https://www.nuget.org/api/v2/": {}
|
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"net8.0": {
|
"net8.0": {
|
||||||
|
|
@ -46,7 +46,8 @@
|
||||||
"enableAudit": "true",
|
"enableAudit": "true",
|
||||||
"auditLevel": "low",
|
"auditLevel": "low",
|
||||||
"auditMode": "direct"
|
"auditMode": "direct"
|
||||||
}
|
},
|
||||||
|
"SdkAnalysisLevel": "9.0.100"
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"net8.0": {
|
"net8.0": {
|
||||||
|
|
@ -88,7 +89,7 @@
|
||||||
"privateAssets": "all"
|
"privateAssets": "all"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101/PortableRuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,13 @@
|
||||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\icewi\.nuget\packages\;D:\Microsoft\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\abc\.nuget\packages\;C:\Program Files\DevExpress 22.2\Components\Offline Packages;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.12.2</NuGetToolVersion>
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.12.2</NuGetToolVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
<SourceRoot Include="C:\Users\icewi\.nuget\packages\" />
|
<SourceRoot Include="C:\Users\abc\.nuget\packages\" />
|
||||||
<SourceRoot Include="D:\Microsoft\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
<SourceRoot Include="C:\Program Files\DevExpress 22.2\Components\Offline Packages\" />
|
||||||
|
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
@ -3815,23 +3815,26 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"packageFolders": {
|
"packageFolders": {
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\": {},
|
"C:\\Users\\abc\\.nuget\\packages\\": {},
|
||||||
"D:\\Microsoft\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
|
"C:\\Program Files\\DevExpress 22.2\\Components\\Offline Packages": {},
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
|
||||||
},
|
},
|
||||||
"project": {
|
"project": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\AndriodProject\\2024_11_JinWang_ChengPing\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj",
|
"projectUniqueName": "D:\\成品仓库\\CPCWmsMobileServe\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj",
|
||||||
"projectName": "WmsMobileServe",
|
"projectName": "WmsMobileServe",
|
||||||
"projectPath": "F:\\AndriodProject\\2024_11_JinWang_ChengPing\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj",
|
"projectPath": "D:\\成品仓库\\CPCWmsMobileServe\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj",
|
||||||
"packagesPath": "C:\\Users\\icewi\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\abc\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\AndriodProject\\2024_11_JinWang_ChengPing\\WmsMobileServe\\WmsMobileServe\\obj\\",
|
"outputPath": "D:\\成品仓库\\CPCWmsMobileServe\\WmsMobileServe\\WmsMobileServe\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"D:\\Microsoft\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
"C:\\Program Files\\DevExpress 22.2\\Components\\Offline Packages",
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||||
],
|
],
|
||||||
"configFilePaths": [
|
"configFilePaths": [
|
||||||
"C:\\Users\\icewi\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
"C:\\Users\\abc\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||||
|
"C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.2.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||||
],
|
],
|
||||||
|
|
@ -3840,10 +3843,8 @@
|
||||||
],
|
],
|
||||||
"sources": {
|
"sources": {
|
||||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||||
"C:\\Program Files\\dotnet\\library-packs": {},
|
"C:\\Program Files\\DevExpress 22.2\\Components\\System\\Components\\Packages": {},
|
||||||
"https://api.nuget.org/v3/index.json": {},
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
"https://nuget.cdn.azure.cn/v3/index.json": {},
|
|
||||||
"https://www.nuget.org/api/v2/": {}
|
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"net8.0": {
|
"net8.0": {
|
||||||
|
|
@ -3860,7 +3861,8 @@
|
||||||
"enableAudit": "true",
|
"enableAudit": "true",
|
||||||
"auditLevel": "low",
|
"auditLevel": "low",
|
||||||
"auditMode": "direct"
|
"auditMode": "direct"
|
||||||
}
|
},
|
||||||
|
"SdkAnalysisLevel": "9.0.100"
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"net8.0": {
|
"net8.0": {
|
||||||
|
|
@ -3902,7 +3904,7 @@
|
||||||
"privateAssets": "all"
|
"privateAssets": "all"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101/PortableRuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,81 +1,81 @@
|
||||||
{
|
{
|
||||||
"version": 2,
|
"version": 2,
|
||||||
"dgSpecHash": "0+eHtrC5e7o=",
|
"dgSpecHash": "lEEt8013JXY=",
|
||||||
"success": true,
|
"success": true,
|
||||||
"projectFilePath": "F:\\AndriodProject\\2024_11_JinWang_ChengPing\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj",
|
"projectFilePath": "D:\\成品仓库\\CPCWmsMobileServe\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj",
|
||||||
"expectedPackageFiles": [
|
"expectedPackageFiles": [
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\autofac\\8.1.1\\autofac.8.1.1.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\autofac\\8.1.1\\autofac.8.1.1.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\autofac.extensions.dependencyinjection\\10.0.0\\autofac.extensions.dependencyinjection.10.0.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\autofac.extensions.dependencyinjection\\10.0.0\\autofac.extensions.dependencyinjection.10.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\azure.core\\1.38.0\\azure.core.1.38.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\azure.core\\1.38.0\\azure.core.1.38.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\azure.identity\\1.11.4\\azure.identity.1.11.4.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\azure.identity\\1.11.4\\azure.identity.1.11.4.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\1.1.1\\microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\1.1.1\\microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.data.sqlclient\\5.2.2\\microsoft.data.sqlclient.5.2.2.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.data.sqlclient\\5.2.2\\microsoft.data.sqlclient.5.2.2.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\5.2.0\\microsoft.data.sqlclient.sni.runtime.5.2.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\5.2.0\\microsoft.data.sqlclient.sni.runtime.5.2.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.data.sqlite\\8.0.1\\microsoft.data.sqlite.8.0.1.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.data.sqlite\\8.0.1\\microsoft.data.sqlite.8.0.1.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.data.sqlite.core\\8.0.1\\microsoft.data.sqlite.core.8.0.1.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.data.sqlite.core\\8.0.1\\microsoft.data.sqlite.core.8.0.1.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.1\\microsoft.extensions.dependencyinjection.abstractions.8.0.1.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.1\\microsoft.extensions.dependencyinjection.abstractions.8.0.1.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.identity.client\\4.61.3\\microsoft.identity.client.4.61.3.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.identity.client\\4.61.3\\microsoft.identity.client.4.61.3.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.identity.client.extensions.msal\\4.61.3\\microsoft.identity.client.extensions.msal.4.61.3.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.identity.client.extensions.msal\\4.61.3\\microsoft.identity.client.extensions.msal.4.61.3.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.identitymodel.abstractions\\6.35.0\\microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.identitymodel.abstractions\\6.35.0\\microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.35.0\\microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.35.0\\microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.identitymodel.logging\\6.35.0\\microsoft.identitymodel.logging.6.35.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.identitymodel.logging\\6.35.0\\microsoft.identitymodel.logging.6.35.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.35.0\\microsoft.identitymodel.protocols.6.35.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.35.0\\microsoft.identitymodel.protocols.6.35.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.35.0\\microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.35.0\\microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.35.0\\microsoft.identitymodel.tokens.6.35.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.35.0\\microsoft.identitymodel.tokens.6.35.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.netcore.targets\\1.1.3\\microsoft.netcore.targets.1.1.3.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.netcore.targets\\1.1.3\\microsoft.netcore.targets.1.1.3.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.sqlserver.server\\1.0.0\\microsoft.sqlserver.server.1.0.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.sqlserver.server\\1.0.0\\microsoft.sqlserver.server.1.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\mysqlconnector\\2.2.5\\mysqlconnector.2.2.5.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\mysqlconnector\\2.2.5\\mysqlconnector.2.2.5.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\npgsql\\5.0.18\\npgsql.5.0.18.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\npgsql\\5.0.18\\npgsql.5.0.18.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\oracle.manageddataaccess.core\\3.21.100\\oracle.manageddataaccess.core.3.21.100.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\oracle.manageddataaccess.core\\3.21.100\\oracle.manageddataaccess.core.3.21.100.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\oscar.data.sqlclient\\4.0.4\\oscar.data.sqlclient.4.0.4.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\oscar.data.sqlclient\\4.0.4\\oscar.data.sqlclient.4.0.4.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\sqlitepclraw.bundle_e_sqlite3\\2.1.6\\sqlitepclraw.bundle_e_sqlite3.2.1.6.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\sqlitepclraw.bundle_e_sqlite3\\2.1.6\\sqlitepclraw.bundle_e_sqlite3.2.1.6.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\sqlitepclraw.core\\2.1.6\\sqlitepclraw.core.2.1.6.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\sqlitepclraw.core\\2.1.6\\sqlitepclraw.core.2.1.6.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3\\2.1.6\\sqlitepclraw.lib.e_sqlite3.2.1.6.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3\\2.1.6\\sqlitepclraw.lib.e_sqlite3.2.1.6.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\sqlitepclraw.provider.e_sqlite3\\2.1.6\\sqlitepclraw.provider.e_sqlite3.2.1.6.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\sqlitepclraw.provider.e_sqlite3\\2.1.6\\sqlitepclraw.provider.e_sqlite3.2.1.6.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\sqlsugarcore\\5.1.4.170\\sqlsugarcore.5.1.4.170.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\sqlsugarcore\\5.1.4.170\\sqlsugarcore.5.1.4.170.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\sqlsugarcore.dm\\8.6.0\\sqlsugarcore.dm.8.6.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\sqlsugarcore.dm\\8.6.0\\sqlsugarcore.dm.8.6.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\sqlsugarcore.kdbndp\\9.3.6.925\\sqlsugarcore.kdbndp.9.3.6.925.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\sqlsugarcore.kdbndp\\9.3.6.925\\sqlsugarcore.kdbndp.9.3.6.925.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.clientmodel\\1.0.0\\system.clientmodel.1.0.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.clientmodel\\1.0.0\\system.clientmodel.1.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.configuration.configurationmanager\\8.0.0\\system.configuration.configurationmanager.8.0.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.configuration.configurationmanager\\8.0.0\\system.configuration.configurationmanager.8.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.data.common\\4.3.0\\system.data.common.4.3.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.data.common\\4.3.0\\system.data.common.4.3.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.diagnostics.diagnosticsource\\8.0.1\\system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.diagnostics.diagnosticsource\\8.0.1\\system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.diagnostics.eventlog\\8.0.0\\system.diagnostics.eventlog.8.0.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.diagnostics.eventlog\\8.0.0\\system.diagnostics.eventlog.8.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.diagnostics.performancecounter\\6.0.1\\system.diagnostics.performancecounter.6.0.1.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.diagnostics.performancecounter\\6.0.1\\system.diagnostics.performancecounter.6.0.1.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.directoryservices\\6.0.1\\system.directoryservices.6.0.1.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.directoryservices\\6.0.1\\system.directoryservices.6.0.1.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.directoryservices.protocols\\6.0.1\\system.directoryservices.protocols.6.0.1.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.directoryservices.protocols\\6.0.1\\system.directoryservices.protocols.6.0.1.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.35.0\\system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.35.0\\system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.memory.data\\1.0.2\\system.memory.data.1.0.2.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.memory.data\\1.0.2\\system.memory.data.1.0.2.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.runtime\\4.3.1\\system.runtime.4.3.1.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.runtime\\4.3.1\\system.runtime.4.3.1.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.runtime.caching\\8.0.0\\system.runtime.caching.8.0.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.runtime.caching\\8.0.0\\system.runtime.caching.8.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\4.6.0\\system.runtime.compilerservices.unsafe.4.6.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\4.6.0\\system.runtime.compilerservices.unsafe.4.6.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.security.cryptography.protecteddata\\8.0.0\\system.security.cryptography.protecteddata.8.0.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.security.cryptography.protecteddata\\8.0.0\\system.security.cryptography.protecteddata.8.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.text.encoding.codepages\\5.0.0\\system.text.encoding.codepages.5.0.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.text.encoding.codepages\\5.0.0\\system.text.encoding.codepages.5.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.text.encodings.web\\4.7.2\\system.text.encodings.web.4.7.2.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.text.encodings.web\\4.7.2\\system.text.encodings.web.4.7.2.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.text.json\\4.7.2\\system.text.json.4.7.2.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.text.json\\4.7.2\\system.text.json.4.7.2.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.text.regularexpressions\\4.3.1\\system.text.regularexpressions.4.3.1.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.text.regularexpressions\\4.3.1\\system.text.regularexpressions.4.3.1.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512"
|
"C:\\Users\\abc\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512"
|
||||||
],
|
],
|
||||||
"logs": []
|
"logs": []
|
||||||
}
|
}
|
||||||
|
|
@ -1 +1 @@
|
||||||
"restore":{"projectUniqueName":"F:\\AndriodProject\\2024_11_JinWang_ChengPing\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj","projectName":"WmsMobileServe","projectPath":"F:\\AndriodProject\\2024_11_JinWang_ChengPing\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj","outputPath":"F:\\AndriodProject\\2024_11_JinWang_ChengPing\\WmsMobileServe\\WmsMobileServe\\obj\\","projectStyle":"PackageReference","fallbackFolders":["D:\\Microsoft\\Microsoft Visual Studio\\Shared\\NuGetPackages"],"originalTargetFrameworks":["net8.0"],"sources":{"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\":{},"C:\\Program Files\\dotnet\\library-packs":{},"https://api.nuget.org/v3/index.json":{},"https://nuget.cdn.azure.cn/v3/index.json":{},"https://www.nuget.org/api/v2/":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"Autofac":{"target":"Package","version":"[8.1.1, )"},"Autofac.Extensions.DependencyInjection":{"target":"Package","version":"[10.0.0, )"},"Newtonsoft.Json":{"target":"Package","version":"[13.0.3, )"},"SqlSugarCore":{"target":"Package","version":"[5.1.4.170, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json"}}
|
"restore":{"projectUniqueName":"F:\\AndriodProject\\2024_11_JinWang\\2024_11_JinWang_ChengPing\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj","projectName":"WmsMobileServe","projectPath":"F:\\AndriodProject\\2024_11_JinWang\\2024_11_JinWang_ChengPing\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj","outputPath":"F:\\AndriodProject\\2024_11_JinWang\\2024_11_JinWang_ChengPing\\WmsMobileServe\\WmsMobileServe\\obj\\","projectStyle":"PackageReference","fallbackFolders":["D:\\Microsoft\\Microsoft Visual Studio\\Shared\\NuGetPackages"],"originalTargetFrameworks":["net8.0"],"sources":{"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\":{},"C:\\Program Files\\dotnet\\library-packs":{},"https://api.nuget.org/v3/index.json":{},"https://nuget.cdn.azure.cn/v3/index.json":{},"https://www.nuget.org/api/v2/":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"Autofac":{"target":"Package","version":"[8.1.1, )"},"Autofac.Extensions.DependencyInjection":{"target":"Package","version":"[10.0.0, )"},"Newtonsoft.Json":{"target":"Package","version":"[13.0.3, )"},"SqlSugarCore":{"target":"Package","version":"[5.1.4.170, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json"}}
|
||||||
|
|
@ -1,23 +1,25 @@
|
||||||
{
|
{
|
||||||
"format": 1,
|
"format": 1,
|
||||||
"restore": {
|
"restore": {
|
||||||
"F:\\AndriodProject\\2024_11_JinWang_lengDong\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj": {}
|
"D:\\成品仓库\\CPCWmsMobileServe\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj": {}
|
||||||
},
|
},
|
||||||
"projects": {
|
"projects": {
|
||||||
"F:\\AndriodProject\\2024_11_JinWang_lengDong\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj": {
|
"D:\\成品仓库\\CPCWmsMobileServe\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\AndriodProject\\2024_11_JinWang_lengDong\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj",
|
"projectUniqueName": "D:\\成品仓库\\CPCWmsMobileServe\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj",
|
||||||
"projectName": "WmsMobileServe",
|
"projectName": "WmsMobileServe",
|
||||||
"projectPath": "F:\\AndriodProject\\2024_11_JinWang_lengDong\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj",
|
"projectPath": "D:\\成品仓库\\CPCWmsMobileServe\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj",
|
||||||
"packagesPath": "C:\\Users\\icewi\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\abc\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\AndriodProject\\2024_11_JinWang_lengDong\\WmsMobileServe\\WmsMobileServe\\obj\\publish\\win-x64\\",
|
"outputPath": "D:\\成品仓库\\CPCWmsMobileServe\\WmsMobileServe\\WmsMobileServe\\obj\\publish\\win-x64\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"D:\\Microsoft\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
"C:\\Program Files\\DevExpress 22.2\\Components\\Offline Packages",
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||||
],
|
],
|
||||||
"configFilePaths": [
|
"configFilePaths": [
|
||||||
"C:\\Users\\icewi\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
"C:\\Users\\abc\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||||
|
"C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.2.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||||
],
|
],
|
||||||
|
|
@ -26,10 +28,8 @@
|
||||||
],
|
],
|
||||||
"sources": {
|
"sources": {
|
||||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||||
"C:\\Program Files\\dotnet\\library-packs": {},
|
"C:\\Program Files\\DevExpress 22.2\\Components\\System\\Components\\Packages": {},
|
||||||
"https://api.nuget.org/v3/index.json": {},
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
"https://nuget.cdn.azure.cn/v3/index.json": {},
|
|
||||||
"https://www.nuget.org/api/v2/": {}
|
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"net8.0": {
|
"net8.0": {
|
||||||
|
|
@ -46,7 +46,8 @@
|
||||||
"enableAudit": "true",
|
"enableAudit": "true",
|
||||||
"auditLevel": "low",
|
"auditLevel": "low",
|
||||||
"auditMode": "direct"
|
"auditMode": "direct"
|
||||||
}
|
},
|
||||||
|
"SdkAnalysisLevel": "9.0.100"
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"net8.0": {
|
"net8.0": {
|
||||||
|
|
@ -63,7 +64,7 @@
|
||||||
"Microsoft.NET.ILLink.Tasks": {
|
"Microsoft.NET.ILLink.Tasks": {
|
||||||
"suppressParent": "All",
|
"suppressParent": "All",
|
||||||
"target": "Package",
|
"target": "Package",
|
||||||
"version": "[8.0.10, )",
|
"version": "[8.0.11, )",
|
||||||
"autoReferenced": true
|
"autoReferenced": true
|
||||||
},
|
},
|
||||||
"Newtonsoft.Json": {
|
"Newtonsoft.Json": {
|
||||||
|
|
@ -89,15 +90,15 @@
|
||||||
"downloadDependencies": [
|
"downloadDependencies": [
|
||||||
{
|
{
|
||||||
"name": "Microsoft.AspNetCore.App.Runtime.win-x64",
|
"name": "Microsoft.AspNetCore.App.Runtime.win-x64",
|
||||||
"version": "[8.0.10, 8.0.10]"
|
"version": "[8.0.11, 8.0.11]"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Microsoft.NETCore.App.Runtime.win-x64",
|
"name": "Microsoft.NETCore.App.Runtime.win-x64",
|
||||||
"version": "[8.0.10, 8.0.10]"
|
"version": "[8.0.11, 8.0.11]"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Microsoft.WindowsDesktop.App.Runtime.win-x64",
|
"name": "Microsoft.WindowsDesktop.App.Runtime.win-x64",
|
||||||
"version": "[8.0.10, 8.0.10]"
|
"version": "[8.0.11, 8.0.11]"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"frameworkReferences": {
|
"frameworkReferences": {
|
||||||
|
|
@ -108,7 +109,7 @@
|
||||||
"privateAssets": "all"
|
"privateAssets": "all"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101/PortableRuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimes": {
|
"runtimes": {
|
||||||
|
|
|
||||||
|
|
@ -5,18 +5,19 @@
|
||||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\icewi\.nuget\packages\;D:\Microsoft\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\abc\.nuget\packages\;C:\Program Files\DevExpress 22.2\Components\Offline Packages;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.11.1</NuGetToolVersion>
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.12.2</NuGetToolVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
<SourceRoot Include="C:\Users\icewi\.nuget\packages\" />
|
<SourceRoot Include="C:\Users\abc\.nuget\packages\" />
|
||||||
<SourceRoot Include="D:\Microsoft\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
<SourceRoot Include="C:\Program Files\DevExpress 22.2\Components\Offline Packages\" />
|
||||||
|
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
<Import Project="$(NuGetPackageRoot)microsoft.net.illink.tasks\8.0.10\build\Microsoft.NET.ILLink.Tasks.props" Condition="Exists('$(NuGetPackageRoot)microsoft.net.illink.tasks\8.0.10\build\Microsoft.NET.ILLink.Tasks.props')" />
|
<Import Project="$(NuGetPackageRoot)microsoft.net.illink.tasks\8.0.11\build\Microsoft.NET.ILLink.Tasks.props" Condition="Exists('$(NuGetPackageRoot)microsoft.net.illink.tasks\8.0.11\build\Microsoft.NET.ILLink.Tasks.props')" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
<PkgMicrosoft_NET_ILLink_Tasks Condition=" '$(PkgMicrosoft_NET_ILLink_Tasks)' == '' ">C:\Users\icewi\.nuget\packages\microsoft.net.illink.tasks\8.0.10</PkgMicrosoft_NET_ILLink_Tasks>
|
<PkgMicrosoft_NET_ILLink_Tasks Condition=" '$(PkgMicrosoft_NET_ILLink_Tasks)' == '' ">C:\Users\abc\.nuget\packages\microsoft.net.illink.tasks\8.0.11</PkgMicrosoft_NET_ILLink_Tasks>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
@ -365,7 +365,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Microsoft.NET.ILLink.Tasks/8.0.10": {
|
"Microsoft.NET.ILLink.Tasks/8.0.11": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"build": {
|
"build": {
|
||||||
"build/Microsoft.NET.ILLink.Tasks.props": {}
|
"build/Microsoft.NET.ILLink.Tasks.props": {}
|
||||||
|
|
@ -1639,7 +1639,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Microsoft.NET.ILLink.Tasks/8.0.10": {
|
"Microsoft.NET.ILLink.Tasks/8.0.11": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"build": {
|
"build": {
|
||||||
"build/Microsoft.NET.ILLink.Tasks.props": {}
|
"build/Microsoft.NET.ILLink.Tasks.props": {}
|
||||||
|
|
@ -3060,10 +3060,10 @@
|
||||||
"microsoft.identitymodel.tokens.nuspec"
|
"microsoft.identitymodel.tokens.nuspec"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"Microsoft.NET.ILLink.Tasks/8.0.10": {
|
"Microsoft.NET.ILLink.Tasks/8.0.11": {
|
||||||
"sha512": "xT8jYjlroY7SLbGtoV9vUTVW/TPgodL4Egc31a444Xe0TMytLZ3UlKQ0kxMZsy/CrWsFB6wtKnSG1SsXcWreew==",
|
"sha512": "zk5lnZrYJgtuJG8L4v17Ej8rZ3PUcR2iweNV08BaO5LbYHIi2wNaVNcJoLxvqgQdnjLlKnCCfVGLDr6QHeAarQ==",
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"path": "microsoft.net.illink.tasks/8.0.10",
|
"path": "microsoft.net.illink.tasks/8.0.11",
|
||||||
"hasTools": true,
|
"hasTools": true,
|
||||||
"files": [
|
"files": [
|
||||||
".nupkg.metadata",
|
".nupkg.metadata",
|
||||||
|
|
@ -3077,7 +3077,7 @@
|
||||||
"build/Microsoft.NET.ILLink.Analyzers.props",
|
"build/Microsoft.NET.ILLink.Analyzers.props",
|
||||||
"build/Microsoft.NET.ILLink.Tasks.props",
|
"build/Microsoft.NET.ILLink.Tasks.props",
|
||||||
"build/Microsoft.NET.ILLink.targets",
|
"build/Microsoft.NET.ILLink.targets",
|
||||||
"microsoft.net.illink.tasks.8.0.10.nupkg.sha512",
|
"microsoft.net.illink.tasks.8.0.11.nupkg.sha512",
|
||||||
"microsoft.net.illink.tasks.nuspec",
|
"microsoft.net.illink.tasks.nuspec",
|
||||||
"tools/net472/ILLink.Tasks.dll",
|
"tools/net472/ILLink.Tasks.dll",
|
||||||
"tools/net472/ILLink.Tasks.dll.config",
|
"tools/net472/ILLink.Tasks.dll.config",
|
||||||
|
|
@ -5374,29 +5374,32 @@
|
||||||
"net8.0": [
|
"net8.0": [
|
||||||
"Autofac >= 8.1.1",
|
"Autofac >= 8.1.1",
|
||||||
"Autofac.Extensions.DependencyInjection >= 10.0.0",
|
"Autofac.Extensions.DependencyInjection >= 10.0.0",
|
||||||
"Microsoft.NET.ILLink.Tasks >= 8.0.10",
|
"Microsoft.NET.ILLink.Tasks >= 8.0.11",
|
||||||
"Newtonsoft.Json >= 13.0.3",
|
"Newtonsoft.Json >= 13.0.3",
|
||||||
"SqlSugarCore >= 5.1.4.170"
|
"SqlSugarCore >= 5.1.4.170"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"packageFolders": {
|
"packageFolders": {
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\": {},
|
"C:\\Users\\abc\\.nuget\\packages\\": {},
|
||||||
"D:\\Microsoft\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
|
"C:\\Program Files\\DevExpress 22.2\\Components\\Offline Packages": {},
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
|
||||||
},
|
},
|
||||||
"project": {
|
"project": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\AndriodProject\\2024_11_JinWang_lengDong\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj",
|
"projectUniqueName": "D:\\成品仓库\\CPCWmsMobileServe\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj",
|
||||||
"projectName": "WmsMobileServe",
|
"projectName": "WmsMobileServe",
|
||||||
"projectPath": "F:\\AndriodProject\\2024_11_JinWang_lengDong\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj",
|
"projectPath": "D:\\成品仓库\\CPCWmsMobileServe\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj",
|
||||||
"packagesPath": "C:\\Users\\icewi\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\abc\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\AndriodProject\\2024_11_JinWang_lengDong\\WmsMobileServe\\WmsMobileServe\\obj\\publish\\win-x64\\",
|
"outputPath": "D:\\成品仓库\\CPCWmsMobileServe\\WmsMobileServe\\WmsMobileServe\\obj\\publish\\win-x64\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"D:\\Microsoft\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
"C:\\Program Files\\DevExpress 22.2\\Components\\Offline Packages",
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||||
],
|
],
|
||||||
"configFilePaths": [
|
"configFilePaths": [
|
||||||
"C:\\Users\\icewi\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
"C:\\Users\\abc\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||||
|
"C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.2.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||||
],
|
],
|
||||||
|
|
@ -5405,10 +5408,8 @@
|
||||||
],
|
],
|
||||||
"sources": {
|
"sources": {
|
||||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||||
"C:\\Program Files\\dotnet\\library-packs": {},
|
"C:\\Program Files\\DevExpress 22.2\\Components\\System\\Components\\Packages": {},
|
||||||
"https://api.nuget.org/v3/index.json": {},
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
"https://nuget.cdn.azure.cn/v3/index.json": {},
|
|
||||||
"https://www.nuget.org/api/v2/": {}
|
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"net8.0": {
|
"net8.0": {
|
||||||
|
|
@ -5425,7 +5426,8 @@
|
||||||
"enableAudit": "true",
|
"enableAudit": "true",
|
||||||
"auditLevel": "low",
|
"auditLevel": "low",
|
||||||
"auditMode": "direct"
|
"auditMode": "direct"
|
||||||
}
|
},
|
||||||
|
"SdkAnalysisLevel": "9.0.100"
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"net8.0": {
|
"net8.0": {
|
||||||
|
|
@ -5442,7 +5444,7 @@
|
||||||
"Microsoft.NET.ILLink.Tasks": {
|
"Microsoft.NET.ILLink.Tasks": {
|
||||||
"suppressParent": "All",
|
"suppressParent": "All",
|
||||||
"target": "Package",
|
"target": "Package",
|
||||||
"version": "[8.0.10, )",
|
"version": "[8.0.11, )",
|
||||||
"autoReferenced": true
|
"autoReferenced": true
|
||||||
},
|
},
|
||||||
"Newtonsoft.Json": {
|
"Newtonsoft.Json": {
|
||||||
|
|
@ -5468,15 +5470,15 @@
|
||||||
"downloadDependencies": [
|
"downloadDependencies": [
|
||||||
{
|
{
|
||||||
"name": "Microsoft.AspNetCore.App.Runtime.win-x64",
|
"name": "Microsoft.AspNetCore.App.Runtime.win-x64",
|
||||||
"version": "[8.0.10, 8.0.10]"
|
"version": "[8.0.11, 8.0.11]"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Microsoft.NETCore.App.Runtime.win-x64",
|
"name": "Microsoft.NETCore.App.Runtime.win-x64",
|
||||||
"version": "[8.0.10, 8.0.10]"
|
"version": "[8.0.11, 8.0.11]"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Microsoft.WindowsDesktop.App.Runtime.win-x64",
|
"name": "Microsoft.WindowsDesktop.App.Runtime.win-x64",
|
||||||
"version": "[8.0.10, 8.0.10]"
|
"version": "[8.0.11, 8.0.11]"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"frameworkReferences": {
|
"frameworkReferences": {
|
||||||
|
|
@ -5487,7 +5489,7 @@
|
||||||
"privateAssets": "all"
|
"privateAssets": "all"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101/PortableRuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimes": {
|
"runtimes": {
|
||||||
|
|
|
||||||
|
|
@ -1,96 +1,96 @@
|
||||||
{
|
{
|
||||||
"version": 2,
|
"version": 2,
|
||||||
"dgSpecHash": "UWQom+UNvUE=",
|
"dgSpecHash": "LGNX5460VA8=",
|
||||||
"success": true,
|
"success": true,
|
||||||
"projectFilePath": "F:\\AndriodProject\\2024_11_JinWang_lengDong\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj",
|
"projectFilePath": "D:\\成品仓库\\CPCWmsMobileServe\\WmsMobileServe\\WmsMobileServe\\WmsMobileServe.csproj",
|
||||||
"expectedPackageFiles": [
|
"expectedPackageFiles": [
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\autofac\\8.1.1\\autofac.8.1.1.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\autofac\\8.1.1\\autofac.8.1.1.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\autofac.extensions.dependencyinjection\\10.0.0\\autofac.extensions.dependencyinjection.10.0.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\autofac.extensions.dependencyinjection\\10.0.0\\autofac.extensions.dependencyinjection.10.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\azure.core\\1.38.0\\azure.core.1.38.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\azure.core\\1.38.0\\azure.core.1.38.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\azure.identity\\1.11.4\\azure.identity.1.11.4.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\azure.identity\\1.11.4\\azure.identity.1.11.4.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\1.1.1\\microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\1.1.1\\microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.data.sqlclient\\5.2.2\\microsoft.data.sqlclient.5.2.2.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.data.sqlclient\\5.2.2\\microsoft.data.sqlclient.5.2.2.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\5.2.0\\microsoft.data.sqlclient.sni.runtime.5.2.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\5.2.0\\microsoft.data.sqlclient.sni.runtime.5.2.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.data.sqlite\\8.0.1\\microsoft.data.sqlite.8.0.1.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.data.sqlite\\8.0.1\\microsoft.data.sqlite.8.0.1.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.data.sqlite.core\\8.0.1\\microsoft.data.sqlite.core.8.0.1.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.data.sqlite.core\\8.0.1\\microsoft.data.sqlite.core.8.0.1.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.1\\microsoft.extensions.dependencyinjection.abstractions.8.0.1.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.1\\microsoft.extensions.dependencyinjection.abstractions.8.0.1.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.identity.client\\4.61.3\\microsoft.identity.client.4.61.3.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.identity.client\\4.61.3\\microsoft.identity.client.4.61.3.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.identity.client.extensions.msal\\4.61.3\\microsoft.identity.client.extensions.msal.4.61.3.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.identity.client.extensions.msal\\4.61.3\\microsoft.identity.client.extensions.msal.4.61.3.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.identitymodel.abstractions\\6.35.0\\microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.identitymodel.abstractions\\6.35.0\\microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.35.0\\microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.35.0\\microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.identitymodel.logging\\6.35.0\\microsoft.identitymodel.logging.6.35.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.identitymodel.logging\\6.35.0\\microsoft.identitymodel.logging.6.35.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.35.0\\microsoft.identitymodel.protocols.6.35.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.35.0\\microsoft.identitymodel.protocols.6.35.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.35.0\\microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.35.0\\microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.35.0\\microsoft.identitymodel.tokens.6.35.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.35.0\\microsoft.identitymodel.tokens.6.35.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.net.illink.tasks\\8.0.10\\microsoft.net.illink.tasks.8.0.10.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.net.illink.tasks\\8.0.11\\microsoft.net.illink.tasks.8.0.11.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.netcore.targets\\1.1.3\\microsoft.netcore.targets.1.1.3.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.netcore.targets\\1.1.3\\microsoft.netcore.targets.1.1.3.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.sqlserver.server\\1.0.0\\microsoft.sqlserver.server.1.0.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.sqlserver.server\\1.0.0\\microsoft.sqlserver.server.1.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\mysqlconnector\\2.2.5\\mysqlconnector.2.2.5.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\mysqlconnector\\2.2.5\\mysqlconnector.2.2.5.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\npgsql\\5.0.18\\npgsql.5.0.18.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\npgsql\\5.0.18\\npgsql.5.0.18.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\oracle.manageddataaccess.core\\3.21.100\\oracle.manageddataaccess.core.3.21.100.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\oracle.manageddataaccess.core\\3.21.100\\oracle.manageddataaccess.core.3.21.100.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\oscar.data.sqlclient\\4.0.4\\oscar.data.sqlclient.4.0.4.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\oscar.data.sqlclient\\4.0.4\\oscar.data.sqlclient.4.0.4.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\runtime.any.system.collections\\4.3.0\\runtime.any.system.collections.4.3.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\runtime.any.system.collections\\4.3.0\\runtime.any.system.collections.4.3.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\runtime.any.system.globalization\\4.3.0\\runtime.any.system.globalization.4.3.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\runtime.any.system.globalization\\4.3.0\\runtime.any.system.globalization.4.3.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\runtime.any.system.io\\4.3.0\\runtime.any.system.io.4.3.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\runtime.any.system.io\\4.3.0\\runtime.any.system.io.4.3.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\runtime.any.system.reflection\\4.3.0\\runtime.any.system.reflection.4.3.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\runtime.any.system.reflection\\4.3.0\\runtime.any.system.reflection.4.3.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\runtime.any.system.reflection.primitives\\4.3.0\\runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\runtime.any.system.reflection.primitives\\4.3.0\\runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\runtime.any.system.resources.resourcemanager\\4.3.0\\runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\runtime.any.system.resources.resourcemanager\\4.3.0\\runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\runtime.any.system.runtime\\4.3.0\\runtime.any.system.runtime.4.3.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\runtime.any.system.runtime\\4.3.0\\runtime.any.system.runtime.4.3.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\runtime.any.system.text.encoding\\4.3.0\\runtime.any.system.text.encoding.4.3.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\runtime.any.system.text.encoding\\4.3.0\\runtime.any.system.text.encoding.4.3.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\runtime.any.system.threading.tasks\\4.3.0\\runtime.any.system.threading.tasks.4.3.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\runtime.any.system.threading.tasks\\4.3.0\\runtime.any.system.threading.tasks.4.3.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\runtime.win.system.runtime.extensions\\4.3.0\\runtime.win.system.runtime.extensions.4.3.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\runtime.win.system.runtime.extensions\\4.3.0\\runtime.win.system.runtime.extensions.4.3.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\sqlitepclraw.bundle_e_sqlite3\\2.1.6\\sqlitepclraw.bundle_e_sqlite3.2.1.6.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\sqlitepclraw.bundle_e_sqlite3\\2.1.6\\sqlitepclraw.bundle_e_sqlite3.2.1.6.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\sqlitepclraw.core\\2.1.6\\sqlitepclraw.core.2.1.6.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\sqlitepclraw.core\\2.1.6\\sqlitepclraw.core.2.1.6.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3\\2.1.6\\sqlitepclraw.lib.e_sqlite3.2.1.6.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3\\2.1.6\\sqlitepclraw.lib.e_sqlite3.2.1.6.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\sqlitepclraw.provider.e_sqlite3\\2.1.6\\sqlitepclraw.provider.e_sqlite3.2.1.6.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\sqlitepclraw.provider.e_sqlite3\\2.1.6\\sqlitepclraw.provider.e_sqlite3.2.1.6.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\sqlsugarcore\\5.1.4.170\\sqlsugarcore.5.1.4.170.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\sqlsugarcore\\5.1.4.170\\sqlsugarcore.5.1.4.170.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\sqlsugarcore.dm\\8.6.0\\sqlsugarcore.dm.8.6.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\sqlsugarcore.dm\\8.6.0\\sqlsugarcore.dm.8.6.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\sqlsugarcore.kdbndp\\9.3.6.925\\sqlsugarcore.kdbndp.9.3.6.925.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\sqlsugarcore.kdbndp\\9.3.6.925\\sqlsugarcore.kdbndp.9.3.6.925.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.clientmodel\\1.0.0\\system.clientmodel.1.0.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.clientmodel\\1.0.0\\system.clientmodel.1.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.configuration.configurationmanager\\8.0.0\\system.configuration.configurationmanager.8.0.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.configuration.configurationmanager\\8.0.0\\system.configuration.configurationmanager.8.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.data.common\\4.3.0\\system.data.common.4.3.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.data.common\\4.3.0\\system.data.common.4.3.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.diagnostics.diagnosticsource\\8.0.1\\system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.diagnostics.diagnosticsource\\8.0.1\\system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.diagnostics.eventlog\\8.0.0\\system.diagnostics.eventlog.8.0.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.diagnostics.eventlog\\8.0.0\\system.diagnostics.eventlog.8.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.diagnostics.performancecounter\\6.0.1\\system.diagnostics.performancecounter.6.0.1.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.diagnostics.performancecounter\\6.0.1\\system.diagnostics.performancecounter.6.0.1.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.directoryservices\\6.0.1\\system.directoryservices.6.0.1.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.directoryservices\\6.0.1\\system.directoryservices.6.0.1.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.directoryservices.protocols\\6.0.1\\system.directoryservices.protocols.6.0.1.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.directoryservices.protocols\\6.0.1\\system.directoryservices.protocols.6.0.1.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.35.0\\system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.35.0\\system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.memory.data\\1.0.2\\system.memory.data.1.0.2.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.memory.data\\1.0.2\\system.memory.data.1.0.2.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.private.uri\\4.3.0\\system.private.uri.4.3.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.private.uri\\4.3.0\\system.private.uri.4.3.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.runtime\\4.3.1\\system.runtime.4.3.1.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.runtime\\4.3.1\\system.runtime.4.3.1.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.runtime.caching\\8.0.0\\system.runtime.caching.8.0.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.runtime.caching\\8.0.0\\system.runtime.caching.8.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\4.6.0\\system.runtime.compilerservices.unsafe.4.6.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\4.6.0\\system.runtime.compilerservices.unsafe.4.6.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.security.cryptography.protecteddata\\8.0.0\\system.security.cryptography.protecteddata.8.0.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.security.cryptography.protecteddata\\8.0.0\\system.security.cryptography.protecteddata.8.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.text.encoding.codepages\\5.0.0\\system.text.encoding.codepages.5.0.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.text.encoding.codepages\\5.0.0\\system.text.encoding.codepages.5.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.text.encodings.web\\4.7.2\\system.text.encodings.web.4.7.2.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.text.encodings.web\\4.7.2\\system.text.encodings.web.4.7.2.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.text.json\\4.7.2\\system.text.json.4.7.2.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.text.json\\4.7.2\\system.text.json.4.7.2.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.text.regularexpressions\\4.3.1\\system.text.regularexpressions.4.3.1.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.text.regularexpressions\\4.3.1\\system.text.regularexpressions.4.3.1.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.netcore.app.runtime.win-x64\\8.0.10\\microsoft.netcore.app.runtime.win-x64.8.0.10.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.netcore.app.runtime.win-x64\\8.0.11\\microsoft.netcore.app.runtime.win-x64.8.0.11.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.windowsdesktop.app.runtime.win-x64\\8.0.10\\microsoft.windowsdesktop.app.runtime.win-x64.8.0.10.nupkg.sha512",
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.windowsdesktop.app.runtime.win-x64\\8.0.11\\microsoft.windowsdesktop.app.runtime.win-x64.8.0.11.nupkg.sha512",
|
||||||
"C:\\Users\\icewi\\.nuget\\packages\\microsoft.aspnetcore.app.runtime.win-x64\\8.0.10\\microsoft.aspnetcore.app.runtime.win-x64.8.0.10.nupkg.sha512"
|
"C:\\Users\\abc\\.nuget\\packages\\microsoft.aspnetcore.app.runtime.win-x64\\8.0.11\\microsoft.aspnetcore.app.runtime.win-x64.8.0.11.nupkg.sha512"
|
||||||
],
|
],
|
||||||
"logs": []
|
"logs": []
|
||||||
}
|
}
|
||||||
|
|
@ -1 +1 @@
|
||||||
17361426948459962
|
17369189191510080
|
||||||
|
|
@ -1 +1 @@
|
||||||
17363218054602730
|
17374361874317294
|
||||||
Loading…
Reference in New Issue
Block a user