From 80e534050e166b7dd384af0b506d8fb7734164f0 Mon Sep 17 00:00:00 2001 From: wendy <408182087@qq.com> Date: Wed, 23 Oct 2024 09:51:34 +0800 Subject: [PATCH] =?UTF-8?q?20241023=20=E5=90=88=E5=90=8C=E7=AE=A1=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FCL/BLL/DropListService.cs | 15 + FCL/BLL/SES/ContractManagementService.cs | 12 + FCL/BLL/SES/SESRelatedDataService.cs | 8 + .../.vs/FineUIPro.Web.csproj.dtbcache.json | 2 +- FCL/FineUIPro.Web/FineUIPro.Web.csproj | 32 + FCL/FineUIPro.Web/FineUIPro.Web.csproj.user | 2 +- FCL/FineUIPro.Web/SES/SESRelatedData.aspx | 280 +++++++- FCL/FineUIPro.Web/SES/SESRelatedData.aspx.cs | 603 +++++++++++++++++- .../SES/SESRelatedData.aspx.designer.cs | 324 ++++++++++ .../SES/SESRelatedDataContractManage.aspx | 35 +- .../SES/SESRelatedDataContractManage.aspx.cs | 61 +- ...RelatedDataContractManage.aspx.designer.cs | 104 ++- .../SES/SESRelatedDataContractManage2.aspx | 84 +++ .../SES/SESRelatedDataContractManage2.aspx.cs | 196 ++++++ ...elatedDataContractManage2.aspx.designer.cs | 215 +++++++ .../SES/SESRelatedDataContractManage3.aspx | 84 +++ .../SES/SESRelatedDataContractManage3.aspx.cs | 204 ++++++ ...elatedDataContractManage3.aspx.designer.cs | 215 +++++++ .../SES/SESRelatedDataContractManage4.aspx | 84 +++ .../SES/SESRelatedDataContractManage4.aspx.cs | 204 ++++++ ...elatedDataContractManage4.aspx.designer.cs | 215 +++++++ .../SES/SESRelatedDataContractManage5.aspx | 75 +++ .../SES/SESRelatedDataContractManage5.aspx.cs | 229 +++++++ ...elatedDataContractManage5.aspx.designer.cs | 197 ++++++ FCL/FineUIPro.Web/SES/SESRelatedDataEdit.aspx | 63 +- .../SES/SESRelatedDataEdit.aspx.cs | 95 ++- .../SES/SESRelatedDataEdit.aspx.designer.cs | 235 ++++--- FCL/FineUIPro.Web/Web.config | 2 +- FCL/Model/Model.cs | 283 ++++++-- FCL/WebApi/WebApi.csproj.user | 2 +- 30 files changed, 3790 insertions(+), 370 deletions(-) create mode 100644 FCL/FineUIPro.Web/SES/SESRelatedDataContractManage2.aspx create mode 100644 FCL/FineUIPro.Web/SES/SESRelatedDataContractManage2.aspx.cs create mode 100644 FCL/FineUIPro.Web/SES/SESRelatedDataContractManage2.aspx.designer.cs create mode 100644 FCL/FineUIPro.Web/SES/SESRelatedDataContractManage3.aspx create mode 100644 FCL/FineUIPro.Web/SES/SESRelatedDataContractManage3.aspx.cs create mode 100644 FCL/FineUIPro.Web/SES/SESRelatedDataContractManage3.aspx.designer.cs create mode 100644 FCL/FineUIPro.Web/SES/SESRelatedDataContractManage4.aspx create mode 100644 FCL/FineUIPro.Web/SES/SESRelatedDataContractManage4.aspx.cs create mode 100644 FCL/FineUIPro.Web/SES/SESRelatedDataContractManage4.aspx.designer.cs create mode 100644 FCL/FineUIPro.Web/SES/SESRelatedDataContractManage5.aspx create mode 100644 FCL/FineUIPro.Web/SES/SESRelatedDataContractManage5.aspx.cs create mode 100644 FCL/FineUIPro.Web/SES/SESRelatedDataContractManage5.aspx.designer.cs diff --git a/FCL/BLL/DropListService.cs b/FCL/BLL/DropListService.cs index e713c95..ef2498c 100644 --- a/FCL/BLL/DropListService.cs +++ b/FCL/BLL/DropListService.cs @@ -62,6 +62,21 @@ return lis; } + /// + /// 审计结果下拉选项 + /// + /// + public static ListItem[] getAuditResultDropList() + { + ListItem [] lis = new ListItem[5]; + lis[0] = new ListItem("红", "红"); + lis[1] = new ListItem("红黄", "红黄"); + lis[2] = new ListItem("黄", "黄"); + lis[3] = new ListItem("黄绿", "黄绿"); + lis[4] = new ListItem("绿", "绿"); + return lis; + } + #endregion } diff --git a/FCL/BLL/SES/ContractManagementService.cs b/FCL/BLL/SES/ContractManagementService.cs index 35ae4e2..84662ff 100644 --- a/FCL/BLL/SES/ContractManagementService.cs +++ b/FCL/BLL/SES/ContractManagementService.cs @@ -35,6 +35,12 @@ namespace BLL newContractManagement.UploadDate = contractManagement.UploadDate; newContractManagement.Remark = contractManagement.Remark; newContractManagement.AttachUrl = contractManagement.AttachUrl; + newContractManagement.SupplementedBudget = contractManagement.SupplementedBudget; + newContractManagement.TotalBudget = contractManagement.TotalBudget; + newContractManagement.StartDate = contractManagement.StartDate; + newContractManagement.EndDate = contractManagement.EndDate; + newContractManagement.AuditDate = contractManagement.AuditDate; + newContractManagement.AuditResult = contractManagement.AuditResult; Funs.DB.FC_ContractManagement.InsertOnSubmit(newContractManagement); Funs.DB.SubmitChanges(); } @@ -57,6 +63,12 @@ namespace BLL newContractManagement.UploadDate = contractManagement.UploadDate; newContractManagement.Remark = contractManagement.Remark; newContractManagement.AttachUrl = contractManagement.AttachUrl; + newContractManagement.SupplementedBudget = contractManagement.SupplementedBudget; + newContractManagement.TotalBudget = contractManagement.TotalBudget; + newContractManagement.StartDate = contractManagement.StartDate; + newContractManagement.EndDate = contractManagement.EndDate; + newContractManagement.AuditDate = contractManagement.AuditDate; + newContractManagement.AuditResult = contractManagement.AuditResult; Funs.DB.SubmitChanges(); } } diff --git a/FCL/BLL/SES/SESRelatedDataService.cs b/FCL/BLL/SES/SESRelatedDataService.cs index 3d84f38..39734da 100644 --- a/FCL/BLL/SES/SESRelatedDataService.cs +++ b/FCL/BLL/SES/SESRelatedDataService.cs @@ -104,6 +104,10 @@ namespace BLL newSESRelatedData.ExceedLimit = SESRelatedData.ExceedLimit; newSESRelatedData.CreateDate = SESRelatedData.CreateDate; newSESRelatedData.CreatePerson = SESRelatedData.CreatePerson; + newSESRelatedData.InitialBudget = SESRelatedData.InitialBudget; + newSESRelatedData.IfExtend = SESRelatedData.IfExtend; + newSESRelatedData.PreviousFO = SESRelatedData.PreviousFO; + newSESRelatedData.InitialAllocation = SESRelatedData.InitialAllocation; Funs.DB.FC_SESRelatedData.InsertOnSubmit(newSESRelatedData); Funs.DB.SubmitChanges(); @@ -167,6 +171,10 @@ namespace BLL newSESRelatedData.ExceedLimit = SESRelatedData.ExceedLimit; newSESRelatedData.ModifyDate = SESRelatedData.ModifyDate; newSESRelatedData.ModifyPerson = SESRelatedData.ModifyPerson; + newSESRelatedData.InitialBudget = SESRelatedData.InitialBudget; + newSESRelatedData.IfExtend = SESRelatedData.IfExtend; + newSESRelatedData.PreviousFO = SESRelatedData.PreviousFO; + newSESRelatedData.InitialAllocation = SESRelatedData.InitialAllocation; Funs.DB.SubmitChanges(); } diff --git a/FCL/FineUIPro.Web/.vs/FineUIPro.Web.csproj.dtbcache.json b/FCL/FineUIPro.Web/.vs/FineUIPro.Web.csproj.dtbcache.json index 4ef1a75..42ea754 100644 --- a/FCL/FineUIPro.Web/.vs/FineUIPro.Web.csproj.dtbcache.json +++ b/FCL/FineUIPro.Web/.vs/FineUIPro.Web.csproj.dtbcache.json @@ -1 +1 @@ -{"RootPath":"E:\\MyProject\\FCL\\Basf_FCL\\FCL\\FineUIPro.Web","ProjectFileName":"FineUIPro.Web.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"App_GlobalResources\\Lan.en-US.designer.cs"},{"SourceFile":"App_GlobalResources\\Lan.zh-CN.designer.cs"},{"SourceFile":"App_GlobalResources\\Lan.Designer.cs"},{"SourceFile":"AttachFile\\fileupload.ashx.cs"},{"SourceFile":"AttachFile\\webuploader2.aspx.cs"},{"SourceFile":"AttachFile\\webuploader2.aspx.designer.cs"},{"SourceFile":"AttachFile\\webuploader.aspx.cs"},{"SourceFile":"AttachFile\\webuploader.aspx.designer.cs"},{"SourceFile":"AttachFile\\webuploader3.aspx.cs"},{"SourceFile":"AttachFile\\webuploader3.aspx.designer.cs"},{"SourceFile":"BaseInfo\\ContractorList.aspx.cs"},{"SourceFile":"BaseInfo\\ContractorList.aspx.designer.cs"},{"SourceFile":"BaseInfo\\Currency.aspx.cs"},{"SourceFile":"BaseInfo\\Currency.aspx.designer.cs"},{"SourceFile":"BaseInfo\\Department.aspx.cs"},{"SourceFile":"BaseInfo\\Department.aspx.designer.cs"},{"SourceFile":"BaseInfo\\Discipline.aspx.cs"},{"SourceFile":"BaseInfo\\Discipline.aspx.designer.cs"},{"SourceFile":"BaseInfo\\DisciplineCategory.aspx.cs"},{"SourceFile":"BaseInfo\\DisciplineCategory.aspx.designer.cs"},{"SourceFile":"BaseInfo\\FileType.aspx.cs"},{"SourceFile":"BaseInfo\\FileType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\FOOffset.aspx.cs"},{"SourceFile":"BaseInfo\\FOOffset.aspx.designer.cs"},{"SourceFile":"BaseInfo\\FOType.aspx.cs"},{"SourceFile":"BaseInfo\\FOType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\Item.aspx.cs"},{"SourceFile":"BaseInfo\\Item.aspx.designer.cs"},{"SourceFile":"BaseInfo\\PriceScheme.aspx.cs"},{"SourceFile":"BaseInfo\\PriceScheme.aspx.designer.cs"},{"SourceFile":"BaseInfo\\TaxRate.aspx.cs"},{"SourceFile":"BaseInfo\\TaxRate.aspx.designer.cs"},{"SourceFile":"BaseInfo\\TemplateType.aspx.cs"},{"SourceFile":"BaseInfo\\TemplateType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\Type.aspx.cs"},{"SourceFile":"BaseInfo\\Type.aspx.designer.cs"},{"SourceFile":"BaseInfo\\ViolationClause.aspx.cs"},{"SourceFile":"BaseInfo\\ViolationClause.aspx.designer.cs"},{"SourceFile":"CCP\\CcpEdit.aspx.cs"},{"SourceFile":"CCP\\CcpEdit.aspx.designer.cs"},{"SourceFile":"CCP\\CcpList.aspx.cs"},{"SourceFile":"CCP\\CcpList.aspx.designer.cs"},{"SourceFile":"CCP\\CCPUpload.aspx.cs"},{"SourceFile":"CCP\\CCPUpload.aspx.designer.cs"},{"SourceFile":"CCP\\CcpViewList.aspx.cs"},{"SourceFile":"CCP\\CcpViewList.aspx.designer.cs"},{"SourceFile":"common\\LdapAuthentication.cs"},{"SourceFile":"common\\LDAPUser.cs"},{"SourceFile":"common\\main.ashx.cs"},{"SourceFile":"common\\MainSearch.aspx.cs"},{"SourceFile":"common\\MainSearch.aspx.designer.cs"},{"SourceFile":"common\\PageBase.cs"},{"SourceFile":"CPT\\CPTReportList.aspx.cs"},{"SourceFile":"CPT\\CPTReportList.aspx.designer.cs"},{"SourceFile":"CPT\\SESReportToCPT.aspx.cs"},{"SourceFile":"CPT\\SESReportToCPT.aspx.designer.cs"},{"SourceFile":"CPT\\SESReportToCPTEdit.aspx.cs"},{"SourceFile":"CPT\\SESReportToCPTEdit.aspx.designer.cs"},{"SourceFile":"Encrypt.aspx.cs"},{"SourceFile":"Encrypt.aspx.designer.cs"},{"SourceFile":"common\\loading.aspx.cs"},{"SourceFile":"common\\loading.aspx.designer.cs"},{"SourceFile":"common\\Main.aspx.cs"},{"SourceFile":"common\\Main.aspx.designer.cs"},{"SourceFile":"common\\main_bootstrap_pure.aspx.cs"},{"SourceFile":"common\\main_bootstrap_pure.aspx.designer.cs"},{"SourceFile":"common\\main_bootstrap_pure_login.aspx.cs"},{"SourceFile":"common\\main_bootstrap_pure_login.aspx.designer.cs"},{"SourceFile":"common\\ReportPrint\\CalculateChinaEx.aspx.cs"},{"SourceFile":"common\\ReportPrint\\CalculateChinaEx.aspx.designer.cs"},{"SourceFile":"common\\ReportPrint\\ExPrintSet.aspx.cs"},{"SourceFile":"common\\ReportPrint\\ExPrintSet.aspx.designer.cs"},{"SourceFile":"common\\ReportPrint\\ExReportPrint.aspx.cs"},{"SourceFile":"common\\ReportPrint\\ExReportPrint.aspx.designer.cs"},{"SourceFile":"common\\ReportPrint\\PrintDesigner.aspx.cs"},{"SourceFile":"common\\ReportPrint\\PrintDesigner.aspx.designer.cs"},{"SourceFile":"common\\ReportPrint\\ReadExReportFile.aspx.cs"},{"SourceFile":"common\\ReportPrint\\ReadExReportFile.aspx.designer.cs"},{"SourceFile":"common\\ReportPrint\\SaveTabFile.aspx.cs"},{"SourceFile":"common\\ReportPrint\\SaveTabFile.aspx.designer.cs"},{"SourceFile":"common\\source.aspx.cs"},{"SourceFile":"common\\source.aspx.designer.cs"},{"SourceFile":"common\\source_file.aspx.cs"},{"SourceFile":"common\\source_file.aspx.designer.cs"},{"SourceFile":"common\\themes.aspx.cs"},{"SourceFile":"common\\themes.aspx.designer.cs"},{"SourceFile":"config\\ajax.aspx.cs"},{"SourceFile":"config\\ajax.aspx.designer.cs"},{"SourceFile":"config\\enable_gzip_iis6.aspx.cs"},{"SourceFile":"config\\enable_gzip_iis6.aspx.designer.cs"},{"SourceFile":"config\\icons.aspx.cs"},{"SourceFile":"config\\icons.aspx.designer.cs"},{"SourceFile":"config\\icons_font.aspx.cs"},{"SourceFile":"config\\icons_font.aspx.designer.cs"},{"SourceFile":"config\\install_toolbox.aspx.cs"},{"SourceFile":"config\\install_toolbox.aspx.designer.cs"},{"SourceFile":"config\\loading.aspx.cs"},{"SourceFile":"config\\loading.aspx.designer.cs"},{"SourceFile":"config\\modify_webconfig.aspx.cs"},{"SourceFile":"config\\modify_webconfig.aspx.designer.cs"},{"SourceFile":"Controls\\ChartControl.ascx.cs"},{"SourceFile":"Controls\\ChartControl.ascx.designer.cs"},{"SourceFile":"Controls\\ClientJs\\ClientJs.ascx.cs"},{"SourceFile":"Controls\\ClientJs\\ClientJs.ascx.designer.cs"},{"SourceFile":"Controls\\GridNavgator.ascx.cs"},{"SourceFile":"Controls\\GridNavgator.ascx.designer.cs"},{"SourceFile":"Controls\\JDGL\\ChartControl.ascx.cs"},{"SourceFile":"Controls\\JDGL\\ChartControl.ascx.designer.cs"},{"SourceFile":"Controls\\ProgressBox.ascx.cs"},{"SourceFile":"Controls\\ProgressBox.ascx.designer.cs"},{"SourceFile":"Evaluation\\ContractorEvaluation.aspx.cs"},{"SourceFile":"Evaluation\\ContractorEvaluation.aspx.designer.cs"},{"SourceFile":"Evaluation\\ContractorEvaluationEdit.aspx.cs"},{"SourceFile":"Evaluation\\ContractorEvaluationEdit.aspx.designer.cs"},{"SourceFile":"Evaluation\\Evaluation.aspx.cs"},{"SourceFile":"Evaluation\\Evaluation.aspx.designer.cs"},{"SourceFile":"Evaluation\\EvaluationNew.aspx.cs"},{"SourceFile":"Evaluation\\EvaluationNew.aspx.designer.cs"},{"SourceFile":"Evaluation\\EvaluationReport.aspx.cs"},{"SourceFile":"Evaluation\\EvaluationReport.aspx.designer.cs"},{"SourceFile":"Evaluation\\EvaluationUpload.aspx.cs"},{"SourceFile":"Evaluation\\EvaluationUpload.aspx.designer.cs"},{"SourceFile":"Evaluation\\ExportDetails.aspx.cs"},{"SourceFile":"Evaluation\\ExportDetails.aspx.designer.cs"},{"SourceFile":"Evaluation\\FilesManagement.aspx.cs"},{"SourceFile":"Evaluation\\FilesManagement.aspx.designer.cs"},{"SourceFile":"Evaluation\\PerformanceReport.aspx.cs"},{"SourceFile":"Evaluation\\PerformanceReport.aspx.designer.cs"},{"SourceFile":"Evaluation\\SafetyEvaluation.aspx.cs"},{"SourceFile":"Evaluation\\SafetyEvaluation.aspx.designer.cs"},{"SourceFile":"Global.asax.cs"},{"SourceFile":"index.aspx.cs"},{"SourceFile":"index.aspx.designer.cs"},{"SourceFile":"KPI\\KPI.aspx.cs"},{"SourceFile":"KPI\\KPI.aspx.designer.cs"},{"SourceFile":"Login.aspx.cs"},{"SourceFile":"Login.aspx.designer.cs"},{"SourceFile":"loginApi.aspx.cs"},{"SourceFile":"loginApi.aspx.designer.cs"},{"SourceFile":"LogOff.aspx.cs"},{"SourceFile":"LogOff.aspx.designer.cs"},{"SourceFile":"MyWebService.asmx.cs"},{"SourceFile":"OperationError.aspx.cs"},{"SourceFile":"OperationError.aspx.designer.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"Scripts\\index.aspx.cs"},{"SourceFile":"Scripts\\index.aspx.designer.cs"},{"SourceFile":"SendEmail\\SelectUserControl.ascx.cs"},{"SourceFile":"SendEmail\\SelectUserControl.ascx.designer.cs"},{"SourceFile":"SendEmail\\SendEmail.aspx.cs"},{"SourceFile":"SendEmail\\SendEmail.aspx.designer.cs"},{"SourceFile":"SendEmail\\SendEmailLog.aspx.cs"},{"SourceFile":"SendEmail\\SendEmailLog.aspx.designer.cs"},{"SourceFile":"SendEmail\\SendEmailPop.aspx.cs"},{"SourceFile":"SendEmail\\SendEmailPop.aspx.designer.cs"},{"SourceFile":"SendEmail\\SendEmailTemplate.aspx.cs"},{"SourceFile":"SendEmail\\SendEmailTemplate.aspx.designer.cs"},{"SourceFile":"SendEmail\\SendEmailTemplateList.aspx.cs"},{"SourceFile":"SendEmail\\SendEmailTemplateList.aspx.designer.cs"},{"SourceFile":"SES\\ContractorQualification.aspx.cs"},{"SourceFile":"SES\\ContractorQualification.aspx.designer.cs"},{"SourceFile":"SES\\ContractorQualificationEdit.aspx.cs"},{"SourceFile":"SES\\ContractorQualificationEdit.aspx.designer.cs"},{"SourceFile":"SES\\ContractorQueCopy.aspx.cs"},{"SourceFile":"SES\\ContractorQueCopy.aspx.designer.cs"},{"SourceFile":"SES\\CQualityPunish.aspx.cs"},{"SourceFile":"SES\\CQualityPunish.aspx.designer.cs"},{"SourceFile":"SES\\CQualityPunishEdit.aspx.cs"},{"SourceFile":"SES\\CQualityPunishEdit.aspx.designer.cs"},{"SourceFile":"SES\\CSafePunishEdit.aspx.cs"},{"SourceFile":"SES\\CSafePunishEdit.aspx.designer.cs"},{"SourceFile":"SES\\CTSalesContractManagement.aspx.cs"},{"SourceFile":"SES\\CTSalesContractManagement.aspx.designer.cs"},{"SourceFile":"SES\\CTSalesContracts.aspx.cs"},{"SourceFile":"SES\\CTSalesContracts.aspx.designer.cs"},{"SourceFile":"SES\\CTSalesContractsEdit.aspx.cs"},{"SourceFile":"SES\\CTSalesContractsEdit.aspx.designer.cs"},{"SourceFile":"SES\\CTSalesSignedContracts.aspx.cs"},{"SourceFile":"SES\\CTSalesSignedContracts.aspx.designer.cs"},{"SourceFile":"SES\\FCList.aspx.cs"},{"SourceFile":"SES\\FCList.aspx.designer.cs"},{"SourceFile":"SES\\FCListEdit.aspx.cs"},{"SourceFile":"SES\\FCListEdit.aspx.designer.cs"},{"SourceFile":"SES\\OneTimeContractManagement.aspx.cs"},{"SourceFile":"SES\\OneTimeContractManagement.aspx.designer.cs"},{"SourceFile":"SES\\OneTimeContracts.aspx.cs"},{"SourceFile":"SES\\OneTimeContracts.aspx.designer.cs"},{"SourceFile":"SES\\OneTimeContractsEdit.aspx.cs"},{"SourceFile":"SES\\OneTimeContractsEdit.aspx.designer.cs"},{"SourceFile":"SES\\OneTimeSignedContracts.aspx.cs"},{"SourceFile":"SES\\OneTimeSignedContracts.aspx.designer.cs"},{"SourceFile":"SES\\CSafePunish.aspx.cs"},{"SourceFile":"SES\\CSafePunish.aspx.designer.cs"},{"SourceFile":"SES\\SESEvaluateList.aspx.cs"},{"SourceFile":"SES\\SESEvaluateList.aspx.designer.cs"},{"SourceFile":"SES\\SESRelatedData.aspx.cs"},{"SourceFile":"SES\\SESRelatedData.aspx.designer.cs"},{"SourceFile":"SES\\SESRelatedDataContractManage.aspx.cs"},{"SourceFile":"SES\\SESRelatedDataContractManage.aspx.designer.cs"},{"SourceFile":"SES\\SESRelatedDataEdit.aspx.cs"},{"SourceFile":"SES\\SESRelatedDataEdit.aspx.designer.cs"},{"SourceFile":"SES\\SESRelatedDataSearch.aspx.cs"},{"SourceFile":"SES\\SESRelatedDataSearch.aspx.designer.cs"},{"SourceFile":"SES\\SESRelatedDataSigned.aspx.cs"},{"SourceFile":"SES\\SESRelatedDataSigned.aspx.designer.cs"},{"SourceFile":"SES\\SESReport.ashx.cs"},{"SourceFile":"SES\\SESReport.aspx.cs"},{"SourceFile":"SES\\SESReport.aspx.designer.cs"},{"SourceFile":"SES\\SESReportEdit.aspx.cs"},{"SourceFile":"SES\\SESReportEdit.aspx.designer.cs"},{"SourceFile":"SES\\SSR.aspx.cs"},{"SourceFile":"SES\\SSR.aspx.designer.cs"},{"SourceFile":"SES\\SSREdit.aspx.cs"},{"SourceFile":"SES\\SSREdit.aspx.designer.cs"},{"SourceFile":"SES\\StandardTemplate.aspx.cs"},{"SourceFile":"SES\\StandardTemplate.aspx.designer.cs"},{"SourceFile":"SES\\StandardTemplateEdit.aspx.cs"},{"SourceFile":"SES\\StandardTemplateEdit.aspx.designer.cs"},{"SourceFile":"ssocallback.aspx.cs"},{"SourceFile":"ssocallback.aspx.designer.cs"},{"SourceFile":"Styles\\index.aspx.cs"},{"SourceFile":"Styles\\index.aspx.designer.cs"},{"SourceFile":"SysManage\\DataBackup.aspx.cs"},{"SourceFile":"SysManage\\DataBackup.aspx.designer.cs"},{"SourceFile":"SysManage\\LogList.aspx.cs"},{"SourceFile":"SysManage\\LogList.aspx.designer.cs"},{"SourceFile":"SysManage\\RoleList.aspx.cs"},{"SourceFile":"SysManage\\RoleList.aspx.designer.cs"},{"SourceFile":"SysManage\\RoleListEdit.aspx.cs"},{"SourceFile":"SysManage\\RoleListEdit.aspx.designer.cs"},{"SourceFile":"SysManage\\RolePower.aspx.cs"},{"SourceFile":"SysManage\\RolePower.aspx.designer.cs"},{"SourceFile":"SysManage\\SelectUserToEMail.aspx.cs"},{"SourceFile":"SysManage\\SelectUserToEMail.aspx.designer.cs"},{"SourceFile":"SysManage\\SysSet.aspx.cs"},{"SourceFile":"SysManage\\SysSet.aspx.designer.cs"},{"SourceFile":"SysManage\\UpdatePassword.aspx.cs"},{"SourceFile":"SysManage\\UpdatePassword.aspx.designer.cs"},{"SourceFile":"SysManage\\UpdatePasswordEdit.aspx.cs"},{"SourceFile":"SysManage\\UpdatePasswordEdit.aspx.designer.cs"},{"SourceFile":"SysManage\\UserList.aspx.cs"},{"SourceFile":"SysManage\\UserList.aspx.designer.cs"},{"SourceFile":"SysManage\\UserListEdit.aspx.cs"},{"SourceFile":"SysManage\\UserListEdit.aspx.designer.cs"},{"SourceFile":"SysManage\\UserToEMial.aspx.cs"},{"SourceFile":"SysManage\\UserToEMial.aspx.designer.cs"},{"SourceFile":"obj\\Debug\\.NETFramework,Version=v4.6.1.AssemblyAttributes.cs"}],"References":[{"Reference":"E:\\MyProject\\FCL\\Basf_FCL\\FCL\\BLL\\bin\\Debug\\BLL.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"E:\\MyProject\\FCL\\Basf_FCL\\FCL\\packages\\Portable.BouncyCastle.1.8.9\\lib\\net40\\BouncyCastle.Crypto.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\FCL\\Basf_FCL\\FCL\\FineUIPro\\FineUIPro.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\FCL\\Basf_FCL\\FCL\\packages\\SharpZipLib.1.3.2\\lib\\net45\\ICSharpCode.SharpZipLib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\FCL\\Basf_FCL\\FCL\\packages\\Microsoft.Bcl.AsyncInterfaces.1.1.0\\lib\\net461\\Microsoft.Bcl.AsyncInterfaces.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\Microsoft.CSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\FCL\\Basf_FCL\\FCL\\packages\\Microsoft.IdentityModel.Abstractions.7.6.0\\lib\\net461\\Microsoft.IdentityModel.Abstractions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\FCL\\Basf_FCL\\FCL\\packages\\Microsoft.IdentityModel.JsonWebTokens.6.22.1\\lib\\net461\\Microsoft.IdentityModel.JsonWebTokens.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\FCL\\Basf_FCL\\FCL\\packages\\Microsoft.IdentityModel.Logging.7.6.0\\lib\\net461\\Microsoft.IdentityModel.Logging.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\FCL\\Basf_FCL\\FCL\\packages\\Microsoft.IdentityModel.Tokens.6.22.1\\lib\\net461\\Microsoft.IdentityModel.Tokens.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\Microsoft.JScript.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\FCL\\Basf_FCL\\FCL\\FineUIPro.Web\\FakesAssemblies\\Microsoft.ReportViewer.Common.15.0.0.0.Fakes.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\FCL\\Basf_FCL\\FCL\\packages\\Microsoft.ReportingServices.ReportViewerControl.WebForms.150.1484.0\\lib\\net40\\Microsoft.ReportViewer.Common.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\FCL\\Basf_FCL\\FCL\\packages\\Microsoft.ReportingServices.ReportViewerControl.WebForms.150.1484.0\\lib\\net40\\Microsoft.ReportViewer.DataVisualization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\FCL\\Basf_FCL\\FCL\\packages\\Microsoft.ReportingServices.ReportViewerControl.WebForms.150.1484.0\\lib\\net40\\Microsoft.ReportViewer.Design.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\FCL\\Basf_FCL\\FCL\\packages\\Microsoft.ReportingServices.ReportViewerControl.WebForms.150.1484.0\\lib\\net40\\Microsoft.ReportViewer.ProcessingObjectModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\FCL\\Basf_FCL\\FCL\\packages\\Microsoft.ReportingServices.ReportViewerControl.WebForms.150.1484.0\\lib\\net40\\Microsoft.ReportViewer.WebDesign.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\FCL\\Basf_FCL\\FCL\\packages\\Microsoft.ReportingServices.ReportViewerControl.WebForms.150.1484.0\\lib\\net40\\Microsoft.ReportViewer.WebForms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\FCL\\Basf_FCL\\FCL\\packages\\Microsoft.SqlServer.Types.14.0.1016.290\\lib\\net40\\Microsoft.SqlServer.Types.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\FCL\\Basf_FCL\\FCL\\Model\\bin\\Debug\\Model.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\FCL\\Basf_FCL\\FCL\\packages\\Newtonsoft.Json.13.0.1\\lib\\net45\\Newtonsoft.Json.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\FCL\\Basf_FCL\\FCL\\packages\\NPOI.2.5.5\\lib\\net45\\NPOI.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\FCL\\Basf_FCL\\FCL\\packages\\NPOI.2.5.5\\lib\\net45\\NPOI.OOXML.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\FCL\\Basf_FCL\\FCL\\packages\\NPOI.2.5.5\\lib\\net45\\NPOI.OpenXml4Net.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\FCL\\Basf_FCL\\FCL\\packages\\NPOI.2.5.5\\lib\\net45\\NPOI.OpenXmlFormats.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\FCL\\Basf_FCL\\FCL\\packages\\System.Buffers.4.5.1\\lib\\net461\\System.Buffers.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Configuration.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Data.DataSetExtensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Data.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.DirectoryServices.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.DirectoryServices.Protocols.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Drawing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.EnterpriseServices.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\FCL\\Basf_FCL\\FCL\\packages\\System.IdentityModel.Tokens.Jwt.6.22.1\\lib\\net461\\System.IdentityModel.Tokens.Jwt.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.IO.Compression.FileSystem.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Management.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\FCL\\Basf_FCL\\FCL\\packages\\System.Memory.4.5.5\\lib\\net461\\System.Memory.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Net.Http.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Numerics.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\FCL\\Basf_FCL\\FCL\\packages\\System.Numerics.Vectors.4.5.0\\lib\\net46\\System.Numerics.Vectors.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\FCL\\Basf_FCL\\FCL\\packages\\System.Runtime.CompilerServices.Unsafe.4.6.0\\lib\\netstandard2.0\\System.Runtime.CompilerServices.Unsafe.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Runtime.Serialization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.ServiceModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\FCL\\Basf_FCL\\FCL\\packages\\System.Text.Encodings.Web.4.7.2\\lib\\net461\\System.Text.Encodings.Web.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\FCL\\Basf_FCL\\FCL\\packages\\System.Text.Json.4.6.0\\lib\\net461\\System.Text.Json.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\FCL\\Basf_FCL\\FCL\\packages\\System.Threading.Tasks.Extensions.4.5.4\\lib\\net461\\System.Threading.Tasks.Extensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\FCL\\Basf_FCL\\FCL\\packages\\System.ValueTuple.4.5.0\\lib\\net461\\System.ValueTuple.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.ApplicationServices.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.DataVisualization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.DynamicData.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.Entity.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.Extensions.Design.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.Extensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.Services.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Windows.Forms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"E:\\MyProject\\FCL\\Basf_FCL\\FCL\\FineUIPro.Web\\bin\\FineUIPro.Web.dll","OutputItemRelativePath":"FineUIPro.Web.dll"},{"OutputItemFullPath":"E:\\MyProject\\FCL\\Basf_FCL\\FCL\\FineUIPro.Web\\bin\\FineUIPro.Web.pdb","OutputItemRelativePath":"FineUIPro.Web.pdb"}],"CopyToOutputEntries":[]} \ No newline at end of file +{"RootPath":"E:\\扬巴\\Basf_FCL\\FCL\\FineUIPro.Web","ProjectFileName":"FineUIPro.Web.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"App_GlobalResources\\Lan.en-US.designer.cs"},{"SourceFile":"App_GlobalResources\\Lan.zh-CN.designer.cs"},{"SourceFile":"App_GlobalResources\\Lan.Designer.cs"},{"SourceFile":"AttachFile\\fileupload.ashx.cs"},{"SourceFile":"AttachFile\\webuploader2.aspx.cs"},{"SourceFile":"AttachFile\\webuploader2.aspx.designer.cs"},{"SourceFile":"AttachFile\\webuploader.aspx.cs"},{"SourceFile":"AttachFile\\webuploader.aspx.designer.cs"},{"SourceFile":"AttachFile\\webuploader3.aspx.cs"},{"SourceFile":"AttachFile\\webuploader3.aspx.designer.cs"},{"SourceFile":"BaseInfo\\ContractorList.aspx.cs"},{"SourceFile":"BaseInfo\\ContractorList.aspx.designer.cs"},{"SourceFile":"BaseInfo\\Currency.aspx.cs"},{"SourceFile":"BaseInfo\\Currency.aspx.designer.cs"},{"SourceFile":"BaseInfo\\Department.aspx.cs"},{"SourceFile":"BaseInfo\\Department.aspx.designer.cs"},{"SourceFile":"BaseInfo\\Discipline.aspx.cs"},{"SourceFile":"BaseInfo\\Discipline.aspx.designer.cs"},{"SourceFile":"BaseInfo\\DisciplineCategory.aspx.cs"},{"SourceFile":"BaseInfo\\DisciplineCategory.aspx.designer.cs"},{"SourceFile":"BaseInfo\\FileType.aspx.cs"},{"SourceFile":"BaseInfo\\FileType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\FOOffset.aspx.cs"},{"SourceFile":"BaseInfo\\FOOffset.aspx.designer.cs"},{"SourceFile":"BaseInfo\\FOType.aspx.cs"},{"SourceFile":"BaseInfo\\FOType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\Item.aspx.cs"},{"SourceFile":"BaseInfo\\Item.aspx.designer.cs"},{"SourceFile":"BaseInfo\\PriceScheme.aspx.cs"},{"SourceFile":"BaseInfo\\PriceScheme.aspx.designer.cs"},{"SourceFile":"BaseInfo\\TaxRate.aspx.cs"},{"SourceFile":"BaseInfo\\TaxRate.aspx.designer.cs"},{"SourceFile":"BaseInfo\\TemplateType.aspx.cs"},{"SourceFile":"BaseInfo\\TemplateType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\Type.aspx.cs"},{"SourceFile":"BaseInfo\\Type.aspx.designer.cs"},{"SourceFile":"BaseInfo\\ViolationClause.aspx.cs"},{"SourceFile":"BaseInfo\\ViolationClause.aspx.designer.cs"},{"SourceFile":"BaseInfo\\ViolationClauseEdit.aspx.cs"},{"SourceFile":"BaseInfo\\ViolationClauseEdit.aspx.designer.cs"},{"SourceFile":"CCP\\CcpEdit.aspx.cs"},{"SourceFile":"CCP\\CcpEdit.aspx.designer.cs"},{"SourceFile":"CCP\\CcpList.aspx.cs"},{"SourceFile":"CCP\\CcpList.aspx.designer.cs"},{"SourceFile":"CCP\\CCPUpload.aspx.cs"},{"SourceFile":"CCP\\CCPUpload.aspx.designer.cs"},{"SourceFile":"CCP\\CcpViewList.aspx.cs"},{"SourceFile":"CCP\\CcpViewList.aspx.designer.cs"},{"SourceFile":"common\\LdapAuthentication.cs"},{"SourceFile":"common\\LDAPUser.cs"},{"SourceFile":"common\\main.ashx.cs"},{"SourceFile":"common\\MainSearch.aspx.cs"},{"SourceFile":"common\\MainSearch.aspx.designer.cs"},{"SourceFile":"common\\PageBase.cs"},{"SourceFile":"CPT\\CPTReportList.aspx.cs"},{"SourceFile":"CPT\\CPTReportList.aspx.designer.cs"},{"SourceFile":"CPT\\SESReportToCPT.aspx.cs"},{"SourceFile":"CPT\\SESReportToCPT.aspx.designer.cs"},{"SourceFile":"CPT\\SESReportToCPTEdit.aspx.cs"},{"SourceFile":"CPT\\SESReportToCPTEdit.aspx.designer.cs"},{"SourceFile":"Encrypt.aspx.cs"},{"SourceFile":"Encrypt.aspx.designer.cs"},{"SourceFile":"common\\loading.aspx.cs"},{"SourceFile":"common\\loading.aspx.designer.cs"},{"SourceFile":"common\\Main.aspx.cs"},{"SourceFile":"common\\Main.aspx.designer.cs"},{"SourceFile":"common\\main_bootstrap_pure.aspx.cs"},{"SourceFile":"common\\main_bootstrap_pure.aspx.designer.cs"},{"SourceFile":"common\\main_bootstrap_pure_login.aspx.cs"},{"SourceFile":"common\\main_bootstrap_pure_login.aspx.designer.cs"},{"SourceFile":"common\\ReportPrint\\CalculateChinaEx.aspx.cs"},{"SourceFile":"common\\ReportPrint\\CalculateChinaEx.aspx.designer.cs"},{"SourceFile":"common\\ReportPrint\\ExPrintSet.aspx.cs"},{"SourceFile":"common\\ReportPrint\\ExPrintSet.aspx.designer.cs"},{"SourceFile":"common\\ReportPrint\\ExReportPrint.aspx.cs"},{"SourceFile":"common\\ReportPrint\\ExReportPrint.aspx.designer.cs"},{"SourceFile":"common\\ReportPrint\\PrintDesigner.aspx.cs"},{"SourceFile":"common\\ReportPrint\\PrintDesigner.aspx.designer.cs"},{"SourceFile":"common\\ReportPrint\\ReadExReportFile.aspx.cs"},{"SourceFile":"common\\ReportPrint\\ReadExReportFile.aspx.designer.cs"},{"SourceFile":"common\\ReportPrint\\SaveTabFile.aspx.cs"},{"SourceFile":"common\\ReportPrint\\SaveTabFile.aspx.designer.cs"},{"SourceFile":"common\\source.aspx.cs"},{"SourceFile":"common\\source.aspx.designer.cs"},{"SourceFile":"common\\source_file.aspx.cs"},{"SourceFile":"common\\source_file.aspx.designer.cs"},{"SourceFile":"common\\themes.aspx.cs"},{"SourceFile":"common\\themes.aspx.designer.cs"},{"SourceFile":"config\\ajax.aspx.cs"},{"SourceFile":"config\\ajax.aspx.designer.cs"},{"SourceFile":"config\\enable_gzip_iis6.aspx.cs"},{"SourceFile":"config\\enable_gzip_iis6.aspx.designer.cs"},{"SourceFile":"config\\icons.aspx.cs"},{"SourceFile":"config\\icons.aspx.designer.cs"},{"SourceFile":"config\\icons_font.aspx.cs"},{"SourceFile":"config\\icons_font.aspx.designer.cs"},{"SourceFile":"config\\install_toolbox.aspx.cs"},{"SourceFile":"config\\install_toolbox.aspx.designer.cs"},{"SourceFile":"config\\loading.aspx.cs"},{"SourceFile":"config\\loading.aspx.designer.cs"},{"SourceFile":"config\\modify_webconfig.aspx.cs"},{"SourceFile":"config\\modify_webconfig.aspx.designer.cs"},{"SourceFile":"Controls\\ChartControl.ascx.cs"},{"SourceFile":"Controls\\ChartControl.ascx.designer.cs"},{"SourceFile":"Controls\\ClientJs\\ClientJs.ascx.cs"},{"SourceFile":"Controls\\ClientJs\\ClientJs.ascx.designer.cs"},{"SourceFile":"Controls\\GridNavgator.ascx.cs"},{"SourceFile":"Controls\\GridNavgator.ascx.designer.cs"},{"SourceFile":"Controls\\JDGL\\ChartControl.ascx.cs"},{"SourceFile":"Controls\\JDGL\\ChartControl.ascx.designer.cs"},{"SourceFile":"Controls\\ProgressBox.ascx.cs"},{"SourceFile":"Controls\\ProgressBox.ascx.designer.cs"},{"SourceFile":"Evaluation\\ContractorEvaluation.aspx.cs"},{"SourceFile":"Evaluation\\ContractorEvaluation.aspx.designer.cs"},{"SourceFile":"Evaluation\\ContractorEvaluationEdit.aspx.cs"},{"SourceFile":"Evaluation\\ContractorEvaluationEdit.aspx.designer.cs"},{"SourceFile":"Evaluation\\Evaluation.aspx.cs"},{"SourceFile":"Evaluation\\Evaluation.aspx.designer.cs"},{"SourceFile":"Evaluation\\EvaluationNew.aspx.cs"},{"SourceFile":"Evaluation\\EvaluationNew.aspx.designer.cs"},{"SourceFile":"Evaluation\\EvaluationReport.aspx.cs"},{"SourceFile":"Evaluation\\EvaluationReport.aspx.designer.cs"},{"SourceFile":"Evaluation\\EvaluationUpload.aspx.cs"},{"SourceFile":"Evaluation\\EvaluationUpload.aspx.designer.cs"},{"SourceFile":"Evaluation\\ExportDetails.aspx.cs"},{"SourceFile":"Evaluation\\ExportDetails.aspx.designer.cs"},{"SourceFile":"Evaluation\\FilesManagement.aspx.cs"},{"SourceFile":"Evaluation\\FilesManagement.aspx.designer.cs"},{"SourceFile":"Evaluation\\PerformanceReport.aspx.cs"},{"SourceFile":"Evaluation\\PerformanceReport.aspx.designer.cs"},{"SourceFile":"Evaluation\\SafetyEvaluation.aspx.cs"},{"SourceFile":"Evaluation\\SafetyEvaluation.aspx.designer.cs"},{"SourceFile":"Global.asax.cs"},{"SourceFile":"index.aspx.cs"},{"SourceFile":"index.aspx.designer.cs"},{"SourceFile":"KPI\\KPI.aspx.cs"},{"SourceFile":"KPI\\KPI.aspx.designer.cs"},{"SourceFile":"Login.aspx.cs"},{"SourceFile":"Login.aspx.designer.cs"},{"SourceFile":"loginApi.aspx.cs"},{"SourceFile":"loginApi.aspx.designer.cs"},{"SourceFile":"LogOff.aspx.cs"},{"SourceFile":"LogOff.aspx.designer.cs"},{"SourceFile":"MyWebService.asmx.cs"},{"SourceFile":"OperationError.aspx.cs"},{"SourceFile":"OperationError.aspx.designer.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"Scripts\\index.aspx.cs"},{"SourceFile":"Scripts\\index.aspx.designer.cs"},{"SourceFile":"SendEmail\\SelectUserControl.ascx.cs"},{"SourceFile":"SendEmail\\SelectUserControl.ascx.designer.cs"},{"SourceFile":"SendEmail\\SendEmail.aspx.cs"},{"SourceFile":"SendEmail\\SendEmail.aspx.designer.cs"},{"SourceFile":"SendEmail\\SendEmailLog.aspx.cs"},{"SourceFile":"SendEmail\\SendEmailLog.aspx.designer.cs"},{"SourceFile":"SendEmail\\SendEmailPop.aspx.cs"},{"SourceFile":"SendEmail\\SendEmailPop.aspx.designer.cs"},{"SourceFile":"SendEmail\\SendEmailTemplate.aspx.cs"},{"SourceFile":"SendEmail\\SendEmailTemplate.aspx.designer.cs"},{"SourceFile":"SendEmail\\SendEmailTemplateList.aspx.cs"},{"SourceFile":"SendEmail\\SendEmailTemplateList.aspx.designer.cs"},{"SourceFile":"SES\\ContractorQualification.aspx.cs"},{"SourceFile":"SES\\ContractorQualification.aspx.designer.cs"},{"SourceFile":"SES\\ContractorQualificationEdit.aspx.cs"},{"SourceFile":"SES\\ContractorQualificationEdit.aspx.designer.cs"},{"SourceFile":"SES\\ContractorQueCopy.aspx.cs"},{"SourceFile":"SES\\ContractorQueCopy.aspx.designer.cs"},{"SourceFile":"SES\\CQualityPunish.aspx.cs"},{"SourceFile":"SES\\CQualityPunish.aspx.designer.cs"},{"SourceFile":"SES\\CQualityPunishEdit.aspx.cs"},{"SourceFile":"SES\\CQualityPunishEdit.aspx.designer.cs"},{"SourceFile":"SES\\CSafePunishEdit.aspx.cs"},{"SourceFile":"SES\\CSafePunishEdit.aspx.designer.cs"},{"SourceFile":"SES\\CTSalesContractManagement.aspx.cs"},{"SourceFile":"SES\\CTSalesContractManagement.aspx.designer.cs"},{"SourceFile":"SES\\CTSalesContracts.aspx.cs"},{"SourceFile":"SES\\CTSalesContracts.aspx.designer.cs"},{"SourceFile":"SES\\CTSalesContractsEdit.aspx.cs"},{"SourceFile":"SES\\CTSalesContractsEdit.aspx.designer.cs"},{"SourceFile":"SES\\CTSalesSignedContracts.aspx.cs"},{"SourceFile":"SES\\CTSalesSignedContracts.aspx.designer.cs"},{"SourceFile":"SES\\FCList.aspx.cs"},{"SourceFile":"SES\\FCList.aspx.designer.cs"},{"SourceFile":"SES\\FCListEdit.aspx.cs"},{"SourceFile":"SES\\FCListEdit.aspx.designer.cs"},{"SourceFile":"SES\\OneTimeContractManagement.aspx.cs"},{"SourceFile":"SES\\OneTimeContractManagement.aspx.designer.cs"},{"SourceFile":"SES\\OneTimeContracts.aspx.cs"},{"SourceFile":"SES\\OneTimeContracts.aspx.designer.cs"},{"SourceFile":"SES\\OneTimeContractsEdit.aspx.cs"},{"SourceFile":"SES\\OneTimeContractsEdit.aspx.designer.cs"},{"SourceFile":"SES\\OneTimeSignedContracts.aspx.cs"},{"SourceFile":"SES\\OneTimeSignedContracts.aspx.designer.cs"},{"SourceFile":"SES\\CSafePunish.aspx.cs"},{"SourceFile":"SES\\CSafePunish.aspx.designer.cs"},{"SourceFile":"SES\\SESEvaluateList.aspx.cs"},{"SourceFile":"SES\\SESEvaluateList.aspx.designer.cs"},{"SourceFile":"SES\\SESRelatedData.aspx.cs"},{"SourceFile":"SES\\SESRelatedData.aspx.designer.cs"},{"SourceFile":"SES\\SESRelatedDataContractManage.aspx.cs"},{"SourceFile":"SES\\SESRelatedDataContractManage.aspx.designer.cs"},{"SourceFile":"SES\\SESRelatedDataContractManage2.aspx.cs"},{"SourceFile":"SES\\SESRelatedDataContractManage2.aspx.designer.cs"},{"SourceFile":"SES\\SESRelatedDataEdit.aspx.cs"},{"SourceFile":"SES\\SESRelatedDataEdit.aspx.designer.cs"},{"SourceFile":"SES\\SESRelatedDataSearch.aspx.cs"},{"SourceFile":"SES\\SESRelatedDataSearch.aspx.designer.cs"},{"SourceFile":"SES\\SESRelatedDataSigned.aspx.cs"},{"SourceFile":"SES\\SESRelatedDataSigned.aspx.designer.cs"},{"SourceFile":"SES\\SESReport.ashx.cs"},{"SourceFile":"SES\\SESReport.aspx.cs"},{"SourceFile":"SES\\SESReport.aspx.designer.cs"},{"SourceFile":"SES\\SESReportEdit.aspx.cs"},{"SourceFile":"SES\\SESReportEdit.aspx.designer.cs"},{"SourceFile":"SES\\SSR.aspx.cs"},{"SourceFile":"SES\\SSR.aspx.designer.cs"},{"SourceFile":"SES\\SSREdit.aspx.cs"},{"SourceFile":"SES\\SSREdit.aspx.designer.cs"},{"SourceFile":"SES\\StandardTemplate.aspx.cs"},{"SourceFile":"SES\\StandardTemplate.aspx.designer.cs"},{"SourceFile":"SES\\StandardTemplateEdit.aspx.cs"},{"SourceFile":"SES\\StandardTemplateEdit.aspx.designer.cs"},{"SourceFile":"ssocallback.aspx.cs"},{"SourceFile":"ssocallback.aspx.designer.cs"},{"SourceFile":"Styles\\index.aspx.cs"},{"SourceFile":"Styles\\index.aspx.designer.cs"},{"SourceFile":"SysManage\\DataBackup.aspx.cs"},{"SourceFile":"SysManage\\DataBackup.aspx.designer.cs"},{"SourceFile":"SysManage\\LogList.aspx.cs"},{"SourceFile":"SysManage\\LogList.aspx.designer.cs"},{"SourceFile":"SysManage\\RoleList.aspx.cs"},{"SourceFile":"SysManage\\RoleList.aspx.designer.cs"},{"SourceFile":"SysManage\\RoleListEdit.aspx.cs"},{"SourceFile":"SysManage\\RoleListEdit.aspx.designer.cs"},{"SourceFile":"SysManage\\RolePower.aspx.cs"},{"SourceFile":"SysManage\\RolePower.aspx.designer.cs"},{"SourceFile":"SysManage\\SelectUserToEMail.aspx.cs"},{"SourceFile":"SysManage\\SelectUserToEMail.aspx.designer.cs"},{"SourceFile":"SysManage\\SysSet.aspx.cs"},{"SourceFile":"SysManage\\SysSet.aspx.designer.cs"},{"SourceFile":"SysManage\\UpdatePassword.aspx.cs"},{"SourceFile":"SysManage\\UpdatePassword.aspx.designer.cs"},{"SourceFile":"SysManage\\UpdatePasswordEdit.aspx.cs"},{"SourceFile":"SysManage\\UpdatePasswordEdit.aspx.designer.cs"},{"SourceFile":"SysManage\\UserList.aspx.cs"},{"SourceFile":"SysManage\\UserList.aspx.designer.cs"},{"SourceFile":"SysManage\\UserListEdit.aspx.cs"},{"SourceFile":"SysManage\\UserListEdit.aspx.designer.cs"},{"SourceFile":"SysManage\\UserToEMial.aspx.cs"},{"SourceFile":"SysManage\\UserToEMial.aspx.designer.cs"},{"SourceFile":"obj\\Debug\\.NETFramework,Version=v4.6.1.AssemblyAttributes.cs"}],"References":[{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\BLL\\bin\\Debug\\BLL.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":"E:\\扬巴\\Basf_FCL\\FCL\\BLL\\bin\\Debug\\BLL.dll"},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\Portable.BouncyCastle.1.8.9\\lib\\net40\\BouncyCastle.Crypto.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\BouncyCastle.Cryptography.2.3.1\\lib\\net461\\BouncyCastle.Cryptography.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\Enums.NET.4.0.1\\lib\\net45\\Enums.NET.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\VSSDK.DTE.7.0.4\\lib\\net20\\envdte.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\ExtendedNumerics.BigDecimal.2025.1001.2.129\\lib\\net46\\ExtendedNumerics.BigDecimal.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\FineUIPro.Web\\bin\\FineUIPro.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\SharpZipLib.1.4.2\\lib\\netstandard2.0\\ICSharpCode.SharpZipLib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\MathNet.Numerics.Signed.5.0.0\\lib\\net461\\MathNet.Numerics.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\Microsoft.Bcl.AsyncInterfaces.8.0.0\\lib\\netstandard2.0\\Microsoft.Bcl.AsyncInterfaces.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\Microsoft.Bcl.TimeProvider.8.0.1\\lib\\netstandard2.0\\Microsoft.Bcl.TimeProvider.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\Microsoft.CSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\Microsoft.IdentityModel.Abstractions.8.1.2\\lib\\netstandard2.0\\Microsoft.IdentityModel.Abstractions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\Microsoft.IdentityModel.JsonWebTokens.8.1.2\\lib\\netstandard2.0\\Microsoft.IdentityModel.JsonWebTokens.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\Microsoft.IdentityModel.Logging.8.1.2\\lib\\netstandard2.0\\Microsoft.IdentityModel.Logging.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\Microsoft.IdentityModel.Tokens.8.1.2\\lib\\netstandard2.0\\Microsoft.IdentityModel.Tokens.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\Microsoft.IO.RecyclableMemoryStream.3.0.0\\lib\\netstandard2.0\\Microsoft.IO.RecyclableMemoryStream.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\Microsoft.JScript.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\FineUIPro.Web\\FakesAssemblies\\Microsoft.ReportViewer.Common.15.0.0.0.Fakes.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\FineUIPro.Web\\bin\\Microsoft.ReportViewer.Common.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\Microsoft.ReportViewer.Common.10.0.40219.1\\lib\\Microsoft.ReportViewer.DataVisualization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\Microsoft.ReportingServices.ReportViewerControl.WebForms.150.1652.0\\lib\\net40\\Microsoft.ReportViewer.Design.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\Microsoft.ReportViewer.Common.10.0.40219.1\\lib\\Microsoft.ReportViewer.ProcessingObjectModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\Microsoft.ReportingServices.ReportViewerControl.WebForms.150.1652.0\\lib\\net40\\Microsoft.ReportViewer.WebDesign.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\Microsoft.ReportingServices.ReportViewerControl.WebForms.150.1652.0\\lib\\net40\\Microsoft.ReportViewer.WebForms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\Microsoft.ReportViewer.WinForms.10.0.40219.1\\lib\\Microsoft.ReportViewer.WinForms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\Microsoft.SqlServer.Types.14.0.1016.290\\lib\\net40\\Microsoft.SqlServer.Types.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\Microsoft.Win32.Primitives.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\Model\\bin\\Debug\\Model.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":"E:\\扬巴\\Basf_FCL\\FCL\\Model\\bin\\Debug\\Model.dll"},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\netfx.force.conflicts.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\netstandard.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\Newtonsoft.Json.13.0.3\\lib\\net45\\Newtonsoft.Json.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\NPOI.2.7.1\\lib\\netstandard2.0\\NPOI.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\NPOI.2.7.1\\lib\\netstandard2.0\\NPOI.OOXML.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\NPOI.2.7.1\\lib\\netstandard2.0\\NPOI.OpenXml4Net.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\NPOI.2.7.1\\lib\\netstandard2.0\\NPOI.OpenXmlFormats.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\SixLabors.Fonts.1.0.1\\lib\\netstandard2.0\\SixLabors.Fonts.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\VSSDK.DTE.7.0.4\\lib\\net20\\stdole.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.AppContext.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\System.Buffers.4.5.1\\lib\\net461\\System.Buffers.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Collections.Concurrent.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Collections.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Collections.NonGeneric.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Collections.Specialized.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.ComponentModel.DataAnnotations.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.ComponentModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.ComponentModel.EventBasedAsync.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.ComponentModel.Primitives.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.ComponentModel.TypeConverter.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\System.Configuration.ConfigurationManager.6.0.0\\lib\\net461\\System.Configuration.ConfigurationManager.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Configuration.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Console.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Data.Common.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Data.DataSetExtensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Data.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Data.OracleClient.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Diagnostics.Contracts.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Diagnostics.Debug.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Diagnostics.FileVersionInfo.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Diagnostics.Process.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Diagnostics.StackTrace.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Diagnostics.TextWriterTraceListener.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Diagnostics.Tools.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Diagnostics.TraceSource.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Diagnostics.Tracing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.DirectoryServices.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.DirectoryServices.Protocols.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Drawing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Drawing.Primitives.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Dynamic.Runtime.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.EnterpriseServices.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Globalization.Calendars.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Globalization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Globalization.Extensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\System.IdentityModel.Tokens.Jwt.8.1.2\\lib\\netstandard2.0\\System.IdentityModel.Tokens.Jwt.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.Compression.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.IO.Compression.FileSystem.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.Compression.ZipFile.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.FileSystem.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.FileSystem.DriveInfo.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.FileSystem.Primitives.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.FileSystem.Watcher.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.IsolatedStorage.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.MemoryMappedFiles.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.Pipes.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.UnmanagedMemoryStream.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Linq.Expressions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Linq.Parallel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Linq.Queryable.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Management.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\System.Memory.4.5.5\\lib\\net461\\System.Memory.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Net.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.Http.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.NameResolution.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.NetworkInformation.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.Ping.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.Primitives.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.Requests.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.Security.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.Sockets.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.WebHeaderCollection.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.WebSockets.Client.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.WebSockets.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Numerics.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\System.Numerics.Vectors.4.5.0\\lib\\net46\\System.Numerics.Vectors.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.ObjectModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Reflection.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Reflection.Extensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Reflection.Primitives.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Resources.Reader.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Resources.ResourceManager.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Resources.Writer.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\System.Runtime.CompilerServices.Unsafe.6.0.0\\lib\\net461\\System.Runtime.CompilerServices.Unsafe.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.CompilerServices.VisualC.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.Extensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.Handles.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.InteropServices.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.InteropServices.RuntimeInformation.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.Numerics.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Runtime.Serialization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.Serialization.Formatters.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.Serialization.Json.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.Serialization.Primitives.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.Serialization.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\System.Security.AccessControl.6.0.0\\lib\\net461\\System.Security.AccessControl.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Security.Claims.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Security.Cryptography.Algorithms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\System.Security.Cryptography.Cng.4.5.0\\lib\\net461\\System.Security.Cryptography.Cng.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Security.Cryptography.Csp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Security.Cryptography.Encoding.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\System.Security.Cryptography.Pkcs.6.0.3\\lib\\net461\\System.Security.Cryptography.Pkcs.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Security.Cryptography.Primitives.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Security.Cryptography.X509Certificates.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\System.Security.Cryptography.Xml.6.0.1\\lib\\net461\\System.Security.Cryptography.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Security.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\System.Security.Permissions.6.0.0\\lib\\net461\\System.Security.Permissions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Security.Principal.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\System.Security.Principal.Windows.5.0.0\\lib\\net461\\System.Security.Principal.Windows.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Security.SecureString.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.ServiceModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.ServiceProcess.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\System.Text.Encoding.CodePages.8.0.0\\lib\\netstandard2.0\\System.Text.Encoding.CodePages.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Text.Encoding.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Text.Encoding.Extensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\System.Text.Encodings.Web.8.0.0\\lib\\netstandard2.0\\System.Text.Encodings.Web.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\System.Text.Json.8.0.5\\lib\\netstandard2.0\\System.Text.Json.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Text.RegularExpressions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Threading.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Threading.Overlapped.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Threading.Tasks.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\System.Threading.Tasks.Extensions.4.5.4\\lib\\net461\\System.Threading.Tasks.Extensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Threading.Tasks.Parallel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Threading.Thread.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Threading.ThreadPool.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Threading.Timer.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Transactions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\System.ValueTuple.4.5.0\\lib\\net461\\System.ValueTuple.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.ApplicationServices.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.DataVisualization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.DynamicData.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.Entity.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.Extensions.Design.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.Extensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.Services.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Windows.Forms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Xml.ReaderWriter.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Xml.XDocument.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Xml.XmlDocument.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Xml.XmlSerializer.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Xml.XPath.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Xml.XPath.XDocument.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\VSSDK.VSLangProj.7.0.4\\lib\\net20\\VSLangProj.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\VSSDK.VSLangProj.7.0.4\\lib\\net20\\VSLangProj2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\扬巴\\Basf_FCL\\FCL\\packages\\VSSDK.VSLangProj.8.8.0.4\\lib\\net20\\VSLangProj80.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\WindowsBase.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"E:\\扬巴\\Basf_FCL\\FCL\\FineUIPro.Web\\bin\\FineUIPro.Web.dll","OutputItemRelativePath":"FineUIPro.Web.dll"},{"OutputItemFullPath":"","OutputItemRelativePath":""}],"CopyToOutputEntries":[]} \ No newline at end of file diff --git a/FCL/FineUIPro.Web/FineUIPro.Web.csproj b/FCL/FineUIPro.Web/FineUIPro.Web.csproj index 74fb005..c90e9d7 100644 --- a/FCL/FineUIPro.Web/FineUIPro.Web.csproj +++ b/FCL/FineUIPro.Web/FineUIPro.Web.csproj @@ -2651,6 +2651,10 @@ + + + + @@ -3421,6 +3425,34 @@ SESRelatedDataContractManage.aspx + + SESRelatedDataContractManage2.aspx + ASPXCodeBehind + + + SESRelatedDataContractManage2.aspx + + + SESRelatedDataContractManage3.aspx + ASPXCodeBehind + + + SESRelatedDataContractManage3.aspx + + + SESRelatedDataContractManage4.aspx + ASPXCodeBehind + + + SESRelatedDataContractManage4.aspx + + + SESRelatedDataContractManage5.aspx + ASPXCodeBehind + + + SESRelatedDataContractManage5.aspx + SESRelatedDataEdit.aspx ASPXCodeBehind diff --git a/FCL/FineUIPro.Web/FineUIPro.Web.csproj.user b/FCL/FineUIPro.Web/FineUIPro.Web.csproj.user index fcf3204..accb770 100644 --- a/FCL/FineUIPro.Web/FineUIPro.Web.csproj.user +++ b/FCL/FineUIPro.Web/FineUIPro.Web.csproj.user @@ -2,7 +2,7 @@ ShowAllFiles - Debug|Any CPU + Release|Any CPU true diff --git a/FCL/FineUIPro.Web/SES/SESRelatedData.aspx b/FCL/FineUIPro.Web/SES/SESRelatedData.aspx index af1bbda..64686b5 100644 --- a/FCL/FineUIPro.Web/SES/SESRelatedData.aspx +++ b/FCL/FineUIPro.Web/SES/SESRelatedData.aspx @@ -374,7 +374,7 @@ + FieldType="String" HeaderText="Current Allocation" HeaderTextAlign="Center" EnableFilter="true"> @@ -659,21 +659,18 @@ - + + EnableTabCloseMenu="false" ActiveTabIndex="0" runat="server" AutoPostBack="true" OnTabIndexChanged="TabStrip2_TabIndexChanged"> - - <%-- - --%> @@ -686,19 +683,20 @@ - + - + - <%-- - --%> - + - + + + + + + + - <%-- - --%> - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + <%-- + --%> + + + + + + + + + + + + + + + <%-- + --%> + + + + + + + + + + + @@ -737,7 +923,7 @@