五环焊接拍片数、合格数汇总逻辑
This commit is contained in:
parent
4d1f663dc2
commit
cf3e980b10
|
@ -326,21 +326,21 @@ namespace BLL
|
||||||
//// 并行执行异步方法
|
//// 并行执行异步方法
|
||||||
//var welderNumTask = HJGLData_HJGLService.GetWelderNumAsync(); //获取焊工总数
|
//var welderNumTask = HJGLData_HJGLService.GetWelderNumAsync(); //获取焊工总数
|
||||||
//var dineInfoListTask = HJGLData_HJGLService.GetDineInfoAsync(); //获达因数信息
|
//var dineInfoListTask = HJGLData_HJGLService.GetDineInfoAsync(); //获达因数信息
|
||||||
//var chCheckItemListTask = HJGLData_HJGLService.GetCHCheckItemAsync(); //获取焊接检查信息
|
var chCheckItemListTask = HJGLData_HJGLService.GetCHCheckItemAsync(); //获取焊接检查信息
|
||||||
|
|
||||||
// 等待所有异步方法执行完成
|
// 等待所有异步方法执行完成
|
||||||
await Task.WhenAll(
|
await Task.WhenAll(
|
||||||
projectHJGLDataListTask
|
projectHJGLDataListTask,
|
||||||
//welderNumTask,
|
//welderNumTask,
|
||||||
//dineInfoListTask,
|
//dineInfoListTask,
|
||||||
//chCheckItemListTask
|
chCheckItemListTask
|
||||||
);
|
);
|
||||||
|
|
||||||
// 统一获取异步方法的返回值
|
// 统一获取异步方法的返回值
|
||||||
var projectHJGLDataList = await projectHJGLDataListTask;
|
var projectHJGLDataList = await projectHJGLDataListTask;
|
||||||
//var welderNum = await welderNumTask;
|
//var welderNum = await welderNumTask;
|
||||||
//var dineInfoList = await dineInfoListTask;
|
//var dineInfoList = await dineInfoListTask;
|
||||||
//var chCheckItemList = await chCheckItemListTask;
|
var chCheckItemList = await chCheckItemListTask;
|
||||||
|
|
||||||
|
|
||||||
var table = new HJGLData_HJGL
|
var table = new HJGLData_HJGL
|
||||||
|
@ -352,13 +352,13 @@ namespace BLL
|
||||||
WelderNum = projectHJGLDataList.Sum(x => x.WelderNum),
|
WelderNum = projectHJGLDataList.Sum(x => x.WelderNum),
|
||||||
TotalDineNum = projectHJGLDataList.Sum(x => x.TotalDineNum),
|
TotalDineNum = projectHJGLDataList.Sum(x => x.TotalDineNum),
|
||||||
CompleteDineNum = projectHJGLDataList.Sum(x => x.CompleteDineNum),
|
CompleteDineNum = projectHJGLDataList.Sum(x => x.CompleteDineNum),
|
||||||
TotalFilmNum = projectHJGLDataList.Sum(x => x.TotalFilmNum),
|
//TotalFilmNum = projectHJGLDataList.Sum(x => x.TotalFilmNum),
|
||||||
OKFilmNum = projectHJGLDataList.Sum(x => x.OKFilmNum),
|
//OKFilmNum = projectHJGLDataList.Sum(x => x.OKFilmNum),
|
||||||
//WelderNum = welderNum.Count(),
|
//WelderNum = welderNum.Count(),
|
||||||
//TotalDineNum = Convert.ToInt32(dineInfoList.Sum(x => x.Size)),
|
//TotalDineNum = Convert.ToInt32(dineInfoList.Sum(x => x.Size)),
|
||||||
//CompleteDineNum = Convert.ToInt32(dineInfoList.Sum(x => x.DoneDin)),
|
//CompleteDineNum = Convert.ToInt32(dineInfoList.Sum(x => x.DoneDin)),
|
||||||
//TotalFilmNum = Convert.ToInt32(chCheckItemList.Sum(x => x.CHT_TotalFilm)),
|
TotalFilmNum = Convert.ToInt32(chCheckItemList.Sum(x => x.CHT_TotalFilm)),
|
||||||
//OKFilmNum = Convert.ToInt32(chCheckItemList.Sum(x => x.CHT_PassFilm)),
|
OKFilmNum = Convert.ToInt32(chCheckItemList.Sum(x => x.CHT_PassFilm)),
|
||||||
CreateMan = Const.sysglyId,
|
CreateMan = Const.sysglyId,
|
||||||
CreateDate = DateTime.Now
|
CreateDate = DateTime.Now
|
||||||
};
|
};
|
||||||
|
@ -530,19 +530,45 @@ namespace BLL
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public static List<CHCheckItemOutput> GetCHCheckItem()
|
public static List<CHCheckItemOutput> GetCHCheckItem()
|
||||||
{
|
{
|
||||||
var result = (from x in Funs.DB.CH_CheckItem
|
//var result = (from x in Funs.DB.CH_CheckItem
|
||||||
join y in Funs.DB.CH_Check on x.CHT_CheckID equals y.CHT_CheckID
|
// join y in Funs.DB.CH_Check on x.CHT_CheckID equals y.CHT_CheckID
|
||||||
where BeUnderConstructionList.Contains(y.ProjectId)
|
// where BeUnderConstructionList.Contains(y.ProjectId)
|
||||||
select new Model.CHCheckItemOutput()
|
// select new Model.CHCheckItemOutput()
|
||||||
|
// {
|
||||||
|
// Id = x.CHT_CheckItemID,
|
||||||
|
// ProjectId = y.ProjectId,
|
||||||
|
// UnitId = y.UnitId,
|
||||||
|
// CHT_TotalFilm = x.CHT_TotalFilm,
|
||||||
|
// CHT_PassFilm = x.CHT_PassFilm
|
||||||
|
// //UnitName = UnitService.getUnitNamesUnitIds(x.UnitIds),
|
||||||
|
// }).ToList();
|
||||||
|
|
||||||
|
List<CHCheckItemOutput> list =new List<CHCheckItemOutput>();
|
||||||
|
var ndtLists = from x in Funs.DB.ProcessControl_NondestructiveTest_New where x.ProfessionalName == "工艺管道" select x;
|
||||||
|
if (ndtLists.Count() > 0)
|
||||||
{
|
{
|
||||||
Id = x.CHT_CheckItemID,
|
foreach (var project in BeUnderConstructionList)
|
||||||
ProjectId = y.ProjectId,
|
{
|
||||||
UnitId = y.UnitId,
|
var ndt = (from x in ndtLists
|
||||||
CHT_TotalFilm = x.CHT_TotalFilm,
|
where x.ProjectId == project
|
||||||
CHT_PassFilm = x.CHT_PassFilm
|
orderby x.CreateDate descending
|
||||||
//UnitName = UnitService.getUnitNamesUnitIds(x.UnitIds),
|
select x).FirstOrDefault();
|
||||||
}).ToList();
|
if (ndt != null)
|
||||||
return result;
|
{
|
||||||
|
if (ndt.TotalQuantity.HasValue)
|
||||||
|
{
|
||||||
|
list.Add(new CHCheckItemOutput {
|
||||||
|
Id = ndt.Id,
|
||||||
|
ProjectId = project,
|
||||||
|
//UnitId = y.UnitId,
|
||||||
|
CHT_TotalFilm = ndt.TotalQuantity,
|
||||||
|
CHT_PassFilm = Convert.ToInt32(ndt.TotalQuantity.Value * Funs.GetNewDecimalOrZero(ndt.TotalRate) / 100)
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return list;
|
||||||
}
|
}
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 获取焊接检查信息(异步)
|
/// 获取焊接检查信息(异步)
|
||||||
|
|
|
@ -86,8 +86,6 @@ namespace BLL
|
||||||
{
|
{
|
||||||
using (Model.SGGLDB db = new Model.SGGLDB(Funs.ConnString))
|
using (Model.SGGLDB db = new Model.SGGLDB(Funs.ConnString))
|
||||||
{
|
{
|
||||||
}
|
|
||||||
|
|
||||||
var table = new Project_HJGLData_Defect
|
var table = new Project_HJGLData_Defect
|
||||||
{
|
{
|
||||||
Id = newtable.Id,
|
Id = newtable.Id,
|
||||||
|
@ -102,15 +100,16 @@ namespace BLL
|
||||||
db.Project_HJGLData_Defect.InsertOnSubmit(table);
|
db.Project_HJGLData_Defect.InsertOnSubmit(table);
|
||||||
db.SubmitChanges();
|
db.SubmitChanges();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static void AddBulkProject_HJGLData_Defect(List<Project_HJGLData_Defect> newtables)
|
public static void AddBulkProject_HJGLData_Defect(List<Project_HJGLData_Defect> newtables)
|
||||||
{
|
{
|
||||||
using (Model.SGGLDB db = new Model.SGGLDB(Funs.ConnString))
|
using (Model.SGGLDB db = new Model.SGGLDB(Funs.ConnString))
|
||||||
{
|
{
|
||||||
}
|
|
||||||
db.Project_HJGLData_Defect.InsertAllOnSubmit(newtables);
|
db.Project_HJGLData_Defect.InsertAllOnSubmit(newtables);
|
||||||
db.SubmitChanges();
|
db.SubmitChanges();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static void UpdateProject_HJGLData_Defect(Project_HJGLData_Defect newtable)
|
public static void UpdateProject_HJGLData_Defect(Project_HJGLData_Defect newtable)
|
||||||
{
|
{
|
||||||
|
|
|
@ -384,15 +384,21 @@ namespace BLL
|
||||||
// where y.ProjectId == projectid
|
// where y.ProjectId == projectid
|
||||||
// select x.CHT_TotalFilm).ToList().Sum());
|
// select x.CHT_TotalFilm).ToList().Sum());
|
||||||
|
|
||||||
int result = 0;
|
//int result = 0;
|
||||||
var getD2 = (from x in Funs.DB.HJGL_FL_Data
|
//var getD2 = (from x in Funs.DB.HJGL_FL_Data
|
||||||
where x.ProjectId == projectid
|
// where x.ProjectId == projectid
|
||||||
orderby x.CompileDate descending
|
// orderby x.CompileDate descending
|
||||||
select x).FirstOrDefault();
|
// select x).FirstOrDefault();
|
||||||
if (getD2 != null)
|
//if (getD2 != null)
|
||||||
{
|
//{
|
||||||
result = Funs.GetNewIntOrZero(getD2.OneTimeFilmAmount.Split('.')[0]);
|
// result = Funs.GetNewIntOrZero(getD2.OneTimeFilmAmount.Split('.')[0]);
|
||||||
}
|
//}
|
||||||
|
|
||||||
|
int result = Convert.ToInt32((from x in Funs.DB.ProcessControl_NondestructiveTest_New
|
||||||
|
where x.ProjectId == projectid && x.ProfessionalName == "工艺管道"
|
||||||
|
orderby x.CreateDate descending
|
||||||
|
select x.TotalQuantity
|
||||||
|
).FirstOrDefault());
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -403,16 +409,26 @@ namespace BLL
|
||||||
{
|
{
|
||||||
//int result = Convert.ToInt32((from x in Funs.DB.CH_CheckItem
|
//int result = Convert.ToInt32((from x in Funs.DB.CH_CheckItem
|
||||||
// join y in Funs.DB.CH_Check on x.CHT_CheckID equals y.CHT_CheckID
|
// join y in Funs.DB.CH_Check on x.CHT_CheckID equals y.CHT_CheckID
|
||||||
// where y.ProjectId == projectid
|
// where
|
||||||
// select x.CHT_PassFilm).ToList().Sum());
|
// select x.CHT_PassFilm).ToList().Sum());
|
||||||
|
//int result = 0;
|
||||||
|
//var getD2 = (from x in Funs.DB.HJGL_FL_Data
|
||||||
|
// where x.ProjectId == projectid
|
||||||
|
// orderby x.CompileDate descending
|
||||||
|
// select x).FirstOrDefault();
|
||||||
|
//if (getD2 != null)
|
||||||
|
//{
|
||||||
|
// result = Funs.GetNewIntOrZero(getD2.OneTimeFilmQualifiedAmount.Split('.')[0]);
|
||||||
|
//}
|
||||||
|
|
||||||
int result = 0;
|
int result = 0;
|
||||||
var getD2 = (from x in Funs.DB.HJGL_FL_Data
|
var ndt = (from x in db.ProcessControl_NondestructiveTest_New where x.ProjectId == projectid && x.ProfessionalName == "工艺管道" orderby x.CreateDate descending select x).FirstOrDefault();
|
||||||
where x.ProjectId == projectid
|
if (ndt != null)
|
||||||
orderby x.CompileDate descending
|
|
||||||
select x).FirstOrDefault();
|
|
||||||
if (getD2 != null)
|
|
||||||
{
|
{
|
||||||
result = Funs.GetNewIntOrZero(getD2.OneTimeFilmQualifiedAmount.Split('.')[0]);
|
if (ndt.TotalQuantity.HasValue)
|
||||||
|
{
|
||||||
|
result = Convert.ToInt32(ndt.TotalQuantity.Value * Funs.GetNewDecimalOrZero(ndt.TotalRate) / 100);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<_PublishTargetUrl>G:\发布\五环WebApi</_PublishTargetUrl>
|
<_PublishTargetUrl>G:\发布\五环WebApi</_PublishTargetUrl>
|
||||||
<History>True|2025-06-26T15:34:06.4223762Z||;True|2025-06-26T22:42:08.9018138+08:00||;True|2025-06-26T22:16:01.8954571+08:00||;True|2025-06-26T21:19:42.2638204+08:00||;True|2025-06-25T23:22:39.7267591+08:00||;True|2025-06-25T23:19:33.2378458+08:00||;True|2025-06-25T22:18:16.2863303+08:00||;True|2025-06-25T22:10:29.2540175+08:00||;True|2025-06-25T22:00:58.5212166+08:00||;True|2025-06-25T22:00:31.2531214+08:00||;True|2025-06-25T18:33:01.5770030+08:00||;True|2025-06-25T17:47:33.7779622+08:00||;True|2025-06-25T17:40:26.9905954+08:00||;True|2025-06-20T11:24:58.4099232+08:00||;True|2025-06-19T16:42:45.2358810+08:00||;True|2025-06-16T19:28:10.6447738+08:00||;True|2025-06-12T11:00:02.3559090+08:00||;True|2025-06-12T10:40:29.0324520+08:00||;True|2025-06-04T23:24:01.0324973+08:00||;True|2025-06-04T18:39:41.7304136+08:00||;True|2025-06-04T11:23:17.3803405+08:00||;True|2025-06-04T11:04:32.4212196+08:00||;True|2025-05-26T19:19:09.7246357+08:00||;True|2025-05-26T19:16:39.1283077+08:00||;True|2025-05-26T19:09:24.1561616+08:00||;True|2025-04-07T16:11:44.5172315+08:00||;True|2025-04-02T18:10:22.8695984+08:00||;True|2025-04-02T17:59:51.2978116+08:00||;True|2025-04-02T17:50:55.8630437+08:00||;True|2025-04-02T17:49:22.5114405+08:00||;True|2025-04-02T17:47:11.0650205+08:00||;True|2025-04-02T17:39:09.8576853+08:00||;True|2025-04-02T17:38:15.3079030+08:00||;True|2025-04-02T17:22:03.6735964+08:00||;True|2025-04-02T17:19:04.4220913+08:00||;True|2025-04-02T17:17:14.0244636+08:00||;True|2025-04-02T17:11:09.6583011+08:00||;True|2025-04-02T17:07:23.6330597+08:00||;True|2025-04-02T16:58:45.4070649+08:00||;True|2025-04-02T16:50:20.5907511+08:00||;True|2025-04-02T16:44:18.5351224+08:00||;True|2025-04-02T16:31:11.1297141+08:00||;True|2025-04-02T16:18:43.1126995+08:00||;True|2025-04-02T14:50:42.5384021+08:00||;True|2025-04-01T10:53:08.9403414+08:00||;True|2025-04-01T10:52:08.7646389+08:00||;True|2025-04-01T09:52:56.3095742+08:00||;True|2025-03-13T16:44:25.3220313+08:00||;True|2025-03-13T15:31:10.3223071+08:00||;True|2025-03-13T10:58:17.1401575+08:00||;True|2025-01-23T23:10:37.9664637+08:00||;True|2024-09-24T09:51:10.8028974+08:00||;True|2024-09-20T17:30:59.6144803+08:00||;True|2024-09-20T15:28:40.2547949+08:00||;True|2024-09-19T16:30:51.3047517+08:00||;True|2024-09-19T15:53:23.2431713+08:00||;True|2024-09-19T15:48:55.0571748+08:00||;True|2024-09-19T15:06:29.5748482+08:00||;True|2024-09-19T14:55:42.1477578+08:00||;True|2024-09-19T10:07:53.8666329+08:00||;True|2024-09-03T16:26:17.4985546+08:00||;True|2024-07-17T10:29:15.9472548+08:00||;</History>
|
<History>True|2025-06-27T02:31:14.8332810Z||;True|2025-06-27T10:13:13.3022394+08:00||;True|2025-06-26T23:51:04.1304509+08:00||;True|2025-06-26T23:34:06.4223762+08:00||;True|2025-06-26T22:42:08.9018138+08:00||;True|2025-06-26T22:16:01.8954571+08:00||;True|2025-06-26T21:19:42.2638204+08:00||;True|2025-06-25T23:22:39.7267591+08:00||;True|2025-06-25T23:19:33.2378458+08:00||;True|2025-06-25T22:18:16.2863303+08:00||;True|2025-06-25T22:10:29.2540175+08:00||;True|2025-06-25T22:00:58.5212166+08:00||;True|2025-06-25T22:00:31.2531214+08:00||;True|2025-06-25T18:33:01.5770030+08:00||;True|2025-06-25T17:47:33.7779622+08:00||;True|2025-06-25T17:40:26.9905954+08:00||;True|2025-06-20T11:24:58.4099232+08:00||;True|2025-06-19T16:42:45.2358810+08:00||;True|2025-06-16T19:28:10.6447738+08:00||;True|2025-06-12T11:00:02.3559090+08:00||;True|2025-06-12T10:40:29.0324520+08:00||;True|2025-06-04T23:24:01.0324973+08:00||;True|2025-06-04T18:39:41.7304136+08:00||;True|2025-06-04T11:23:17.3803405+08:00||;True|2025-06-04T11:04:32.4212196+08:00||;True|2025-05-26T19:19:09.7246357+08:00||;True|2025-05-26T19:16:39.1283077+08:00||;True|2025-05-26T19:09:24.1561616+08:00||;True|2025-04-07T16:11:44.5172315+08:00||;True|2025-04-02T18:10:22.8695984+08:00||;True|2025-04-02T17:59:51.2978116+08:00||;True|2025-04-02T17:50:55.8630437+08:00||;True|2025-04-02T17:49:22.5114405+08:00||;True|2025-04-02T17:47:11.0650205+08:00||;True|2025-04-02T17:39:09.8576853+08:00||;True|2025-04-02T17:38:15.3079030+08:00||;True|2025-04-02T17:22:03.6735964+08:00||;True|2025-04-02T17:19:04.4220913+08:00||;True|2025-04-02T17:17:14.0244636+08:00||;True|2025-04-02T17:11:09.6583011+08:00||;True|2025-04-02T17:07:23.6330597+08:00||;True|2025-04-02T16:58:45.4070649+08:00||;True|2025-04-02T16:50:20.5907511+08:00||;True|2025-04-02T16:44:18.5351224+08:00||;True|2025-04-02T16:31:11.1297141+08:00||;True|2025-04-02T16:18:43.1126995+08:00||;True|2025-04-02T14:50:42.5384021+08:00||;True|2025-04-01T10:53:08.9403414+08:00||;True|2025-04-01T10:52:08.7646389+08:00||;True|2025-04-01T09:52:56.3095742+08:00||;True|2025-03-13T16:44:25.3220313+08:00||;True|2025-03-13T15:31:10.3223071+08:00||;True|2025-03-13T10:58:17.1401575+08:00||;True|2025-01-23T23:10:37.9664637+08:00||;True|2024-09-24T09:51:10.8028974+08:00||;True|2024-09-20T17:30:59.6144803+08:00||;True|2024-09-20T15:28:40.2547949+08:00||;True|2024-09-19T16:30:51.3047517+08:00||;True|2024-09-19T15:53:23.2431713+08:00||;True|2024-09-19T15:48:55.0571748+08:00||;True|2024-09-19T15:06:29.5748482+08:00||;True|2024-09-19T14:55:42.1477578+08:00||;True|2024-09-19T10:07:53.8666329+08:00||;True|2024-09-03T16:26:17.4985546+08:00||;True|2024-07-17T10:29:15.9472548+08:00||;</History>
|
||||||
<LastFailureDetails />
|
<LastFailureDetails />
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
@ -86,22 +86,22 @@
|
||||||
<publishTime>10/28/2024 14:02:50</publishTime>
|
<publishTime>10/28/2024 14:02:50</publishTime>
|
||||||
</File>
|
</File>
|
||||||
<File Include="bin/App_global.asax.compiled">
|
<File Include="bin/App_global.asax.compiled">
|
||||||
<publishTime>06/26/2025 23:34:04</publishTime>
|
<publishTime>06/27/2025 10:31:13</publishTime>
|
||||||
</File>
|
</File>
|
||||||
<File Include="bin/App_global.asax.dll">
|
<File Include="bin/App_global.asax.dll">
|
||||||
<publishTime>06/26/2025 23:34:04</publishTime>
|
<publishTime>06/27/2025 10:31:13</publishTime>
|
||||||
</File>
|
</File>
|
||||||
<File Include="bin/Aspose.Words.dll">
|
<File Include="bin/Aspose.Words.dll">
|
||||||
<publishTime>12/06/2024 20:13:58</publishTime>
|
<publishTime>12/06/2024 20:13:58</publishTime>
|
||||||
</File>
|
</File>
|
||||||
<File Include="bin/BLL.dll">
|
<File Include="bin/BLL.dll">
|
||||||
<publishTime>06/26/2025 22:41:55</publishTime>
|
<publishTime>06/27/2025 10:31:03</publishTime>
|
||||||
</File>
|
</File>
|
||||||
<File Include="bin/BLL.dll.config">
|
<File Include="bin/BLL.dll.config">
|
||||||
<publishTime>12/26/2024 09:46:52</publishTime>
|
<publishTime>12/26/2024 09:46:52</publishTime>
|
||||||
</File>
|
</File>
|
||||||
<File Include="bin/BLL.pdb">
|
<File Include="bin/BLL.pdb">
|
||||||
<publishTime>06/26/2025 22:41:55</publishTime>
|
<publishTime>06/27/2025 10:31:03</publishTime>
|
||||||
</File>
|
</File>
|
||||||
<File Include="bin/BouncyCastle.Crypto.dll">
|
<File Include="bin/BouncyCastle.Crypto.dll">
|
||||||
<publishTime>12/18/2020 05:32:28</publishTime>
|
<publishTime>12/18/2020 05:32:28</publishTime>
|
||||||
|
@ -389,13 +389,13 @@
|
||||||
<publishTime>02/09/2013 00:42:28</publishTime>
|
<publishTime>02/09/2013 00:42:28</publishTime>
|
||||||
</File>
|
</File>
|
||||||
<File Include="bin/WebAPI.dll">
|
<File Include="bin/WebAPI.dll">
|
||||||
<publishTime>06/26/2025 23:33:55</publishTime>
|
<publishTime>06/27/2025 10:31:04</publishTime>
|
||||||
</File>
|
</File>
|
||||||
<File Include="bin/WebAPI.pdb">
|
<File Include="bin/WebAPI.pdb">
|
||||||
<publishTime>06/26/2025 23:33:55</publishTime>
|
<publishTime>06/27/2025 10:31:04</publishTime>
|
||||||
</File>
|
</File>
|
||||||
<File Include="bin/WebAPI.xml">
|
<File Include="bin/WebAPI.xml">
|
||||||
<publishTime>06/26/2025 23:33:55</publishTime>
|
<publishTime>06/27/2025 10:31:04</publishTime>
|
||||||
</File>
|
</File>
|
||||||
<File Include="bin/WebGrease.dll">
|
<File Include="bin/WebGrease.dll">
|
||||||
<publishTime>01/23/2014 21:57:34</publishTime>
|
<publishTime>01/23/2014 21:57:34</publishTime>
|
||||||
|
@ -479,7 +479,7 @@
|
||||||
<publishTime>10/28/2024 14:02:50</publishTime>
|
<publishTime>10/28/2024 14:02:50</publishTime>
|
||||||
</File>
|
</File>
|
||||||
<File Include="PrecompiledApp.config">
|
<File Include="PrecompiledApp.config">
|
||||||
<publishTime>06/26/2025 23:33:56</publishTime>
|
<publishTime>06/27/2025 10:31:05</publishTime>
|
||||||
</File>
|
</File>
|
||||||
<File Include="Scripts/bootstrap.js">
|
<File Include="Scripts/bootstrap.js">
|
||||||
<publishTime>10/28/2024 14:02:50</publishTime>
|
<publishTime>10/28/2024 14:02:50</publishTime>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<LastActiveSolutionConfig>Debug|Any CPU</LastActiveSolutionConfig>
|
<LastActiveSolutionConfig>Release|Any CPU</LastActiveSolutionConfig>
|
||||||
<UseIISExpress>true</UseIISExpress>
|
<UseIISExpress>true</UseIISExpress>
|
||||||
<Use64BitIISExpress />
|
<Use64BitIISExpress />
|
||||||
<IISExpressSSLPort />
|
<IISExpressSSLPort />
|
||||||
|
|
Loading…
Reference in New Issue