From 0bbb14eafd9a29ffaad14a933aa5ae522432fad9 Mon Sep 17 00:00:00 2001
From: sjz <1240968267@qq.com>
Date: 星期一, 21 四月 2025 08:33:09 +0800
Subject: [PATCH] 获取金蝶云星空库存
---
MESApplication/bin/Release/net8.0/publish/System.Text.Encodings.Web.dll | 0
MESApplication/bin/Debug/net8.0/Microsoft.Extensions.Primitives.dll | 0
MESApplication/bin/Release/net8.0/publish/Microsoft.Extensions.FileProviders.Abstractions.dll | 0
MESApplication/bin/Release/net8.0/System.Text.Encodings.Web.dll | 0
MESApplication/bin/Release/net8.0/Microsoft.Extensions.Configuration.Json.dll | 0
MES.Service/Dto/service/KcDto.cs | 8 +
MESApplication/bin/Release/net8.0/Microsoft.Extensions.Configuration.dll | 0
MESApplication/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.Json.dll | 0
MESApplication/bin/Debug/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll | 0
MESApplication/bin/Release/net8.0/MESApplication.staticwebassets.endpoints.json | 5
MESApplication/bin/Release/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll | 0
MESApplication/bin/Debug/net8.0/Microsoft.Extensions.FileProviders.Physical.dll | 0
MESApplication/bin/Release/net8.0/publish/Kingdee.CDP.WebApi.SDK.dll | 0
MESApplication/bin/Debug/net8.0/System.IO.Pipelines.dll | 0
MES.Service/resources/Kingdee.CDP.WebApi.SDK.dll | 0
MESApplication/bin/Release/net8.0/publish/Microsoft.Extensions.FileProviders.Physical.dll | 0
MESApplication/bin/Release/net8.0/publish/MESApplication.staticwebassets.endpoints.json | 5
MESApplication/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.FileExtensions.dll | 0
MESApplication/bin/Debug/net8.0/Kingdee.CDP.WebApi.SDK.dll | 0
MESApplication/bin/Release/net8.0/publish/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll | 0
MESApplication/bin/Debug/net8.0/Config/appsettings.json | 17 ++
MESApplication/bin/Release/net8.0/System.Text.Json.dll | 0
MESApplication/bin/Release/net8.0/publish/Microsoft.Extensions.Primitives.dll | 0
MESApplication/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Json.dll | 0
MESApplication/bin/Release/net8.0/publish/System.Text.Json.dll | 0
MESApplication/bin/Debug/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll | 0
MESApplication/bin/Debug/net8.0/MESApplication.staticwebassets.endpoints.json | 5
MES.Service/Dto/webApi/Inventory.cs | 7 +
MESApplication/bin/Debug/net8.0/Microsoft.Extensions.Configuration.dll | 0
MESApplication/bin/Release/net8.0/Microsoft.Extensions.Primitives.dll | 0
MESApplication/bin/Release/net8.0/publish/System.IO.Pipelines.dll | 0
MESApplication/bin/Release/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll | 0
MESApplication/MESApplication.csproj | 8
MESApplication/bin/Release/net8.0/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll | 0
MESApplication/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.dll | 0
MES.Service/service/WomcaaManager.cs | 1
MESApplication/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.Abstractions.dll | 0
MES.Service/Modes/ErpMesKc.cs | 44 +++++++
MESApplication/bin/Debug/net8.0/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll | 0
MESApplication/bin/Debug/net8.0/System.Text.Json.dll | 0
MES.Service/Dto/webApi/ErpKc.cs | 15 ++
MES.Service/service/Kingdee/ErpKcManager.cs | 125 ++++++++++++++++++++
MES.Service/bin/Debug/net8.0/Kingdee.CDP.WebApi.SDK.dll | 0
MESApplication/bin/Release/net8.0/publish/Microsoft.Extensions.FileSystemGlobbing.dll | 0
MESApplication/Config/appsettings.json | 17 ++
MESApplication/bin/Release/net8.0/Microsoft.Extensions.FileProviders.Physical.dll | 0
MESApplication/Controllers/Kingdee/ErpKcController.cs | 46 +++++++
MESApplication/bin/Release/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll | 0
MESApplication/bin/Debug/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll | 0
MESApplication/bin/Release/net8.0/System.IO.Pipelines.dll | 0
MESApplication/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll | 0
MESApplication/bin/Release/net8.0/publish/Config/appsettings.json | 17 ++
MES.Service/MES.Service.csproj | 12 +
MESApplication/MESApplication.csproj.user | 2
MESApplication/bin/Release/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll | 0
MESApplication/bin/Release/net8.0/Kingdee.CDP.WebApi.SDK.dll | 0
MESApplication/Properties/PublishProfiles/FolderProfile.pubxml.user | 4
MESApplication/bin/Release/net8.0/Config/appsettings.json | 17 ++
MESApplication/bin/Debug/net8.0/System.Text.Encodings.Web.dll | 0
MES.Service/bin/Release/net8.0/Kingdee.CDP.WebApi.SDK.dll | 0
60 files changed, 347 insertions(+), 8 deletions(-)
diff --git a/MES.Service/Dto/service/KcDto.cs b/MES.Service/Dto/service/KcDto.cs
new file mode 100644
index 0000000..dd58cf0
--- /dev/null
+++ b/MES.Service/Dto/service/KcDto.cs
@@ -0,0 +1,8 @@
+锘縰sing MES.Service.Dto.webApi;
+
+namespace MES.Service.Dto.service;
+
+public class KcDto
+{
+ public List<ErpKc>? ErpKcs { get; set; }
+}
diff --git a/MES.Service/Dto/webApi/ErpKc.cs b/MES.Service/Dto/webApi/ErpKc.cs
new file mode 100644
index 0000000..2163385
--- /dev/null
+++ b/MES.Service/Dto/webApi/ErpKc.cs
@@ -0,0 +1,15 @@
+锘縩amespace MES.Service.Dto.webApi;
+
+public class ErpKc
+{
+ public string? FMaterialId { get; set; }
+ public string? FStockId { get; set; }
+ public string? FMtoNo { get; set; }
+ public string? FLot { get; set; }
+ public string? FStockUnitId { get; set; }
+ public string? FBaseUnitId { get; set; }
+ public string? FStockStatusId { get; set; }
+ public string? FBASEQTY { get; set; }
+ public string? FSTOREURNOM { get; set; }
+ public string? FSTOREURNUM { get; set; }
+}
diff --git a/MES.Service/Dto/webApi/Inventory.cs b/MES.Service/Dto/webApi/Inventory.cs
new file mode 100644
index 0000000..b109a46
--- /dev/null
+++ b/MES.Service/Dto/webApi/Inventory.cs
@@ -0,0 +1,7 @@
+锘縩amespace MES.Service.Dto.webApi;
+
+public class Inventory
+{
+ public string? ItemNo { get; set; } // 鏂欏彿
+ public string? DepotCode { get; set; } // 浠撳簱
+}
diff --git a/MES.Service/MES.Service.csproj b/MES.Service/MES.Service.csproj
index bf52dfd..5fe421e 100644
--- a/MES.Service/MES.Service.csproj
+++ b/MES.Service/MES.Service.csproj
@@ -7,8 +7,18 @@
</PropertyGroup>
<ItemGroup>
- <PackageReference Include="Masuit.Tools.Core" Version="2024.3.4"/>
+ <PackageReference Include="Masuit.Tools.Core" Version="2024.3.4" />
+ <PackageReference Include="Microsoft.Extensions.Configuration" Version="9.0.4" />
+ <PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="9.0.4" />
+ <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.4" />
+ <PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="SqlSugarCore" Version="5.1.4.169" />
</ItemGroup>
+ <ItemGroup>
+ <Reference Include="Kingdee.CDP.WebApi.SDK">
+ <HintPath>resources\Kingdee.CDP.WebApi.SDK.dll</HintPath>
+ </Reference>
+ </ItemGroup>
+
</Project>
diff --git a/MES.Service/Modes/ErpMesKc.cs b/MES.Service/Modes/ErpMesKc.cs
new file mode 100644
index 0000000..bd5afc1
--- /dev/null
+++ b/MES.Service/Modes/ErpMesKc.cs
@@ -0,0 +1,44 @@
+锘縰sing SqlSugar;
+
+namespace MES.Service.Modes;
+
+[SugarTable("ERP_MES_KC")]
+public class ErpMesKc
+{
+ [SugarColumn(ColumnName = "ID", OracleSequenceName = "SEQ_ERP_KC", IsPrimaryKey = true)]
+ public decimal Id { get; set; }
+
+ [SugarColumn(ColumnName = "FNUMBER")]
+ public string? FNumber { get; set; }
+
+ [SugarColumn(ColumnName = "FQTY")]
+ public decimal? FQty { get; set; }
+
+ [SugarColumn(ColumnName = "FBASEUNIT")]
+ public string? FBaseUnit { get; set; }
+
+ [SugarColumn(ColumnName = "FSTOCKUNIT")]
+ public string? FStockUnit { get; set; }
+
+ [SugarColumn(ColumnName = "FSTOCKNUMBER")]
+ public string? FStockNumber { get; set; }
+
+ [SugarColumn(ColumnName = "CREATE_DATE")]
+ public DateTime? CreateDate { get; set; }
+
+ [SugarColumn(ColumnName = "FBATCHNO")]
+ public string? FBatchno { get; set; }
+
+ [SugarColumn(ColumnName = "FMTONO")]
+ public string? FMtono { get; set; }
+
+ [SugarColumn(ColumnName = "FSTOCKSTATUS")]
+ public string? FStockStatus { get; set; }
+
+ [SugarColumn(ColumnName = "FSTOREURNOM")]
+ public decimal? FStoreUrnom { get; set; }
+
+ [SugarColumn(ColumnName = "FSTOREURNUM")]
+ public decimal? FStoreUrnum { get; set; }
+
+}
diff --git a/MES.Service/bin/Debug/net8.0/Kingdee.CDP.WebApi.SDK.dll b/MES.Service/bin/Debug/net8.0/Kingdee.CDP.WebApi.SDK.dll
new file mode 100644
index 0000000..4d68c10
--- /dev/null
+++ b/MES.Service/bin/Debug/net8.0/Kingdee.CDP.WebApi.SDK.dll
Binary files differ
diff --git a/MES.Service/bin/Release/net8.0/Kingdee.CDP.WebApi.SDK.dll b/MES.Service/bin/Release/net8.0/Kingdee.CDP.WebApi.SDK.dll
new file mode 100644
index 0000000..4d68c10
--- /dev/null
+++ b/MES.Service/bin/Release/net8.0/Kingdee.CDP.WebApi.SDK.dll
Binary files differ
diff --git a/MES.Service/resources/Kingdee.CDP.WebApi.SDK.dll b/MES.Service/resources/Kingdee.CDP.WebApi.SDK.dll
new file mode 100644
index 0000000..4d68c10
--- /dev/null
+++ b/MES.Service/resources/Kingdee.CDP.WebApi.SDK.dll
Binary files differ
diff --git a/MES.Service/service/Kingdee/ErpKcManager.cs b/MES.Service/service/Kingdee/ErpKcManager.cs
new file mode 100644
index 0000000..57cda1d
--- /dev/null
+++ b/MES.Service/service/Kingdee/ErpKcManager.cs
@@ -0,0 +1,125 @@
+锘�
+using Kingdee.CDP.WebApi.SDK;
+using MES.Service.DB;
+using MES.Service.Dto.webApi;
+using MES.Service.Modes;
+using SqlSugar;
+using System.Text;
+
+namespace MES.Service.service.Kingdee;
+
+public class ErpKcManager : Repository<ErpMesKc>
+{
+ public bool QueryStocks(Inventory inventory)
+ {
+ List<ErpKc> erpKc = GetErpInventory(inventory);
+
+ // 妫�鏌ヨ繑鍥炵粨鏋滄槸鍚︿负绌�
+ if (erpKc == null || erpKc.Count == 0)
+ {
+ throw new NotImplementedException("杩斿洖缁撴灉涓虹┖");
+ }
+ else
+ {
+ var baseObjects = MapErpCABtoWomcab(erpKc);
+
+ return UseTransaction(db =>
+ {
+ return SaveData(db, baseObjects) ? 1 : 0;
+ }) > 0;
+ }
+ }
+
+ #region 1.鑾峰彇鍗虫椂搴撳瓨
+ public List<ErpKc> GetErpInventory(Inventory inventory)
+ {
+ //娉ㄦ剰 1锛氭澶勪笉鍐嶄娇鐢ㄥ弬鏁板舰寮忎紶鍏ョ敤鎴峰悕鍙婂瘑鐮佺瓑鏁忔劅淇℃伅锛屾敼涓哄湪鐧诲綍閰嶇疆鏂囦欢涓缃��
+ //娉ㄦ剰 2锛氬繀椤诲厛閰嶇疆绗笁鏂圭郴缁熺櫥褰曟巿鏉冧俊鎭悗锛屽啀杩涜涓氬姟鎿嶄綔锛岃鎯呭弬鑰冨悇璇█鐗堟湰SDK浠嬬粛涓殑鐧诲綍閰嶇疆鏂囦欢璇存槑銆�
+ //璇诲彇閰嶇疆锛屽垵濮嬪寲SDK
+ K3CloudApi client = new K3CloudApi();
+ //鐢ㄤ簬璁板綍缁撴灉
+ StringBuilder Info = new StringBuilder();
+ //涓氬姟瀵硅薄鏍囪瘑
+ string formId = "STK_Inventory";
+ DateTime dt = DateTime.Now;
+ //鏌ヨ瀛楁闆嗗悎锛屽嵆杩斿洖鍝簺鏁版嵁锛屼笉鑳戒负绌猴紝鏍规嵁涓嶅悓涓氬姟鍗曟嵁濉啓涓嶅悓鐨勫瓧娈靛悕锛屼互涓嬩粎涓虹ず渚�
+ //string fieldKeys = "FCode,FFileId,FRelevantObject";
+ //string FilterString = "FID='-2146304'";
+ string fieldKeys = "FMaterialId.FNumber,FMtoNo,FStockId.FNumber,FLot.FNumber,FStockUnitId.FNumber,FBaseUnitId.FNumber,FStockStatusId.FName,FBASEQTY,FMaterialid.FSTOREURNOM,FMaterialid.FSTOREURNUM";
+ string FilterString = string.Format(@"FMaterialId.FNumber like '%{0}%' and FStockId.FNumber like '%{1}%' and FBaseQty>0", inventory.ItemNo,inventory.DepotCode);
+ string OrderString = "";
+ int TopRowCount = 0;
+ int StartRow = 0;
+ int Limit = 0;
+
+ var param = new QueryParam()
+ {
+ FormId = formId,
+ FieldKeys = fieldKeys,
+ FilterString = FilterString,
+ OrderString = OrderString,
+ TopRowCount = TopRowCount,
+ StartRow = StartRow,
+ Limit = Limit
+ };
+ //璋冪敤鎺ュ彛
+ var result = client.ExecuteBillQuery(param.ToJson());
+
+ return result.Select(s =>
+ {
+ var entity = new ErpKc
+ {
+ FMaterialId = (string)s[0],
+ FMtoNo = (string)s[1],
+ FStockId = (string)s[2],
+ FLot = (string)s[3],
+ FStockUnitId = (string)s[4],
+ FBaseUnitId = (string)s[5],
+ FStockStatusId = (string)s[6],
+ FBASEQTY = (string)s[7],
+ FSTOREURNOM = (string)s[8],
+ FSTOREURNUM = (string)s[9]
+ };
+ return entity;
+ }).ToList();
+ }
+ #endregion
+
+
+ private List<ErpMesKc> MapErpCABtoWomcab(List<ErpKc> dtoList)
+ {
+ var ErpMesKcList = new List<ErpMesKc>();
+
+ foreach (var dto in dtoList)
+ {
+ var kc = new ErpMesKc
+ {
+ FNumber = dto.FMaterialId,
+ FQty = Convert.ToDecimal(dto.FBASEQTY),
+ FBaseUnit=dto.FBaseUnitId,
+ FStockUnit=dto.FStockUnitId,
+ FStockNumber=dto.FStockId,
+ CreateDate=DateTime.Now,
+ FBatchno=dto.FLot,
+ FMtono=dto.FMtoNo,
+ FStockStatus=dto.FStockStatusId,
+ FStoreUrnom= Convert.ToDecimal(dto.FSTOREURNOM),
+ FStoreUrnum= Convert.ToDecimal(dto.FSTOREURNUM)
+
+ };
+
+ ErpMesKcList.Add(kc);
+ }
+
+ return ErpMesKcList;
+ }
+
+ // 鎻掑叆鎴栨洿鏂版暟鎹殑鏂规硶
+ private bool SaveData(SqlSugarScope db, List<ErpMesKc> kcc)
+ {
+ var save = base.InsertRange(kcc);
+ if (save) return true;
+ throw new NotImplementedException("鎻掑叆澶辫触");
+ }
+
+}
diff --git a/MES.Service/service/WomcaaManager.cs b/MES.Service/service/WomcaaManager.cs
index ec9d718..b72a183 100644
--- a/MES.Service/service/WomcaaManager.cs
+++ b/MES.Service/service/WomcaaManager.cs
@@ -17,6 +17,7 @@
public bool SaveList(List<ErpWOM> rohIns)
{
var result = rohIns.Select(Save).ToList();
+
return result.All(b => b);
}
diff --git a/MESApplication/Config/appsettings.json b/MESApplication/Config/appsettings.json
new file mode 100644
index 0000000..a2d2355
--- /dev/null
+++ b/MESApplication/Config/appsettings.json
@@ -0,0 +1,17 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft": "Warning",
+ "Microsoft.Hosting.Lifetime": "Information"
+ }
+ },
+ "AllowedHosts": "*",
+ "Version": "1.0.0",
+ "X-KDApi-AcctID": "6642174ccf499e",
+ "X-KDApi-UserName": "fbb",
+ "X-KDApi-AppID": "309305_6Yeq67hszJm4xX+Pw3wCz7UJ4KQ9RsOH",
+ "X-KDApi-AppSec": "f11a9b4a85af42898d479e97444acbaa",
+ "X-KDApi-LCID": "2052",
+ "X-KDApi-ServerUrl": "http://192.168.11.120/k3cloud"
+}
\ No newline at end of file
diff --git a/MESApplication/Controllers/Kingdee/ErpKcController.cs b/MESApplication/Controllers/Kingdee/ErpKcController.cs
new file mode 100644
index 0000000..fad5bef
--- /dev/null
+++ b/MESApplication/Controllers/Kingdee/ErpKcController.cs
@@ -0,0 +1,46 @@
+锘縰sing MES.Service.Dto.service;
+using MES.Service.Dto.webApi;
+using MES.Service.Modes;
+using MES.Service.service;
+using MES.Service.service.Kingdee;
+using MES.Service.util;
+using Microsoft.AspNetCore.Mvc;
+using Newtonsoft.Json;
+using System.Dynamic;
+
+namespace MESApplication.Controllers.Kingdee;
+
+
+[ApiController]
+[Route("api/[controller]")]
+public class ErpKcController : ControllerBase
+{
+ private readonly MessageCenterManager _manager = new();
+ private readonly ErpKcManager kc = new();
+ private readonly string METHOD = "POST";
+ private readonly string TableName = "ERPKC";
+ private readonly string URL = "http://localhost:10054/api/ErpKc/";
+
+
+ //
+ [HttpPost("Save")]
+ public ResponseResult Save(Inventory inventory)
+ {
+ try
+ {
+ dynamic resultInfos = new ExpandoObject();
+ resultInfos = kc.QueryStocks(inventory);
+
+ return new ResponseResult
+ {
+ status = 0,
+ message = "OK",
+ data = resultInfos
+ };
+ }
+ catch (Exception ex)
+ {
+ return ResponseResult.ResponseError(ex);
+ }
+ }
+}
diff --git a/MESApplication/MESApplication.csproj b/MESApplication/MESApplication.csproj
index b87eece..3ae7129 100644
--- a/MESApplication/MESApplication.csproj
+++ b/MESApplication/MESApplication.csproj
@@ -9,7 +9,7 @@
</PropertyGroup>
<ItemGroup>
- <PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.0"/>
+ <PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
@@ -18,12 +18,12 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
- <PackageReference Include="Oracle.EntityFrameworkCore" Version="8.21.121"/>
- <PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0"/>
+ <PackageReference Include="Oracle.EntityFrameworkCore" Version="8.21.121" />
+ <PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
</ItemGroup>
<ItemGroup>
- <ProjectReference Include="..\MES.Service\MES.Service.csproj"/>
+ <ProjectReference Include="..\MES.Service\MES.Service.csproj" />
</ItemGroup>
</Project>
diff --git a/MESApplication/MESApplication.csproj.user b/MESApplication/MESApplication.csproj.user
index dfe1ae2..735ae4a 100644
--- a/MESApplication/MESApplication.csproj.user
+++ b/MESApplication/MESApplication.csproj.user
@@ -5,6 +5,6 @@
</PropertyGroup>
<PropertyGroup>
<ActiveDebugProfile>IIS Express</ActiveDebugProfile>
- <NameOfLastUsedPublishProfile>C:\Users\qewqer\Desktop\MES\SG\StandardPda\MESApplication\Properties\PublishProfiles\FolderProfile.pubxml</NameOfLastUsedPublishProfile>
+ <NameOfLastUsedPublishProfile>E:\Tool\SG\StandardPda\MESApplication\Properties\PublishProfiles\FolderProfile.pubxml</NameOfLastUsedPublishProfile>
</PropertyGroup>
</Project>
\ No newline at end of file
diff --git a/MESApplication/Properties/PublishProfiles/FolderProfile.pubxml.user b/MESApplication/Properties/PublishProfiles/FolderProfile.pubxml.user
index 2a3c938..66bfb20 100644
--- a/MESApplication/Properties/PublishProfiles/FolderProfile.pubxml.user
+++ b/MESApplication/Properties/PublishProfiles/FolderProfile.pubxml.user
@@ -4,8 +4,8 @@
-->
<Project>
<PropertyGroup>
- <_PublishTargetUrl>C:\Users\qewqer\Desktop\MES\SG\StandardPda\MESApplication\bin\Release\net8.0\publish\</_PublishTargetUrl>
- <History>True|2025-04-12T04:05:38.9937329Z||;True|2025-04-11T16:26:37.5266569+08:00||;True|2025-03-20T17:58:14.2077893+08:00||;True|2025-03-15T00:59:39.9999573+08:00||;True|2025-03-07T15:42:21.8276566+08:00||;True|2025-02-27T10:43:45.2314689+08:00||;True|2025-02-21T16:39:35.2452658+08:00||;True|2025-01-13T15:35:48.6521519+08:00||;True|2025-01-08T16:15:03.8764923+08:00||;True|2024-12-30T15:00:59.8090011+08:00||;True|2024-12-06T16:11:01.2090466+08:00||;True|2024-11-26T09:07:33.5654976+08:00||;True|2024-11-20T15:49:27.1100474+08:00||;True|2024-11-16T18:18:42.4224922+08:00||;True|2024-11-15T09:32:12.6287354+08:00||;True|2024-11-13T10:19:32.3283327+08:00||;True|2024-09-06T14:40:56.3762241+08:00||;True|2024-08-20T17:12:00.2924570+08:00||;True|2024-08-17T10:57:05.6670396+08:00||;True|2024-08-17T10:56:46.8068041+08:00||;True|2024-08-16T14:09:17.0526491+08:00||;True|2024-08-15T08:40:32.8134665+08:00||;True|2024-08-14T10:00:27.7017207+08:00||;True|2024-08-14T08:54:44.8284031+08:00||;True|2024-08-07T10:32:10.3689256+08:00||;True|2024-08-05T15:45:03.0864530+08:00||;True|2024-08-03T09:59:13.7916520+08:00||;True|2024-07-31T17:27:28.1965929+08:00||;True|2024-07-31T15:27:34.7943845+08:00||;True|2024-07-30T15:04:50.5849235+08:00||;True|2024-07-30T14:09:06.2877325+08:00||;True|2024-07-29T16:11:30.4493940+08:00||;True|2024-07-23T14:30:34.4591002+08:00||;True|2024-07-22T14:17:39.8186158+08:00||;True|2024-04-10T12:55:31.3963752+08:00||;True|2024-04-08T13:59:25.5487203+08:00||;True|2024-04-06T09:30:09.5350539+08:00||;True|2024-04-06T08:46:05.8814658+08:00||;True|2024-04-05T14:06:52.0448024+08:00||;True|2024-04-05T12:47:46.0561601+08:00||;True|2024-02-26T08:46:22.0988887+08:00||;True|2024-02-24T19:17:13.6770376+08:00||;True|2024-02-24T14:32:37.4450337+08:00||;True|2024-02-23T10:22:06.5150173+08:00||;True|2024-02-22T13:19:56.6997993+08:00||;True|2024-02-22T10:53:17.7929585+08:00||;True|2024-02-21T17:08:06.5553444+08:00||;True|2024-02-19T16:24:37.4912012+08:00||;True|2024-02-02T10:07:23.2726075+08:00||;True|2024-02-02T08:36:49.2904460+08:00||;True|2024-01-29T17:44:43.6800769+08:00||;True|2024-01-23T09:47:26.7811926+08:00||;True|2024-01-18T16:23:30.3373836+08:00||;True|2024-01-17T14:22:04.2552286+08:00||;True|2024-01-16T16:54:42.2316892+08:00||;True|2024-01-16T16:37:23.8028858+08:00||;True|2024-01-16T09:25:24.4007775+08:00||;True|2024-01-15T10:18:57.3362616+08:00||;True|2024-01-15T10:07:14.2044763+08:00||;True|2024-01-10T14:03:36.4451130+08:00||;True|2024-01-09T16:45:32.9601815+08:00||;True|2024-01-06T14:16:34.2732220+08:00||;True|2024-01-06T14:11:45.2134717+08:00||;True|2024-01-06T11:30:58.9198887+08:00||;</History>
+ <_PublishTargetUrl>E:\Tool\SG\StandardPda\MESApplication\bin\Release\net8.0\publish\</_PublishTargetUrl>
+ <History>True|2025-04-21T00:27:37.2394337Z||;True|2025-04-12T12:05:38.9937329+08:00||;True|2025-04-11T16:26:37.5266569+08:00||;True|2025-03-20T17:58:14.2077893+08:00||;True|2025-03-15T00:59:39.9999573+08:00||;True|2025-03-07T15:42:21.8276566+08:00||;True|2025-02-27T10:43:45.2314689+08:00||;True|2025-02-21T16:39:35.2452658+08:00||;True|2025-01-13T15:35:48.6521519+08:00||;True|2025-01-08T16:15:03.8764923+08:00||;True|2024-12-30T15:00:59.8090011+08:00||;True|2024-12-06T16:11:01.2090466+08:00||;True|2024-11-26T09:07:33.5654976+08:00||;True|2024-11-20T15:49:27.1100474+08:00||;True|2024-11-16T18:18:42.4224922+08:00||;True|2024-11-15T09:32:12.6287354+08:00||;True|2024-11-13T10:19:32.3283327+08:00||;True|2024-09-06T14:40:56.3762241+08:00||;True|2024-08-20T17:12:00.2924570+08:00||;True|2024-08-17T10:57:05.6670396+08:00||;True|2024-08-17T10:56:46.8068041+08:00||;True|2024-08-16T14:09:17.0526491+08:00||;True|2024-08-15T08:40:32.8134665+08:00||;True|2024-08-14T10:00:27.7017207+08:00||;True|2024-08-14T08:54:44.8284031+08:00||;True|2024-08-07T10:32:10.3689256+08:00||;True|2024-08-05T15:45:03.0864530+08:00||;True|2024-08-03T09:59:13.7916520+08:00||;True|2024-07-31T17:27:28.1965929+08:00||;True|2024-07-31T15:27:34.7943845+08:00||;True|2024-07-30T15:04:50.5849235+08:00||;True|2024-07-30T14:09:06.2877325+08:00||;True|2024-07-29T16:11:30.4493940+08:00||;True|2024-07-23T14:30:34.4591002+08:00||;True|2024-07-22T14:17:39.8186158+08:00||;True|2024-04-10T12:55:31.3963752+08:00||;True|2024-04-08T13:59:25.5487203+08:00||;True|2024-04-06T09:30:09.5350539+08:00||;True|2024-04-06T08:46:05.8814658+08:00||;True|2024-04-05T14:06:52.0448024+08:00||;True|2024-04-05T12:47:46.0561601+08:00||;True|2024-02-26T08:46:22.0988887+08:00||;True|2024-02-24T19:17:13.6770376+08:00||;True|2024-02-24T14:32:37.4450337+08:00||;True|2024-02-23T10:22:06.5150173+08:00||;True|2024-02-22T13:19:56.6997993+08:00||;True|2024-02-22T10:53:17.7929585+08:00||;True|2024-02-21T17:08:06.5553444+08:00||;True|2024-02-19T16:24:37.4912012+08:00||;True|2024-02-02T10:07:23.2726075+08:00||;True|2024-02-02T08:36:49.2904460+08:00||;True|2024-01-29T17:44:43.6800769+08:00||;True|2024-01-23T09:47:26.7811926+08:00||;True|2024-01-18T16:23:30.3373836+08:00||;True|2024-01-17T14:22:04.2552286+08:00||;True|2024-01-16T16:54:42.2316892+08:00||;True|2024-01-16T16:37:23.8028858+08:00||;True|2024-01-16T09:25:24.4007775+08:00||;True|2024-01-15T10:18:57.3362616+08:00||;True|2024-01-15T10:07:14.2044763+08:00||;True|2024-01-10T14:03:36.4451130+08:00||;True|2024-01-09T16:45:32.9601815+08:00||;True|2024-01-06T14:16:34.2732220+08:00||;True|2024-01-06T14:11:45.2134717+08:00||;True|2024-01-06T11:30:58.9198887+08:00||;</History>
<LastFailureDetails />
</PropertyGroup>
</Project>
\ No newline at end of file
diff --git a/MESApplication/bin/Debug/net8.0/Config/appsettings.json b/MESApplication/bin/Debug/net8.0/Config/appsettings.json
new file mode 100644
index 0000000..a2d2355
--- /dev/null
+++ b/MESApplication/bin/Debug/net8.0/Config/appsettings.json
@@ -0,0 +1,17 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft": "Warning",
+ "Microsoft.Hosting.Lifetime": "Information"
+ }
+ },
+ "AllowedHosts": "*",
+ "Version": "1.0.0",
+ "X-KDApi-AcctID": "6642174ccf499e",
+ "X-KDApi-UserName": "fbb",
+ "X-KDApi-AppID": "309305_6Yeq67hszJm4xX+Pw3wCz7UJ4KQ9RsOH",
+ "X-KDApi-AppSec": "f11a9b4a85af42898d479e97444acbaa",
+ "X-KDApi-LCID": "2052",
+ "X-KDApi-ServerUrl": "http://192.168.11.120/k3cloud"
+}
\ No newline at end of file
diff --git a/MESApplication/bin/Debug/net8.0/Kingdee.CDP.WebApi.SDK.dll b/MESApplication/bin/Debug/net8.0/Kingdee.CDP.WebApi.SDK.dll
new file mode 100644
index 0000000..4d68c10
--- /dev/null
+++ b/MESApplication/bin/Debug/net8.0/Kingdee.CDP.WebApi.SDK.dll
Binary files differ
diff --git a/MESApplication/bin/Debug/net8.0/MESApplication.staticwebassets.endpoints.json b/MESApplication/bin/Debug/net8.0/MESApplication.staticwebassets.endpoints.json
new file mode 100644
index 0000000..2b6c535
--- /dev/null
+++ b/MESApplication/bin/Debug/net8.0/MESApplication.staticwebassets.endpoints.json
@@ -0,0 +1,5 @@
+{
+ "Version": 1,
+ "ManifestType": "Build",
+ "Endpoints": []
+}
\ No newline at end of file
diff --git a/MESApplication/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll b/MESApplication/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll
new file mode 100644
index 0000000..87d132b
--- /dev/null
+++ b/MESApplication/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll
Binary files differ
diff --git a/MESApplication/bin/Debug/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll b/MESApplication/bin/Debug/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll
new file mode 100644
index 0000000..0d5829a
--- /dev/null
+++ b/MESApplication/bin/Debug/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll
Binary files differ
diff --git a/MESApplication/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Json.dll b/MESApplication/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Json.dll
new file mode 100644
index 0000000..ff5b554
--- /dev/null
+++ b/MESApplication/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Json.dll
Binary files differ
diff --git a/MESApplication/bin/Debug/net8.0/Microsoft.Extensions.Configuration.dll b/MESApplication/bin/Debug/net8.0/Microsoft.Extensions.Configuration.dll
new file mode 100644
index 0000000..cec1680
--- /dev/null
+++ b/MESApplication/bin/Debug/net8.0/Microsoft.Extensions.Configuration.dll
Binary files differ
diff --git a/MESApplication/bin/Debug/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll b/MESApplication/bin/Debug/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll
new file mode 100644
index 0000000..867bd9a
--- /dev/null
+++ b/MESApplication/bin/Debug/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll
Binary files differ
diff --git a/MESApplication/bin/Debug/net8.0/Microsoft.Extensions.FileProviders.Physical.dll b/MESApplication/bin/Debug/net8.0/Microsoft.Extensions.FileProviders.Physical.dll
new file mode 100644
index 0000000..6a746f6
--- /dev/null
+++ b/MESApplication/bin/Debug/net8.0/Microsoft.Extensions.FileProviders.Physical.dll
Binary files differ
diff --git a/MESApplication/bin/Debug/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll b/MESApplication/bin/Debug/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll
new file mode 100644
index 0000000..2762ef8
--- /dev/null
+++ b/MESApplication/bin/Debug/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll
Binary files differ
diff --git a/MESApplication/bin/Debug/net8.0/Microsoft.Extensions.Primitives.dll b/MESApplication/bin/Debug/net8.0/Microsoft.Extensions.Primitives.dll
new file mode 100644
index 0000000..78fb491
--- /dev/null
+++ b/MESApplication/bin/Debug/net8.0/Microsoft.Extensions.Primitives.dll
Binary files differ
diff --git a/MESApplication/bin/Debug/net8.0/System.IO.Pipelines.dll b/MESApplication/bin/Debug/net8.0/System.IO.Pipelines.dll
new file mode 100644
index 0000000..5485177
--- /dev/null
+++ b/MESApplication/bin/Debug/net8.0/System.IO.Pipelines.dll
Binary files differ
diff --git a/MESApplication/bin/Debug/net8.0/System.Text.Encodings.Web.dll b/MESApplication/bin/Debug/net8.0/System.Text.Encodings.Web.dll
new file mode 100644
index 0000000..c9aaf7c
--- /dev/null
+++ b/MESApplication/bin/Debug/net8.0/System.Text.Encodings.Web.dll
Binary files differ
diff --git a/MESApplication/bin/Debug/net8.0/System.Text.Json.dll b/MESApplication/bin/Debug/net8.0/System.Text.Json.dll
new file mode 100644
index 0000000..5e5d285
--- /dev/null
+++ b/MESApplication/bin/Debug/net8.0/System.Text.Json.dll
Binary files differ
diff --git a/MESApplication/bin/Debug/net8.0/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll b/MESApplication/bin/Debug/net8.0/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll
new file mode 100644
index 0000000..d95ef08
--- /dev/null
+++ b/MESApplication/bin/Debug/net8.0/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/Config/appsettings.json b/MESApplication/bin/Release/net8.0/Config/appsettings.json
new file mode 100644
index 0000000..a2d2355
--- /dev/null
+++ b/MESApplication/bin/Release/net8.0/Config/appsettings.json
@@ -0,0 +1,17 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft": "Warning",
+ "Microsoft.Hosting.Lifetime": "Information"
+ }
+ },
+ "AllowedHosts": "*",
+ "Version": "1.0.0",
+ "X-KDApi-AcctID": "6642174ccf499e",
+ "X-KDApi-UserName": "fbb",
+ "X-KDApi-AppID": "309305_6Yeq67hszJm4xX+Pw3wCz7UJ4KQ9RsOH",
+ "X-KDApi-AppSec": "f11a9b4a85af42898d479e97444acbaa",
+ "X-KDApi-LCID": "2052",
+ "X-KDApi-ServerUrl": "http://192.168.11.120/k3cloud"
+}
\ No newline at end of file
diff --git a/MESApplication/bin/Release/net8.0/Kingdee.CDP.WebApi.SDK.dll b/MESApplication/bin/Release/net8.0/Kingdee.CDP.WebApi.SDK.dll
new file mode 100644
index 0000000..4d68c10
--- /dev/null
+++ b/MESApplication/bin/Release/net8.0/Kingdee.CDP.WebApi.SDK.dll
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/MESApplication.staticwebassets.endpoints.json b/MESApplication/bin/Release/net8.0/MESApplication.staticwebassets.endpoints.json
new file mode 100644
index 0000000..2b6c535
--- /dev/null
+++ b/MESApplication/bin/Release/net8.0/MESApplication.staticwebassets.endpoints.json
@@ -0,0 +1,5 @@
+{
+ "Version": 1,
+ "ManifestType": "Build",
+ "Endpoints": []
+}
\ No newline at end of file
diff --git a/MESApplication/bin/Release/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll b/MESApplication/bin/Release/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll
new file mode 100644
index 0000000..87d132b
--- /dev/null
+++ b/MESApplication/bin/Release/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll b/MESApplication/bin/Release/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll
new file mode 100644
index 0000000..0d5829a
--- /dev/null
+++ b/MESApplication/bin/Release/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/Microsoft.Extensions.Configuration.Json.dll b/MESApplication/bin/Release/net8.0/Microsoft.Extensions.Configuration.Json.dll
new file mode 100644
index 0000000..ff5b554
--- /dev/null
+++ b/MESApplication/bin/Release/net8.0/Microsoft.Extensions.Configuration.Json.dll
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/Microsoft.Extensions.Configuration.dll b/MESApplication/bin/Release/net8.0/Microsoft.Extensions.Configuration.dll
new file mode 100644
index 0000000..cec1680
--- /dev/null
+++ b/MESApplication/bin/Release/net8.0/Microsoft.Extensions.Configuration.dll
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll b/MESApplication/bin/Release/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll
new file mode 100644
index 0000000..867bd9a
--- /dev/null
+++ b/MESApplication/bin/Release/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/Microsoft.Extensions.FileProviders.Physical.dll b/MESApplication/bin/Release/net8.0/Microsoft.Extensions.FileProviders.Physical.dll
new file mode 100644
index 0000000..6a746f6
--- /dev/null
+++ b/MESApplication/bin/Release/net8.0/Microsoft.Extensions.FileProviders.Physical.dll
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll b/MESApplication/bin/Release/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll
new file mode 100644
index 0000000..2762ef8
--- /dev/null
+++ b/MESApplication/bin/Release/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/Microsoft.Extensions.Primitives.dll b/MESApplication/bin/Release/net8.0/Microsoft.Extensions.Primitives.dll
new file mode 100644
index 0000000..78fb491
--- /dev/null
+++ b/MESApplication/bin/Release/net8.0/Microsoft.Extensions.Primitives.dll
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/System.IO.Pipelines.dll b/MESApplication/bin/Release/net8.0/System.IO.Pipelines.dll
new file mode 100644
index 0000000..5485177
--- /dev/null
+++ b/MESApplication/bin/Release/net8.0/System.IO.Pipelines.dll
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/System.Text.Encodings.Web.dll b/MESApplication/bin/Release/net8.0/System.Text.Encodings.Web.dll
new file mode 100644
index 0000000..c9aaf7c
--- /dev/null
+++ b/MESApplication/bin/Release/net8.0/System.Text.Encodings.Web.dll
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/System.Text.Json.dll b/MESApplication/bin/Release/net8.0/System.Text.Json.dll
new file mode 100644
index 0000000..5e5d285
--- /dev/null
+++ b/MESApplication/bin/Release/net8.0/System.Text.Json.dll
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/publish/Config/appsettings.json b/MESApplication/bin/Release/net8.0/publish/Config/appsettings.json
new file mode 100644
index 0000000..a2d2355
--- /dev/null
+++ b/MESApplication/bin/Release/net8.0/publish/Config/appsettings.json
@@ -0,0 +1,17 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft": "Warning",
+ "Microsoft.Hosting.Lifetime": "Information"
+ }
+ },
+ "AllowedHosts": "*",
+ "Version": "1.0.0",
+ "X-KDApi-AcctID": "6642174ccf499e",
+ "X-KDApi-UserName": "fbb",
+ "X-KDApi-AppID": "309305_6Yeq67hszJm4xX+Pw3wCz7UJ4KQ9RsOH",
+ "X-KDApi-AppSec": "f11a9b4a85af42898d479e97444acbaa",
+ "X-KDApi-LCID": "2052",
+ "X-KDApi-ServerUrl": "http://192.168.11.120/k3cloud"
+}
\ No newline at end of file
diff --git a/MESApplication/bin/Release/net8.0/publish/Kingdee.CDP.WebApi.SDK.dll b/MESApplication/bin/Release/net8.0/publish/Kingdee.CDP.WebApi.SDK.dll
new file mode 100644
index 0000000..4d68c10
--- /dev/null
+++ b/MESApplication/bin/Release/net8.0/publish/Kingdee.CDP.WebApi.SDK.dll
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/publish/MESApplication.staticwebassets.endpoints.json b/MESApplication/bin/Release/net8.0/publish/MESApplication.staticwebassets.endpoints.json
new file mode 100644
index 0000000..8403e6b
--- /dev/null
+++ b/MESApplication/bin/Release/net8.0/publish/MESApplication.staticwebassets.endpoints.json
@@ -0,0 +1,5 @@
+{
+ "Version": 1,
+ "ManifestType": "Publish",
+ "Endpoints": []
+}
\ No newline at end of file
diff --git a/MESApplication/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.Abstractions.dll b/MESApplication/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.Abstractions.dll
new file mode 100644
index 0000000..87d132b
--- /dev/null
+++ b/MESApplication/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.Abstractions.dll
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.FileExtensions.dll b/MESApplication/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.FileExtensions.dll
new file mode 100644
index 0000000..0d5829a
--- /dev/null
+++ b/MESApplication/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.FileExtensions.dll
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.Json.dll b/MESApplication/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.Json.dll
new file mode 100644
index 0000000..ff5b554
--- /dev/null
+++ b/MESApplication/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.Json.dll
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.dll b/MESApplication/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.dll
new file mode 100644
index 0000000..cec1680
--- /dev/null
+++ b/MESApplication/bin/Release/net8.0/publish/Microsoft.Extensions.Configuration.dll
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/publish/Microsoft.Extensions.FileProviders.Abstractions.dll b/MESApplication/bin/Release/net8.0/publish/Microsoft.Extensions.FileProviders.Abstractions.dll
new file mode 100644
index 0000000..867bd9a
--- /dev/null
+++ b/MESApplication/bin/Release/net8.0/publish/Microsoft.Extensions.FileProviders.Abstractions.dll
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/publish/Microsoft.Extensions.FileProviders.Physical.dll b/MESApplication/bin/Release/net8.0/publish/Microsoft.Extensions.FileProviders.Physical.dll
new file mode 100644
index 0000000..6a746f6
--- /dev/null
+++ b/MESApplication/bin/Release/net8.0/publish/Microsoft.Extensions.FileProviders.Physical.dll
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/publish/Microsoft.Extensions.FileSystemGlobbing.dll b/MESApplication/bin/Release/net8.0/publish/Microsoft.Extensions.FileSystemGlobbing.dll
new file mode 100644
index 0000000..2762ef8
--- /dev/null
+++ b/MESApplication/bin/Release/net8.0/publish/Microsoft.Extensions.FileSystemGlobbing.dll
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/publish/Microsoft.Extensions.Primitives.dll b/MESApplication/bin/Release/net8.0/publish/Microsoft.Extensions.Primitives.dll
new file mode 100644
index 0000000..78fb491
--- /dev/null
+++ b/MESApplication/bin/Release/net8.0/publish/Microsoft.Extensions.Primitives.dll
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/publish/System.IO.Pipelines.dll b/MESApplication/bin/Release/net8.0/publish/System.IO.Pipelines.dll
new file mode 100644
index 0000000..5485177
--- /dev/null
+++ b/MESApplication/bin/Release/net8.0/publish/System.IO.Pipelines.dll
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/publish/System.Text.Encodings.Web.dll b/MESApplication/bin/Release/net8.0/publish/System.Text.Encodings.Web.dll
new file mode 100644
index 0000000..c9aaf7c
--- /dev/null
+++ b/MESApplication/bin/Release/net8.0/publish/System.Text.Encodings.Web.dll
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/publish/System.Text.Json.dll b/MESApplication/bin/Release/net8.0/publish/System.Text.Json.dll
new file mode 100644
index 0000000..5e5d285
--- /dev/null
+++ b/MESApplication/bin/Release/net8.0/publish/System.Text.Json.dll
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/publish/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll b/MESApplication/bin/Release/net8.0/publish/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll
new file mode 100644
index 0000000..d95ef08
--- /dev/null
+++ b/MESApplication/bin/Release/net8.0/publish/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll b/MESApplication/bin/Release/net8.0/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll
new file mode 100644
index 0000000..d95ef08
--- /dev/null
+++ b/MESApplication/bin/Release/net8.0/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll
Binary files differ
--
Gitblit v1.9.3