diff --git a/Controllers/KPI.Controller.cs b/Controllers/KPI.Controller.cs new file mode 100644 index 0000000..22abc96 --- /dev/null +++ b/Controllers/KPI.Controller.cs @@ -0,0 +1,208 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations; +using System.Data; +using System.Globalization; +using System.IO; +using System.Linq; +using System.Threading.Tasks; +using ClosedXML.Excel; +using DocumentFormat.OpenXml.Office2010.ExcelAc; +using DocumentFormat.OpenXml.Spreadsheet; +using ExcelDataReader; +using FastReport; +using FastReport.Export.Csv; +using FastReport.Export.Mht; +using FastReport.Export.OoXML; +using FastReport.Export.Pdf; +using Microsoft.AspNetCore.Mvc; +using Microsoft.VisualBasic; +using rmutr_report.Models; +using rmutr_report.Models.Hr; +using Swashbuckle.AspNetCore.Annotations; + +namespace rmutr_report.Controllers +{ + [SwaggerTag("สำหรับรายงานตัวชี้วัดและเป้าหมาย")] + public class KPI : Controller + { + readonly Setting _setting; + + public KPI(Setting setting) + { + _setting = setting; + } + + [HttpPost, Route("reports/kpi/{type}")] + [ApiExplorerSettings(GroupName = "reports")] + public IActionResult GetKpiReport([FromRoute] string type, [FromBody] List _kpi) + { + DataTable table = new DataTable(); + var workbook1 = new XLWorkbook(); + var ws = workbook1.Worksheets.Add("kpi"); + table.TableName = "kpi"; + ws.Cell("A1").Value = "ประเด็นยุทธศาสตร์/เป้าหมายหลัก/ตัวชี้วัด"; + ws.Cell("A1").Style.Alignment.WrapText = true; + ws.Range("A1:A2").Column(1).Merge(); + ws.Range("B1:C2").Merge().Value = "ตัวชี้วัด"; + ws.Range("D2").Value = "หน่วย"; + ws.Range("E2").Value = "ค่าเป้าหมาย"; + ws.Range("F1:F2").Merge().Value = "ผู้รับผิดชอบกำกับดูแล"; + ws.Range("G1:G2").Merge().Value = "ผู้รับผิดชอบในการปฎิบัติงาน"; + ws.Range("H1:H2").Merge().Value = "ผู้รวบรวมและรายงานผลตัวชี้วัด"; + ws.Range("A1:A2").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center; + ws.Range("B1:C2").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center; + ws.Range("B1:C2").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center; + ws.Range("D1:E1").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center; + ws.Range("D2").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center; + ws.Range("E2").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center; + ws.Range("F1:F2").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center; + ws.Cell("F1").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center; + ws.Range("G1:G2").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center; + ws.Cell("G1").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center; + ws.Range("H1:H2").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center; + ws.Cell("H1").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center; + //ws.Cell("B1:C2").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center; + ws.Range("A1:A2").Style.Fill.BackgroundColor = XLColor.SkyBlue; + ws.Range("B1:C2").Style.Fill.BackgroundColor = XLColor.SkyBlue; + ws.Range("D1:E1").Style.Fill.BackgroundColor = XLColor.SkyBlue; + ws.Range("D2").Style.Fill.BackgroundColor = XLColor.SkyBlue; + ws.Range("E2").Style.Fill.BackgroundColor = XLColor.SkyBlue; + ws.Range("F1:F2").Style.Fill.BackgroundColor = XLColor.SkyBlue; + ws.Range("G1:G2").Style.Fill.BackgroundColor = XLColor.SkyBlue; + ws.Range("H1:H2").Style.Fill.BackgroundColor = XLColor.SkyBlue; + ws.Range("A1:A2").Style.Border.OutsideBorder = XLBorderStyleValues.Thin; + ws.Range("B1:C2").Style.Border.BottomBorder = XLBorderStyleValues.Thin; + ws.Range("D1:E1").Style.Border.OutsideBorder = XLBorderStyleValues.Thin; + ws.Range("D2").Style.Border.OutsideBorder = XLBorderStyleValues.Thin; + ws.Range("E2").Style.Border.OutsideBorder = XLBorderStyleValues.Thin; + ws.Range("F1:F2").Style.Border.OutsideBorder = XLBorderStyleValues.Thin; + ws.Range("G1:G2").Style.Border.OutsideBorder = XLBorderStyleValues.Thin; + ws.Range("H1:H2").Style.Border.OutsideBorder = XLBorderStyleValues.Thin; + ws.Column(1).Width = 20; + ws.Column(2).Width = 5; + ws.Column(3).Width = 30; + ws.Column(4).Width = 10; + ws.Column(5).Width = 20; + ws.Column(6).Width = 40; + ws.Column(7).Width = 40; + ws.Column(8).Width = 40; + ws.Column(2).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center; + ws.Column(3).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center; + ws.Column(4).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center; + ws.Column(5).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center; + ws.Column(6).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center; + ws.Column(7).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center; + ws.Column(8).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center; + ws.Column(1).Style.Font.FontName = "TH Sarabun New"; + ws.Column(1).Style.Font.FontSize = 16; + ws.Column(2).Style.Font.FontName = "TH Sarabun New"; + ws.Column(2).Style.Font.FontSize = 16; + ws.Column(3).Style.Font.FontName = "TH Sarabun New"; + ws.Column(3).Style.Font.FontSize = 16; + ws.Column(4).Style.Font.FontName = "TH Sarabun New"; + ws.Column(4).Style.Font.FontSize = 16; + ws.Column(5).Style.Font.FontName = "TH Sarabun New"; + ws.Column(5).Style.Font.FontSize = 16; + ws.Column(6).Style.Font.FontName = "TH Sarabun New"; + ws.Column(6).Style.Font.FontSize = 16; + ws.Column(7).Style.Font.FontName = "TH Sarabun New"; + ws.Column(7).Style.Font.FontSize = 16; + ws.Column(8).Style.Font.FontName = "TH Sarabun New"; + ws.Column(8).Style.Font.FontSize = 16; + int col = 1; + int row = 3; + foreach (var kpis in _kpi) + { + if (_kpi != null) + { + ws.Range("D1:E1").Merge().Value = "ค่าเป้าหมาย ปี " + kpis.academic_year.Substring(2, 2); + // var mergedRange = ws.MergedRanges.First(r => r.Contains("A")); + // mergedRange.Style.Fill.BackgroundColor = XLColor.Bisque; + foreach (var header in kpis.header_data) + { + ws.Cell(row, 1).Value = header.header_1; + ws.Cell(row, 1).Style.Fill.BackgroundColor = XLColor.Bisque; + ws.Range(ws.Cell(row, 1),ws.Cell(row, 8)).Merge().Style.Border.OutsideBorder = XLBorderStyleValues.Thin; + row++; + ws.Cell(row, 1).Value = header.header_2; + ws.Cell(row, 1).Style.Fill.BackgroundColor = XLColor.LavenderBlush; + ws.Range(ws.Cell(row, 1),ws.Cell(row, 8)).Merge().Style.Border.OutsideBorder = XLBorderStyleValues.Thin; + row++; + ws.Cell(row, 1).Value = header.header_3; + ws.Cell(row, 1).Style.Fill.BackgroundColor = XLColor.Beige; + ws.Range(ws.Cell(row, 1),ws.Cell(row, 8)).Merge().Style.Border.OutsideBorder = XLBorderStyleValues.Thin; + row++; + + } + var data = kpis.header_data.Select(d => d.data).ToList(); + foreach (var detail in data) + { + foreach (var data1 in detail) + { + ws.Cell(row, 2).Value = data1.row; + ws.Cell(row, 3).Value = data1.name; + ws.Cell(row, 4).Value = data1.unit; + ws.Cell(row, 5).Value = data1.value; + ws.Cell(row, 6).Value = data1.responsible_person; + ws.Cell(row, 7).Value = data1.responsible_work; + ws.Cell(row, 8).Value = data1.collector; + ws.Cell(row, 1).Style.Border.OutsideBorder = XLBorderStyleValues.Thin; + ws.Cell(row, 1).Style.Border.LeftBorder = XLBorderStyleValues.Thin; + ws.Cell(row, 1).Style.Border.RightBorder = XLBorderStyleValues.Thin; + ws.Cell(row,2).Style.Border.OutsideBorder = XLBorderStyleValues.Thin; + ws.Cell(row,2).Style.Border.LeftBorder = XLBorderStyleValues.Thin; + ws.Cell(row,2).Style.Border.RightBorder = XLBorderStyleValues.Thin; + ws.Cell(row, 3).Style.Border.OutsideBorder = XLBorderStyleValues.Thin; + ws.Cell(row, 3).Style.Border.LeftBorder = XLBorderStyleValues.Thin; + ws.Cell(row, 3).Style.Border.RightBorder = XLBorderStyleValues.Thin; + ws.Cell(row, 4).Style.Border.OutsideBorder = XLBorderStyleValues.Thin; + ws.Cell(row, 4).Style.Border.LeftBorder = XLBorderStyleValues.Thin; + ws.Cell(row, 4).Style.Border.RightBorder = XLBorderStyleValues.Thin; + ws.Cell(row, 5).Style.Border.OutsideBorder = XLBorderStyleValues.Thin; + ws.Cell(row, 5).Style.Border.LeftBorder = XLBorderStyleValues.Thin; + ws.Cell(row, 5).Style.Border.RightBorder = XLBorderStyleValues.Thin; + ws.Cell(row, 6).Style.Border.OutsideBorder = XLBorderStyleValues.Thin; + ws.Cell(row, 6).Style.Border.LeftBorder = XLBorderStyleValues.Thin; + ws.Cell(row, 6).Style.Border.RightBorder = XLBorderStyleValues.Thin; + ws.Cell(row, 7).Style.Border.OutsideBorder = XLBorderStyleValues.Thin; + ws.Cell(row, 7).Style.Border.LeftBorder = XLBorderStyleValues.Thin; + ws.Cell(row, 7).Style.Border.RightBorder = XLBorderStyleValues.Thin; + ws.Cell(row, 8).Style.Border.OutsideBorder = XLBorderStyleValues.Thin; + ws.Cell(row, 8).Style.Border.LeftBorder = XLBorderStyleValues.Thin; + ws.Cell(row, 8).Style.Border.RightBorder = XLBorderStyleValues.Thin; + row++; + // ws.Cell(row, 4).Style.Border.OutsideBorder = XLBorderStyleValues.Thin; + // ws.Cell(row, 5).Style.Border.OutsideBorder = XLBorderStyleValues.Thin; + // ws.Cell(row, 6).Style.Border.OutsideBorder = XLBorderStyleValues.Thin; + // ws.Cell(row, 7).Style.Border.OutsideBorder = XLBorderStyleValues.Thin; + // ws.Cell(row, 8).Style.Border.OutsideBorder = XLBorderStyleValues.Thin; + } + //row++; + + } + + } + + } + using (var stream = new MemoryStream()) + { + workbook1.SaveAs(stream); + var content = stream.ToArray(); + string date = DateTime.Now.ToString("yyyyMMddHHmmss"); + return File( + content, + "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", + "kpi_" + date + ".xlsx"); + } + + } + + } +} + + + + + + diff --git a/Models/kpi.cs b/Models/kpi.cs new file mode 100644 index 0000000..6072ebc --- /dev/null +++ b/Models/kpi.cs @@ -0,0 +1,34 @@ +using System.Collections.Generic; + +namespace rmutr_report.Models +{ + public class kpi + { + public string academic_year { get; set; } + + public List header_data { get; set; } + + } + + public class kpi_data_detail + { + public string header_1 { get; set; } + public string header_2 { get; set; } + public string header_3 { get; set; } + public List data { get; set; } + } + + public class kpi_data_details + { + + public int? row { get; set; } + public string name { get; set; } + public string unit { get; set; } + public int? value { get; set; } + public string responsible_person { get; set; } + public string responsible_work { get; set; } + public string collector { get; set; } + + } + +} \ No newline at end of file diff --git a/bin/Debug/net5.0/rmutr-report.deps.json b/bin/Debug/net5.0/rmutr-report.deps.json index 988c87a..a92cfbf 100644 --- a/bin/Debug/net5.0/rmutr-report.deps.json +++ b/bin/Debug/net5.0/rmutr-report.deps.json @@ -33,7 +33,10 @@ ".NETCoreApp,Version=v5.0": { "rmutr-report/1.0.0": { "dependencies": { + "ClosedXML": "0.96.0", + "ExcelDataReader": "3.7.0-develop00310", "FastReport.Core": "2021.3.0", + "SeventyOneDev.Utilities": "1.10.12", "Swashbuckle.AspNetCore": "5.6.3", "Swashbuckle.AspNetCore.Annotations": "6.0.7", "Microsoft.AspNetCore.Antiforgery": "5.0.0.0", @@ -113,10 +116,10 @@ "Microsoft.AspNetCore.StaticFiles": "5.0.0.0", "Microsoft.AspNetCore.WebSockets": "5.0.0.0", "Microsoft.AspNetCore.WebUtilities": "5.0.0.0", - "Microsoft.CSharp": "5.0.0.0", - "Microsoft.Extensions.Caching.Abstractions": "5.0.0.0", - "Microsoft.Extensions.Caching.Memory": "5.0.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0.0", + "Microsoft.CSharp.Reference": "5.0.0.0", + "Microsoft.Extensions.Caching.Abstractions.Reference": "5.0.0.0", + "Microsoft.Extensions.Caching.Memory.Reference": "5.0.0.0", + "Microsoft.Extensions.Configuration.Abstractions.Reference": "5.0.0.0", "Microsoft.Extensions.Configuration.Binder": "5.0.0.0", "Microsoft.Extensions.Configuration.CommandLine": "5.0.0.0", "Microsoft.Extensions.Configuration": "5.0.0.0", @@ -127,8 +130,7 @@ "Microsoft.Extensions.Configuration.KeyPerFile": "5.0.0.0", "Microsoft.Extensions.Configuration.UserSecrets": "5.0.0.0", "Microsoft.Extensions.Configuration.Xml": "5.0.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0.0", - "Microsoft.Extensions.DependencyInjection": "5.0.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions.Reference": "5.0.0.0", "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "5.0.0.0", "Microsoft.Extensions.Diagnostics.HealthChecks": "5.0.0.0", "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0.0", @@ -143,19 +145,19 @@ "Microsoft.Extensions.Identity.Stores": "5.0.0.0", "Microsoft.Extensions.Localization.Abstractions": "5.0.0.0", "Microsoft.Extensions.Localization": "5.0.0.0", - "Microsoft.Extensions.Logging.Abstractions": "5.0.0.0", + "Microsoft.Extensions.Logging.Abstractions.Reference": "5.0.0.0", "Microsoft.Extensions.Logging.Configuration": "5.0.0.0", "Microsoft.Extensions.Logging.Console": "5.0.0.0", "Microsoft.Extensions.Logging.Debug": "5.0.0.0", - "Microsoft.Extensions.Logging": "5.0.0.0", + "Microsoft.Extensions.Logging.Reference": "5.0.0.0", "Microsoft.Extensions.Logging.EventLog": "5.0.0.0", "Microsoft.Extensions.Logging.EventSource": "5.0.0.0", "Microsoft.Extensions.Logging.TraceSource": "5.0.0.0", "Microsoft.Extensions.ObjectPool": "5.0.0.0", "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0.0", "Microsoft.Extensions.Options.DataAnnotations": "5.0.0.0", - "Microsoft.Extensions.Options": "5.0.0.0", - "Microsoft.Extensions.Primitives": "5.0.0.0", + "Microsoft.Extensions.Options.Reference": "5.0.0.0", + "Microsoft.Extensions.Primitives.Reference": "5.0.0.0", "Microsoft.Extensions.WebEncoders": "5.0.0.0", "Microsoft.JSInterop": "5.0.0.0", "Microsoft.Net.Http.Headers": "5.0.0.0", @@ -172,7 +174,7 @@ "System.Collections.Immutable.Reference": "5.0.0.0", "System.Collections.NonGeneric": "5.0.0.0", "System.Collections.Specialized": "5.0.0.0", - "System.ComponentModel.Annotations": "5.0.0.0", + "System.ComponentModel.Annotations.Reference": "5.0.0.0", "System.ComponentModel.DataAnnotations": "4.0.0.0", "System.ComponentModel": "5.0.0.0", "System.ComponentModel.EventBasedAsync": "5.0.0.0", @@ -186,7 +188,6 @@ "System.Data": "4.0.0.0", "System.Diagnostics.Contracts": "5.0.0.0", "System.Diagnostics.Debug": "5.0.0.0", - "System.Diagnostics.DiagnosticSource": "5.0.0.0", "System.Diagnostics.EventLog": "5.0.0.0", "System.Diagnostics.FileVersionInfo": "5.0.0.0", "System.Diagnostics.Process": "5.0.0.0", @@ -327,6 +328,59 @@ "rmutr-report.dll": {} } }, + "ClosedXML/0.96.0": { + "dependencies": { + "DocumentFormat.OpenXml": "2.16.0", + "ExcelNumberFormat": "1.1.0", + "Microsoft.CSharp": "4.7.0", + "System.Drawing.Common": "4.6.1" + }, + "runtime": { + "lib/netstandard2.0/ClosedXML.dll": { + "assemblyVersion": "0.96.0.0", + "fileVersion": "0.96.0.0" + } + }, + "compile": { + "lib/netstandard2.0/ClosedXML.dll": {} + } + }, + "DocumentFormat.OpenXml/2.16.0": { + "dependencies": { + "System.IO.Packaging": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/DocumentFormat.OpenXml.dll": { + "assemblyVersion": "2.16.0.0", + "fileVersion": "2.16.0.0" + } + }, + "compile": { + "lib/netstandard2.0/DocumentFormat.OpenXml.dll": {} + } + }, + "ExcelDataReader/3.7.0-develop00310": { + "runtime": { + "lib/netstandard2.0/ExcelDataReader.dll": { + "assemblyVersion": "3.7.0.0", + "fileVersion": "3.7.0.0" + } + }, + "compile": { + "lib/netstandard2.0/ExcelDataReader.dll": {} + } + }, + "ExcelNumberFormat/1.1.0": { + "runtime": { + "lib/netstandard2.0/ExcelNumberFormat.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.0" + } + }, + "compile": { + "lib/netstandard2.0/ExcelNumberFormat.dll": {} + } + }, "FastReport.Compat/2021.2.0": { "dependencies": { "Microsoft.CodeAnalysis.CSharp": "3.3.1", @@ -377,11 +431,22 @@ } } }, + "Humanizer.Core/2.8.26": { + "runtime": { + "lib/netstandard2.0/Humanizer.dll": { + "assemblyVersion": "2.8.0.0", + "fileVersion": "2.8.26.1919" + } + }, + "compile": { + "lib/netstandard2.0/Humanizer.dll": {} + } + }, "Microsoft.CodeAnalysis.Analyzers/2.9.4": {}, "Microsoft.CodeAnalysis.Common/3.3.1": { "dependencies": { "Microsoft.CodeAnalysis.Analyzers": "2.9.4", - "System.Collections.Immutable": "1.5.0", + "System.Collections.Immutable": "5.0.0", "System.Memory": "4.5.3", "System.Reflection.Metadata": "1.6.0", "System.Runtime.CompilerServices.Unsafe": "4.5.2", @@ -549,7 +614,122 @@ "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.dll": {} } }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.EntityFrameworkCore/5.0.5": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "5.0.5", + "Microsoft.EntityFrameworkCore.Analyzers": "5.0.5", + "Microsoft.Extensions.Caching.Memory": "5.0.0", + "Microsoft.Extensions.DependencyInjection": "5.0.1", + "Microsoft.Extensions.Logging": "5.0.0", + "System.Collections.Immutable": "5.0.0", + "System.ComponentModel.Annotations": "5.0.0", + "System.Diagnostics.DiagnosticSource": "5.0.1" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "5.0.5.0", + "fileVersion": "5.0.521.16102" + } + }, + "compile": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/5.0.5": { + "runtime": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "5.0.5.0", + "fileVersion": "5.0.521.16102" + } + }, + "compile": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/5.0.5": {}, + "Microsoft.EntityFrameworkCore.Design/5.0.5": { + "dependencies": { + "Humanizer.Core": "2.8.26", + "Microsoft.CSharp": "4.7.0", + "Microsoft.EntityFrameworkCore.Relational": "5.0.5" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Design.dll": { + "assemblyVersion": "5.0.5.0", + "fileVersion": "5.0.521.16102" + } + }, + "compile": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Design.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Relational/5.0.5": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "5.0.5", + "Microsoft.Extensions.Configuration.Abstractions": "5.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "5.0.5.0", + "fileVersion": "5.0.521.16102" + } + }, + "compile": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {} + } + }, "Microsoft.Extensions.ApiDescription.Server/3.0.0": {}, + "Microsoft.Extensions.Caching.Abstractions/5.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "5.0.0" + } + }, + "Microsoft.Extensions.Caching.Memory/5.0.0": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "5.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Logging.Abstractions": "5.0.0", + "Microsoft.Extensions.Options": "5.0.0", + "Microsoft.Extensions.Primitives": "5.0.0" + } + }, + "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "5.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection/5.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0" + }, + "runtime": { + "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "5.0.0.1", + "fileVersion": "5.0.120.57516" + } + }, + "compile": { + "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {}, + "Microsoft.Extensions.Logging/5.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "5.0.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Logging.Abstractions": "5.0.0", + "Microsoft.Extensions.Options": "5.0.0" + } + }, + "Microsoft.Extensions.Logging.Abstractions/5.0.0": {}, + "Microsoft.Extensions.Options/5.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Primitives": "5.0.0" + } + }, + "Microsoft.Extensions.Primitives/5.0.0": {}, "Microsoft.NETCore.Platforms/3.0.0": {}, "Microsoft.OpenApi/1.2.3": { "runtime": { @@ -608,6 +788,21 @@ } } }, + "SeventyOneDev.Utilities/1.10.12": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "5.0.5", + "Microsoft.EntityFrameworkCore.Design": "5.0.5" + }, + "runtime": { + "lib/net5.0/SeventyOneDev.dll": { + "assemblyVersion": "1.10.12.0", + "fileVersion": "1.10.12.0" + } + }, + "compile": { + "lib/net5.0/SeventyOneDev.dll": {} + } + }, "Swashbuckle.AspNetCore/5.6.3": { "dependencies": { "Microsoft.Extensions.ApiDescription.Server": "3.0.0", @@ -669,7 +864,8 @@ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {} } }, - "System.Collections.Immutable/1.5.0": {}, + "System.Collections.Immutable/5.0.0": {}, + "System.ComponentModel.Annotations/5.0.0": {}, "System.Data.SqlClient/4.4.3": { "dependencies": { "Microsoft.Win32.Registry": "4.4.0", @@ -701,6 +897,17 @@ "ref/netstandard2.0/System.Data.SqlClient.dll": {} } }, + "System.Diagnostics.DiagnosticSource/5.0.1": { + "runtime": { + "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.220.61120" + } + }, + "compile": { + "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {} + } + }, "System.Drawing.Common/4.6.1": { "dependencies": { "Microsoft.NETCore.Platforms": "3.0.0", @@ -710,6 +917,17 @@ "ref/netcoreapp3.0/System.Drawing.Common.dll": {} } }, + "System.IO.Packaging/4.7.0": { + "runtime": { + "lib/netstandard2.0/System.IO.Packaging.dll": { + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + }, + "compile": { + "ref/netstandard2.0/System.IO.Packaging.dll": {} + } + }, "System.Memory/4.5.3": {}, "System.Reflection.Metadata/1.6.0": {}, "System.Runtime.CompilerServices.Unsafe/4.5.2": {}, @@ -1212,25 +1430,25 @@ }, "compileOnly": true }, - "Microsoft.CSharp/5.0.0.0": { + "Microsoft.CSharp.Reference/5.0.0.0": { "compile": { "Microsoft.CSharp.dll": {} }, "compileOnly": true }, - "Microsoft.Extensions.Caching.Abstractions/5.0.0.0": { + "Microsoft.Extensions.Caching.Abstractions.Reference/5.0.0.0": { "compile": { "Microsoft.Extensions.Caching.Abstractions.dll": {} }, "compileOnly": true }, - "Microsoft.Extensions.Caching.Memory/5.0.0.0": { + "Microsoft.Extensions.Caching.Memory.Reference/5.0.0.0": { "compile": { "Microsoft.Extensions.Caching.Memory.dll": {} }, "compileOnly": true }, - "Microsoft.Extensions.Configuration.Abstractions/5.0.0.0": { + "Microsoft.Extensions.Configuration.Abstractions.Reference/5.0.0.0": { "compile": { "Microsoft.Extensions.Configuration.Abstractions.dll": {} }, @@ -1296,18 +1514,12 @@ }, "compileOnly": true }, - "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0.0": { + "Microsoft.Extensions.DependencyInjection.Abstractions.Reference/5.0.0.0": { "compile": { "Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} }, "compileOnly": true }, - "Microsoft.Extensions.DependencyInjection/5.0.0.0": { - "compile": { - "Microsoft.Extensions.DependencyInjection.dll": {} - }, - "compileOnly": true - }, "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/5.0.0.0": { "compile": { "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": {} @@ -1392,7 +1604,7 @@ }, "compileOnly": true }, - "Microsoft.Extensions.Logging.Abstractions/5.0.0.0": { + "Microsoft.Extensions.Logging.Abstractions.Reference/5.0.0.0": { "compile": { "Microsoft.Extensions.Logging.Abstractions.dll": {} }, @@ -1416,7 +1628,7 @@ }, "compileOnly": true }, - "Microsoft.Extensions.Logging/5.0.0.0": { + "Microsoft.Extensions.Logging.Reference/5.0.0.0": { "compile": { "Microsoft.Extensions.Logging.dll": {} }, @@ -1458,13 +1670,13 @@ }, "compileOnly": true }, - "Microsoft.Extensions.Options/5.0.0.0": { + "Microsoft.Extensions.Options.Reference/5.0.0.0": { "compile": { "Microsoft.Extensions.Options.dll": {} }, "compileOnly": true }, - "Microsoft.Extensions.Primitives/5.0.0.0": { + "Microsoft.Extensions.Primitives.Reference/5.0.0.0": { "compile": { "Microsoft.Extensions.Primitives.dll": {} }, @@ -1566,7 +1778,7 @@ }, "compileOnly": true }, - "System.ComponentModel.Annotations/5.0.0.0": { + "System.ComponentModel.Annotations.Reference/5.0.0.0": { "compile": { "System.ComponentModel.Annotations.dll": {} }, @@ -1650,12 +1862,6 @@ }, "compileOnly": true }, - "System.Diagnostics.DiagnosticSource/5.0.0.0": { - "compile": { - "System.Diagnostics.DiagnosticSource.dll": {} - }, - "compileOnly": true - }, "System.Diagnostics.EventLog/5.0.0.0": { "compile": { "System.Diagnostics.EventLog.dll": {} @@ -2456,6 +2662,34 @@ "serviceable": false, "sha512": "" }, + "ClosedXML/0.96.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3VLfl4wCMHDuaV0GwA9MHY6BvKlTH4zaNG/ah6QODCZYMqLS6m0JVZph5kGpbuCCCyKXdO2hiUd/e35Wzd/Zmw==", + "path": "closedxml/0.96.0", + "hashPath": "closedxml.0.96.0.nupkg.sha512" + }, + "DocumentFormat.OpenXml/2.16.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RhpnDgyyx1KjZm98T3w3bSXFHG/7ZNUaVmz4NAUA+jmV3PcVNZeW87Y04CpBNLdDHEMSspirfo0B5kLRaoE97w==", + "path": "documentformat.openxml/2.16.0", + "hashPath": "documentformat.openxml.2.16.0.nupkg.sha512" + }, + "ExcelDataReader/3.7.0-develop00310": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ox77cjWP8h1z0cH1VR/hsvGYHng/9o6uxaE/Ui14xphEUU1Ovluipcn7gJE5ZmXSBCzT2x6c2OTBwyMBk+ysDw==", + "path": "exceldatareader/3.7.0-develop00310", + "hashPath": "exceldatareader.3.7.0-develop00310.nupkg.sha512" + }, + "ExcelNumberFormat/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-R3BVHPs9O+RkExbZYTGT0+9HLbi8ZrNij1Yziyw6znd3J7P3uoIR07uwTLGOogtz1p6+0sna66eBoXu7tBiVQA==", + "path": "excelnumberformat/1.1.0", + "hashPath": "excelnumberformat.1.1.0.nupkg.sha512" + }, "FastReport.Compat/2021.2.0": { "type": "package", "serviceable": true, @@ -2477,6 +2711,13 @@ "path": "fastreport.datavisualization/2021.2.0", "hashPath": "fastreport.datavisualization.2021.2.0.nupkg.sha512" }, + "Humanizer.Core/2.8.26": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OiKusGL20vby4uDEswj2IgkdchC1yQ6rwbIkZDVBPIR6al2b7n3pC91elBul9q33KaBgRKhbZH3+2Ur4fnWx2A==", + "path": "humanizer.core/2.8.26", + "hashPath": "humanizer.core.2.8.26.nupkg.sha512" + }, "Microsoft.CodeAnalysis.Analyzers/2.9.4": { "type": "package", "serviceable": true, @@ -2505,6 +2746,48 @@ "path": "microsoft.codeanalysis.visualbasic/3.3.1", "hashPath": "microsoft.codeanalysis.visualbasic.3.3.1.nupkg.sha512" }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lBIGKXhduT94Qats0ImMma9NWnsSLhz04JdD+Mi7DeCDPd3hiA668jREzCiLb9FqcmAIrLx8pxIo9cwjEHfYtQ==", + "path": "microsoft.entityframeworkcore/5.0.5", + "hashPath": "microsoft.entityframeworkcore.5.0.5.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jS7+hySzNS9wCmREbWTVaa5EA+aLT7wb1Si1jhMgAiGrbLQSj6wPnS8WbhO5a7iAq45pDEK0KghtrPDFjfTxVw==", + "path": "microsoft.entityframeworkcore.abstractions/5.0.5", + "hashPath": "microsoft.entityframeworkcore.abstractions.5.0.5.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-czVyD5h0etXlrFHln0GPwlhmNm4yFe8vA/xfW/oN26OT8AAWkA6YPjr+z68/kmPqMWFo8UHxvDBZ9g2TiJY9qQ==", + "path": "microsoft.entityframeworkcore.analyzers/5.0.5", + "hashPath": "microsoft.entityframeworkcore.analyzers.5.0.5.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Design/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bEjgWGrEWtCQl1A3wx1xW+tALhuWHG+0hXFr9G+GrwkVLaZiW0tILqRx1DJ0y4t12dUf8tMsv0LMokKIf8IOFw==", + "path": "microsoft.entityframeworkcore.design/5.0.5", + "hashPath": "microsoft.entityframeworkcore.design.5.0.5.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-D+9me6olfUKpti0WkMFsKk9T4uTPZ+3mg/NIwq1Fhp/qQAu9yg2FZTUa0O8ugGuiGyJHfi8tMvh+iCL0LTpG4g==", + "path": "microsoft.entityframeworkcore.relational/5.0.5", + "hashPath": "microsoft.entityframeworkcore.relational.5.0.5.nupkg.sha512" + }, "Microsoft.Extensions.ApiDescription.Server/3.0.0": { "type": "package", "serviceable": true, @@ -2512,6 +2795,69 @@ "path": "microsoft.extensions.apidescription.server/3.0.0", "hashPath": "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512" }, + "Microsoft.Extensions.Caching.Abstractions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==", + "path": "microsoft.extensions.caching.abstractions/5.0.0", + "hashPath": "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==", + "path": "microsoft.extensions.caching.memory/5.0.0", + "hashPath": "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==", + "path": "microsoft.extensions.configuration.abstractions/5.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/5.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-//mDNrYeiJ0eh/awFhDFJQzkRVra/njU5Y4fyK7X29g5HScrzbUkKOKlyTtygthcGFt4zNC8G5CFCjb/oizomA==", + "path": "microsoft.extensions.dependencyinjection/5.0.1", + "hashPath": "microsoft.extensions.dependencyinjection.5.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==", + "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==", + "path": "microsoft.extensions.logging/5.0.0", + "hashPath": "microsoft.extensions.logging.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==", + "path": "microsoft.extensions.logging.abstractions/5.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==", + "path": "microsoft.extensions.options/5.0.0", + "hashPath": "microsoft.extensions.options.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==", + "path": "microsoft.extensions.primitives/5.0.0", + "hashPath": "microsoft.extensions.primitives.5.0.0.nupkg.sha512" + }, "Microsoft.NETCore.Platforms/3.0.0": { "type": "package", "serviceable": true, @@ -2568,6 +2914,13 @@ "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" }, + "SeventyOneDev.Utilities/1.10.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qZrTHa5hkMzfRig2tVlDslUCurW8w4xKaL9p8QitvWohE+VKjo3LJOT3qkTsUJ2iE42B9ZXrRQlTxJc9KhUw9g==", + "path": "seventyonedev.utilities/1.10.12", + "hashPath": "seventyonedev.utilities.1.10.12.nupkg.sha512" + }, "Swashbuckle.AspNetCore/5.6.3": { "type": "package", "serviceable": true, @@ -2603,12 +2956,19 @@ "path": "swashbuckle.aspnetcore.swaggerui/5.6.3", "hashPath": "swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512" }, - "System.Collections.Immutable/1.5.0": { + "System.Collections.Immutable/5.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-EXKiDFsChZW0RjrZ4FYHu9aW6+P4MCgEDCklsVseRfhoO0F+dXeMSsMRAlVXIo06kGJ/zv+2w1a2uc2+kxxSaQ==", - "path": "system.collections.immutable/1.5.0", - "hashPath": "system.collections.immutable.1.5.0.nupkg.sha512" + "sha512": "sha512-FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", + "path": "system.collections.immutable/5.0.0", + "hashPath": "system.collections.immutable.5.0.0.nupkg.sha512" + }, + "System.ComponentModel.Annotations/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", + "path": "system.componentmodel.annotations/5.0.0", + "hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512" }, "System.Data.SqlClient/4.4.3": { "type": "package", @@ -2617,6 +2977,13 @@ "path": "system.data.sqlclient/4.4.3", "hashPath": "system.data.sqlclient.4.4.3.nupkg.sha512" }, + "System.Diagnostics.DiagnosticSource/5.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uXQEYqav2V3zP6OwkOKtLv+qIi6z3m1hsGyKwXX7ZA7htT4shoVccGxnJ9kVRFPNAsi1ArZTq2oh7WOto6GbkQ==", + "path": "system.diagnostics.diagnosticsource/5.0.1", + "hashPath": "system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512" + }, "System.Drawing.Common/4.6.1": { "type": "package", "serviceable": true, @@ -2624,6 +2991,13 @@ "path": "system.drawing.common/4.6.1", "hashPath": "system.drawing.common.4.6.1.nupkg.sha512" }, + "System.IO.Packaging/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9VV4KAbgRQZ79iEoG40KIeZy38O30oWwewScAST879+oki8g/Wa2HXZQgrhDDxQM4GkP1PnRJll05NMiVPbYAw==", + "path": "system.io.packaging/4.7.0", + "hashPath": "system.io.packaging.4.7.0.nupkg.sha512" + }, "System.Memory/4.5.3": { "type": "package", "serviceable": true, @@ -3086,22 +3460,22 @@ "serviceable": false, "sha512": "" }, - "Microsoft.CSharp/5.0.0.0": { + "Microsoft.CSharp.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "Microsoft.Extensions.Caching.Abstractions/5.0.0.0": { + "Microsoft.Extensions.Caching.Abstractions.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "Microsoft.Extensions.Caching.Memory/5.0.0.0": { + "Microsoft.Extensions.Caching.Memory.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "Microsoft.Extensions.Configuration.Abstractions/5.0.0.0": { + "Microsoft.Extensions.Configuration.Abstractions.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -3156,12 +3530,7 @@ "serviceable": false, "sha512": "" }, - "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.DependencyInjection/5.0.0.0": { + "Microsoft.Extensions.DependencyInjection.Abstractions.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -3236,7 +3605,7 @@ "serviceable": false, "sha512": "" }, - "Microsoft.Extensions.Logging.Abstractions/5.0.0.0": { + "Microsoft.Extensions.Logging.Abstractions.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -3256,7 +3625,7 @@ "serviceable": false, "sha512": "" }, - "Microsoft.Extensions.Logging/5.0.0.0": { + "Microsoft.Extensions.Logging.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -3291,12 +3660,12 @@ "serviceable": false, "sha512": "" }, - "Microsoft.Extensions.Options/5.0.0.0": { + "Microsoft.Extensions.Options.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "Microsoft.Extensions.Primitives/5.0.0.0": { + "Microsoft.Extensions.Primitives.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -3381,7 +3750,7 @@ "serviceable": false, "sha512": "" }, - "System.ComponentModel.Annotations/5.0.0.0": { + "System.ComponentModel.Annotations.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -3451,11 +3820,6 @@ "serviceable": false, "sha512": "" }, - "System.Diagnostics.DiagnosticSource/5.0.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, "System.Diagnostics.EventLog/5.0.0.0": { "type": "referenceassembly", "serviceable": false, diff --git a/obj/Debug/net5.0/rmutr-report.csproj.FileListAbsolute.txt b/obj/Debug/net5.0/rmutr-report.csproj.FileListAbsolute.txt index 0f848e0..6714b5a 100644 --- a/obj/Debug/net5.0/rmutr-report.csproj.FileListAbsolute.txt +++ b/obj/Debug/net5.0/rmutr-report.csproj.FileListAbsolute.txt @@ -164,3 +164,16 @@ C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\rmutr-report.pdb C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\rmutr-report.genruntimeconfig.cache C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\Swashbuckle.AspNetCore.Annotations.dll C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\refint\rmutr-report.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\ClosedXML.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\DocumentFormat.OpenXml.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\ExcelDataReader.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\ExcelNumberFormat.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\System.IO.Packaging.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\Humanizer.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\Microsoft.EntityFrameworkCore.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\Microsoft.EntityFrameworkCore.Abstractions.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\Microsoft.EntityFrameworkCore.Design.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\Microsoft.EntityFrameworkCore.Relational.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\Microsoft.Extensions.DependencyInjection.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\SeventyOneDev.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\System.Diagnostics.DiagnosticSource.dll diff --git a/obj/project.assets.json b/obj/project.assets.json index d0fa17a..5801ce9 100644 --- a/obj/project.assets.json +++ b/obj/project.assets.json @@ -2,6 +2,67 @@ "version": 3, "targets": { "net5.0": { + "ClosedXML/0.96.0": { + "type": "package", + "dependencies": { + "DocumentFormat.OpenXml": "2.16.0", + "ExcelNumberFormat": "1.1.0", + "Microsoft.CSharp": "4.7.0", + "System.Drawing.Common": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/ClosedXML.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/ClosedXML.dll": { + "related": ".pdb;.xml" + } + } + }, + "DocumentFormat.OpenXml/2.16.0": { + "type": "package", + "dependencies": { + "System.IO.Packaging": "4.7.0" + }, + "compile": { + "lib/netstandard2.0/DocumentFormat.OpenXml.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/DocumentFormat.OpenXml.dll": { + "related": ".xml" + } + } + }, + "ExcelDataReader/3.7.0-develop00310": { + "type": "package", + "compile": { + "lib/netstandard2.0/ExcelDataReader.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/ExcelDataReader.dll": { + "related": ".pdb;.xml" + } + } + }, + "ExcelNumberFormat/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/ExcelNumberFormat.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/ExcelNumberFormat.dll": { + "related": ".xml" + } + } + }, "FastReport.Compat/2021.2.0": { "type": "package", "dependencies": { @@ -72,6 +133,19 @@ } } }, + "Humanizer.Core/2.8.26": { + "type": "package", + "compile": { + "lib/netstandard2.0/Humanizer.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Humanizer.dll": { + "related": ".xml" + } + } + }, "Microsoft.CodeAnalysis.Analyzers/2.9.4": { "type": "package", "build": { @@ -90,10 +164,14 @@ "System.Threading.Tasks.Extensions": "4.5.3" }, "compile": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.dll": {} + "lib/netstandard2.0/Microsoft.CodeAnalysis.dll": { + "related": ".pdb;.xml" + } }, "runtime": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.dll": {} + "lib/netstandard2.0/Microsoft.CodeAnalysis.dll": { + "related": ".pdb;.xml" + } }, "resource": { "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll": { @@ -143,10 +221,14 @@ "Microsoft.CodeAnalysis.Common": "[3.3.1]" }, "compile": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll": {} + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll": { + "related": ".pdb;.xml" + } }, "runtime": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll": {} + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll": { + "related": ".pdb;.xml" + } }, "resource": { "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { @@ -196,10 +278,14 @@ "Microsoft.CodeAnalysis.Common": "[3.3.1]" }, "compile": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.dll": {} + "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.dll": { + "related": ".pdb;.xml" + } }, "runtime": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.dll": {} + "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.dll": { + "related": ".pdb;.xml" + } }, "resource": { "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { @@ -243,6 +329,98 @@ } } }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore/5.0.5": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "5.0.5", + "Microsoft.EntityFrameworkCore.Analyzers": "5.0.5", + "Microsoft.Extensions.Caching.Memory": "5.0.0", + "Microsoft.Extensions.DependencyInjection": "5.0.1", + "Microsoft.Extensions.Logging": "5.0.0", + "System.Collections.Immutable": "5.0.0", + "System.ComponentModel.Annotations": "5.0.0", + "System.Diagnostics.DiagnosticSource": "5.0.1" + }, + "compile": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/5.0.5": { + "type": "package", + "compile": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/5.0.5": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore.Design/5.0.5": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.8.26", + "Microsoft.CSharp": "4.7.0", + "Microsoft.EntityFrameworkCore.Relational": "5.0.5" + }, + "compile": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Design.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Design.dll": { + "related": ".xml" + } + }, + "build": { + "build/netcoreapp3.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore.Relational/5.0.5": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "5.0.5", + "Microsoft.Extensions.Configuration.Abstractions": "5.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + } + }, "Microsoft.Extensions.ApiDescription.Server/3.0.0": { "type": "package", "build": { @@ -254,6 +432,149 @@ "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {} } }, + "Microsoft.Extensions.Caching.Abstractions/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Caching.Memory/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "5.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Logging.Abstractions": "5.0.0", + "Microsoft.Extensions.Options": "5.0.0", + "Microsoft.Extensions.Primitives": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.DependencyInjection/5.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0" + }, + "compile": { + "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "5.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Logging.Abstractions": "5.0.0", + "Microsoft.Extensions.Options": "5.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Options/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Primitives": "5.0.0" + }, + "compile": { + "lib/net5.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Primitives/5.0.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + } + }, "Microsoft.NETCore.Platforms/3.0.0": { "type": "package", "compile": { @@ -266,10 +587,14 @@ "Microsoft.OpenApi/1.2.3": { "type": "package", "compile": { - "lib/netstandard2.0/Microsoft.OpenApi.dll": {} + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } }, "runtime": { - "lib/netstandard2.0/Microsoft.OpenApi.dll": {} + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } } }, "Microsoft.Win32.Registry/4.4.0": { @@ -280,7 +605,9 @@ "System.Security.Principal.Windows": "4.4.0" }, "compile": { - "ref/netstandard2.0/_._": {} + "ref/netstandard2.0/_._": { + "related": ".xml" + } }, "runtime": { "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} @@ -302,10 +629,14 @@ "Microsoft.NETCore.Platforms": "3.0.0" }, "compile": { - "ref/netstandard2.0/_._": {} + "ref/netstandard2.0/_._": { + "related": ".xml" + } }, "runtime": { - "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {} + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } }, "runtimeTargets": { "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { @@ -349,6 +680,23 @@ } } }, + "SeventyOneDev.Utilities/1.10.12": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "5.0.5", + "Microsoft.EntityFrameworkCore.Design": "5.0.5" + }, + "compile": { + "lib/net5.0/SeventyOneDev.dll": { + "related": ".runtimeconfig.json" + } + }, + "runtime": { + "lib/net5.0/SeventyOneDev.dll": { + "related": ".runtimeconfig.json" + } + } + }, "Swashbuckle.AspNetCore/5.6.3": { "type": "package", "dependencies": { @@ -367,10 +715,14 @@ "Swashbuckle.AspNetCore.SwaggerGen": "6.0.7" }, "compile": { - "lib/net5.0/Swashbuckle.AspNetCore.Annotations.dll": {} + "lib/net5.0/Swashbuckle.AspNetCore.Annotations.dll": { + "related": ".pdb;.xml" + } }, "runtime": { - "lib/net5.0/Swashbuckle.AspNetCore.Annotations.dll": {} + "lib/net5.0/Swashbuckle.AspNetCore.Annotations.dll": { + "related": ".pdb;.xml" + } } }, "Swashbuckle.AspNetCore.Swagger/6.0.7": { @@ -379,10 +731,14 @@ "Microsoft.OpenApi": "1.2.3" }, "compile": { - "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll": {} + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll": { + "related": ".pdb;.xml" + } }, "runtime": { - "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll": {} + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll": { + "related": ".pdb;.xml" + } }, "frameworkReferences": [ "Microsoft.AspNetCore.App" @@ -394,31 +750,56 @@ "Swashbuckle.AspNetCore.Swagger": "6.0.7" }, "compile": { - "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {} + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "related": ".pdb;.xml" + } }, "runtime": { - "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {} + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "related": ".pdb;.xml" + } } }, "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": { "type": "package", "compile": { - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {} + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "related": ".pdb;.xml" + } }, "runtime": { - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {} + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "related": ".pdb;.xml" + } }, "frameworkReferences": [ "Microsoft.AspNetCore.App" ] }, - "System.Collections.Immutable/1.5.0": { + "System.Collections.Immutable/5.0.0": { "type": "package", "compile": { - "lib/netstandard2.0/System.Collections.Immutable.dll": {} + "lib/netstandard2.0/System.Collections.Immutable.dll": { + "related": ".xml" + } }, "runtime": { - "lib/netstandard2.0/System.Collections.Immutable.dll": {} + "lib/netstandard2.0/System.Collections.Immutable.dll": { + "related": ".xml" + } + } + }, + "System.ComponentModel.Annotations/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.1/System.ComponentModel.Annotations.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/System.ComponentModel.Annotations.dll": { + "related": ".xml" + } } }, "System.Data.SqlClient/4.4.3": { @@ -430,7 +811,9 @@ "runtime.native.System.Data.SqlClient.sni": "4.4.0" }, "compile": { - "ref/netstandard2.0/System.Data.SqlClient.dll": {} + "ref/netstandard2.0/System.Data.SqlClient.dll": { + "related": ".xml" + } }, "runtime": { "lib/netstandard2.0/System.Data.SqlClient.dll": {} @@ -446,6 +829,19 @@ } } }, + "System.Diagnostics.DiagnosticSource/5.0.1": { + "type": "package", + "compile": { + "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + } + }, "System.Drawing.Common/4.6.1": { "type": "package", "dependencies": { @@ -453,7 +849,9 @@ "Microsoft.Win32.SystemEvents": "4.6.0" }, "compile": { - "ref/netcoreapp3.0/System.Drawing.Common.dll": {} + "ref/netcoreapp3.0/System.Drawing.Common.dll": { + "related": ".xml" + } }, "runtime": { "lib/netstandard2.0/System.Drawing.Common.dll": {} @@ -469,6 +867,19 @@ } } }, + "System.IO.Packaging/4.7.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.IO.Packaging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.IO.Packaging.dll": { + "related": ".xml" + } + } + }, "System.Memory/4.5.3": { "type": "package", "compile": { @@ -481,19 +892,27 @@ "System.Reflection.Metadata/1.6.0": { "type": "package", "compile": { - "lib/netstandard2.0/System.Reflection.Metadata.dll": {} + "lib/netstandard2.0/System.Reflection.Metadata.dll": { + "related": ".xml" + } }, "runtime": { - "lib/netstandard2.0/System.Reflection.Metadata.dll": {} + "lib/netstandard2.0/System.Reflection.Metadata.dll": { + "related": ".xml" + } } }, "System.Runtime.CompilerServices.Unsafe/4.5.2": { "type": "package", "compile": { - "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } }, "runtime": { - "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } } }, "System.Security.AccessControl/4.4.0": { @@ -503,7 +922,9 @@ "System.Security.Principal.Windows": "4.4.0" }, "compile": { - "ref/netstandard2.0/System.Security.AccessControl.dll": {} + "ref/netstandard2.0/System.Security.AccessControl.dll": { + "related": ".xml" + } }, "runtime": { "lib/netstandard2.0/System.Security.AccessControl.dll": {} @@ -522,7 +943,9 @@ "System.Security.Cryptography.Cng/4.5.0": { "type": "package", "compile": { - "ref/netcoreapp2.1/_._": {} + "ref/netcoreapp2.1/_._": { + "related": ".xml" + } }, "runtime": { "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} @@ -540,7 +963,9 @@ "System.Security.Cryptography.Cng": "4.5.0" }, "compile": { - "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll": {} + "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll": { + "related": ".xml" + } }, "runtime": { "lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll": {} @@ -558,7 +983,9 @@ "System.Security.AccessControl": "4.4.0" }, "compile": { - "ref/netstandard2.0/System.Security.Permissions.dll": {} + "ref/netstandard2.0/System.Security.Permissions.dll": { + "related": ".xml" + } }, "runtime": { "lib/netstandard2.0/System.Security.Permissions.dll": {} @@ -570,7 +997,9 @@ "Microsoft.NETCore.Platforms": "2.0.0" }, "compile": { - "ref/netstandard2.0/System.Security.Principal.Windows.dll": {} + "ref/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } }, "runtime": { "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} @@ -620,10 +1049,14 @@ "System.Drawing.Common": "4.6.0" }, "compile": { - "ref/netcoreapp3.0/System.Windows.Extensions.dll": {} + "ref/netcoreapp3.0/System.Windows.Extensions.dll": { + "related": ".xml" + } }, "runtime": { - "lib/netcoreapp3.0/System.Windows.Extensions.dll": {} + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "related": ".xml" + } }, "runtimeTargets": { "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { @@ -635,6 +1068,90 @@ } }, "libraries": { + "ClosedXML/0.96.0": { + "sha512": "3VLfl4wCMHDuaV0GwA9MHY6BvKlTH4zaNG/ah6QODCZYMqLS6m0JVZph5kGpbuCCCyKXdO2hiUd/e35Wzd/Zmw==", + "type": "package", + "path": "closedxml/0.96.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "closedxml.0.96.0.nupkg.sha512", + "closedxml.nuspec", + "lib/net40/ClosedXML.dll", + "lib/net40/ClosedXML.pdb", + "lib/net40/ClosedXML.xml", + "lib/net46/ClosedXML.dll", + "lib/net46/ClosedXML.pdb", + "lib/net46/ClosedXML.xml", + "lib/netstandard2.0/ClosedXML.dll", + "lib/netstandard2.0/ClosedXML.pdb", + "lib/netstandard2.0/ClosedXML.xml", + "nuget-logo.png" + ] + }, + "DocumentFormat.OpenXml/2.16.0": { + "sha512": "RhpnDgyyx1KjZm98T3w3bSXFHG/7ZNUaVmz4NAUA+jmV3PcVNZeW87Y04CpBNLdDHEMSspirfo0B5kLRaoE97w==", + "type": "package", + "path": "documentformat.openxml/2.16.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "documentformat.openxml.2.16.0.nupkg.sha512", + "documentformat.openxml.nuspec", + "icon.png", + "lib/net35/DocumentFormat.OpenXml.dll", + "lib/net35/DocumentFormat.OpenXml.xml", + "lib/net40/DocumentFormat.OpenXml.dll", + "lib/net40/DocumentFormat.OpenXml.xml", + "lib/net46/DocumentFormat.OpenXml.dll", + "lib/net46/DocumentFormat.OpenXml.xml", + "lib/netstandard1.3/DocumentFormat.OpenXml.dll", + "lib/netstandard1.3/DocumentFormat.OpenXml.xml", + "lib/netstandard2.0/DocumentFormat.OpenXml.dll", + "lib/netstandard2.0/DocumentFormat.OpenXml.xml" + ] + }, + "ExcelDataReader/3.7.0-develop00310": { + "sha512": "ox77cjWP8h1z0cH1VR/hsvGYHng/9o6uxaE/Ui14xphEUU1Ovluipcn7gJE5ZmXSBCzT2x6c2OTBwyMBk+ysDw==", + "type": "package", + "path": "exceldatareader/3.7.0-develop00310", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "exceldatareader.3.7.0-develop00310.nupkg.sha512", + "exceldatareader.nuspec", + "lib/net20/ExcelDataReader.dll", + "lib/net20/ExcelDataReader.pdb", + "lib/net20/ExcelDataReader.xml", + "lib/net45/ExcelDataReader.dll", + "lib/net45/ExcelDataReader.pdb", + "lib/net45/ExcelDataReader.xml", + "lib/netstandard1.3/ExcelDataReader.dll", + "lib/netstandard1.3/ExcelDataReader.pdb", + "lib/netstandard1.3/ExcelDataReader.xml", + "lib/netstandard2.0/ExcelDataReader.dll", + "lib/netstandard2.0/ExcelDataReader.pdb", + "lib/netstandard2.0/ExcelDataReader.xml" + ] + }, + "ExcelNumberFormat/1.1.0": { + "sha512": "R3BVHPs9O+RkExbZYTGT0+9HLbi8ZrNij1Yziyw6znd3J7P3uoIR07uwTLGOogtz1p6+0sna66eBoXu7tBiVQA==", + "type": "package", + "path": "excelnumberformat/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "excelnumberformat.1.1.0.nupkg.sha512", + "excelnumberformat.nuspec", + "icon.png", + "lib/net20/ExcelNumberFormat.dll", + "lib/net20/ExcelNumberFormat.xml", + "lib/netstandard1.0/ExcelNumberFormat.dll", + "lib/netstandard1.0/ExcelNumberFormat.xml", + "lib/netstandard2.0/ExcelNumberFormat.dll", + "lib/netstandard2.0/ExcelNumberFormat.xml" + ] + }, "FastReport.Compat/2021.2.0": { "sha512": "BcHoqU3Bw/99fZ3OtiMPM1qChgFgtfyDYaszDNEB56s92yyu0JpPA/4DUjhjoI1m56Vcl5K3acwnzQ8sXz3HrA==", "type": "package", @@ -695,6 +1212,22 @@ "runtimes/any/lib/netcoreapp3.0/FastReport.DataVisualization.dll" ] }, + "Humanizer.Core/2.8.26": { + "sha512": "OiKusGL20vby4uDEswj2IgkdchC1yQ6rwbIkZDVBPIR6al2b7n3pC91elBul9q33KaBgRKhbZH3+2Ur4fnWx2A==", + "type": "package", + "path": "humanizer.core/2.8.26", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.2.8.26.nupkg.sha512", + "humanizer.core.nuspec", + "lib/netstandard1.0/Humanizer.dll", + "lib/netstandard1.0/Humanizer.xml", + "lib/netstandard2.0/Humanizer.dll", + "lib/netstandard2.0/Humanizer.xml", + "logo.png" + ] + }, "Microsoft.CodeAnalysis.Analyzers/2.9.4": { "sha512": "alIJhS0VUg/7x5AsHEoovh/wRZ0RfCSS7k5pDSqpRLTyuMTtRgj6OJJPRApRhJHOGYYsLakf1hKeXFoDwKwNkg==", "type": "package", @@ -850,6 +1383,146 @@ "microsoft.codeanalysis.visualbasic.nuspec" ] }, + "Microsoft.CSharp/4.7.0": { + "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "type": "package", + "path": "microsoft.csharp/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.xml", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.7.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.EntityFrameworkCore/5.0.5": { + "sha512": "lBIGKXhduT94Qats0ImMma9NWnsSLhz04JdD+Mi7DeCDPd3hiA668jREzCiLb9FqcmAIrLx8pxIo9cwjEHfYtQ==", + "type": "package", + "path": "microsoft.entityframeworkcore/5.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml", + "microsoft.entityframeworkcore.5.0.5.nupkg.sha512", + "microsoft.entityframeworkcore.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Abstractions/5.0.5": { + "sha512": "jS7+hySzNS9wCmREbWTVaa5EA+aLT7wb1Si1jhMgAiGrbLQSj6wPnS8WbhO5a7iAq45pDEK0KghtrPDFjfTxVw==", + "type": "package", + "path": "microsoft.entityframeworkcore.abstractions/5.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml", + "microsoft.entityframeworkcore.abstractions.5.0.5.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Analyzers/5.0.5": { + "sha512": "czVyD5h0etXlrFHln0GPwlhmNm4yFe8vA/xfW/oN26OT8AAWkA6YPjr+z68/kmPqMWFo8UHxvDBZ9g2TiJY9qQ==", + "type": "package", + "path": "microsoft.entityframeworkcore.analyzers/5.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", + "lib/netstandard2.0/_._", + "microsoft.entityframeworkcore.analyzers.5.0.5.nupkg.sha512", + "microsoft.entityframeworkcore.analyzers.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Design/5.0.5": { + "sha512": "bEjgWGrEWtCQl1A3wx1xW+tALhuWHG+0hXFr9G+GrwkVLaZiW0tILqRx1DJ0y4t12dUf8tMsv0LMokKIf8IOFw==", + "type": "package", + "path": "microsoft.entityframeworkcore.design/5.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "build/netcoreapp3.0/Microsoft.EntityFrameworkCore.Design.props", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Design.dll", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Design.xml", + "microsoft.entityframeworkcore.design.5.0.5.nupkg.sha512", + "microsoft.entityframeworkcore.design.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Relational/5.0.5": { + "sha512": "D+9me6olfUKpti0WkMFsKk9T4uTPZ+3mg/NIwq1Fhp/qQAu9yg2FZTUa0O8ugGuiGyJHfi8tMvh+iCL0LTpG4g==", + "type": "package", + "path": "microsoft.entityframeworkcore.relational/5.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml", + "microsoft.entityframeworkcore.relational.5.0.5.nupkg.sha512", + "microsoft.entityframeworkcore.relational.nuspec" + ] + }, "Microsoft.Extensions.ApiDescription.Server/3.0.0": { "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==", "type": "package", @@ -877,6 +1550,196 @@ "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json" ] }, + "Microsoft.Extensions.Caching.Abstractions/5.0.0": { + "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Caching.Memory/5.0.0": { + "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==", + "type": "package", + "path": "microsoft.extensions.caching.memory/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Caching.Memory.dll", + "lib/net461/Microsoft.Extensions.Caching.Memory.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", + "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { + "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/5.0.1": { + "sha512": "//mDNrYeiJ0eh/awFhDFJQzkRVra/njU5Y4fyK7X29g5HScrzbUkKOKlyTtygthcGFt4zNC8G5CFCjb/oizomA==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/5.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.DependencyInjection.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.xml", + "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.5.0.1.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { + "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Logging/5.0.0": { + "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==", + "type": "package", + "path": "microsoft.extensions.logging/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.dll", + "lib/net461/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.5.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/5.0.0": { + "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Options/5.0.0": { + "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==", + "type": "package", + "path": "microsoft.extensions.options/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Options.dll", + "lib/net461/Microsoft.Extensions.Options.xml", + "lib/net5.0/Microsoft.Extensions.Options.dll", + "lib/net5.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.5.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Primitives/5.0.0": { + "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==", + "type": "package", + "path": "microsoft.extensions.primitives/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Primitives.dll", + "lib/net461/Microsoft.Extensions.Primitives.xml", + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll", + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.5.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, "Microsoft.NETCore.Platforms/3.0.0": { "sha512": "TsETIgVJb/AKoYfSP+iCxkuly5d3inZjTdx/ItZLk2CxY85v8083OBS3uai84kK3/baLnS5/b5XGs6zR7SuuHQ==", "type": "package", @@ -1043,6 +1906,18 @@ "version.txt" ] }, + "SeventyOneDev.Utilities/1.10.12": { + "sha512": "qZrTHa5hkMzfRig2tVlDslUCurW8w4xKaL9p8QitvWohE+VKjo3LJOT3qkTsUJ2iE42B9ZXrRQlTxJc9KhUw9g==", + "type": "package", + "path": "seventyonedev.utilities/1.10.12", + "files": [ + ".nupkg.metadata", + "lib/net5.0/SeventyOneDev.dll", + "lib/net5.0/SeventyOneDev.runtimeconfig.json", + "seventyonedev.utilities.1.10.12.nupkg.sha512", + "seventyonedev.utilities.nuspec" + ] + }, "Swashbuckle.AspNetCore/5.6.3": { "sha512": "UkL9GU0mfaA+7RwYjEaBFvAzL8qNQhNqAeV5uaWUu/Z+fVgvK9FHkGCpTXBqSQeIHuZaIElzxnLDdIqGzuCnVg==", "type": "package", @@ -1132,15 +2007,18 @@ "swashbuckle.aspnetcore.swaggerui.nuspec" ] }, - "System.Collections.Immutable/1.5.0": { - "sha512": "EXKiDFsChZW0RjrZ4FYHu9aW6+P4MCgEDCklsVseRfhoO0F+dXeMSsMRAlVXIo06kGJ/zv+2w1a2uc2+kxxSaQ==", + "System.Collections.Immutable/5.0.0": { + "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", "type": "package", - "path": "system.collections.immutable/1.5.0", + "path": "system.collections.immutable/5.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", + "Icon.png", "LICENSE.TXT", "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Collections.Immutable.dll", + "lib/net461/System.Collections.Immutable.xml", "lib/netstandard1.0/System.Collections.Immutable.dll", "lib/netstandard1.0/System.Collections.Immutable.xml", "lib/netstandard1.3/System.Collections.Immutable.dll", @@ -1149,12 +2027,102 @@ "lib/netstandard2.0/System.Collections.Immutable.xml", "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", - "system.collections.immutable.1.5.0.nupkg.sha512", + "system.collections.immutable.5.0.0.nupkg.sha512", "system.collections.immutable.nuspec", "useSharedDesignerContext.txt", "version.txt" ] }, + "System.ComponentModel.Annotations/5.0.0": { + "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", + "type": "package", + "path": "system.componentmodel.annotations/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.ComponentModel.Annotations.dll", + "lib/netcore50/System.ComponentModel.Annotations.dll", + "lib/netstandard1.4/System.ComponentModel.Annotations.dll", + "lib/netstandard2.0/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.xml", + "lib/portable-net45+win8/_._", + "lib/win8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.ComponentModel.Annotations.dll", + "ref/net461/System.ComponentModel.Annotations.xml", + "ref/netcore50/System.ComponentModel.Annotations.dll", + "ref/netcore50/System.ComponentModel.Annotations.xml", + "ref/netcore50/de/System.ComponentModel.Annotations.xml", + "ref/netcore50/es/System.ComponentModel.Annotations.xml", + "ref/netcore50/fr/System.ComponentModel.Annotations.xml", + "ref/netcore50/it/System.ComponentModel.Annotations.xml", + "ref/netcore50/ja/System.ComponentModel.Annotations.xml", + "ref/netcore50/ko/System.ComponentModel.Annotations.xml", + "ref/netcore50/ru/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/System.ComponentModel.Annotations.dll", + "ref/netstandard1.1/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/System.ComponentModel.Annotations.dll", + "ref/netstandard1.3/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/System.ComponentModel.Annotations.dll", + "ref/netstandard1.4/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard2.0/System.ComponentModel.Annotations.dll", + "ref/netstandard2.0/System.ComponentModel.Annotations.xml", + "ref/netstandard2.1/System.ComponentModel.Annotations.dll", + "ref/netstandard2.1/System.ComponentModel.Annotations.xml", + "ref/portable-net45+win8/_._", + "ref/win8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.annotations.5.0.0.nupkg.sha512", + "system.componentmodel.annotations.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, "System.Data.SqlClient/4.4.3": { "sha512": "D1hEOS1oPLJ6WcGCzpTWe8SauWVxnDoDTUWhv5XCNdRm/QeSUk4BQ3ZDe7BH+zNVHDBkPYjVzpVjnCl43eOSGg==", "type": "package", @@ -1223,6 +2191,34 @@ "version.txt" ] }, + "System.Diagnostics.DiagnosticSource/5.0.1": { + "sha512": "uXQEYqav2V3zP6OwkOKtLv+qIi6z3m1hsGyKwXX7ZA7htT4shoVccGxnJ9kVRFPNAsi1ArZTq2oh7WOto6GbkQ==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/5.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/System.Diagnostics.DiagnosticSource.dll", + "lib/net45/System.Diagnostics.DiagnosticSource.xml", + "lib/net46/System.Diagnostics.DiagnosticSource.dll", + "lib/net46/System.Diagnostics.DiagnosticSource.xml", + "lib/net5.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net5.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, "System.Drawing.Common/4.6.1": { "sha512": "TFAADvBEUhdDb2Lteq/BUeG0J1y7a0GyFdpB8yE/eAcbiN0R5MII1nXExXsrtRZiO8C/L9SozL2wGqkRlhiv6A==", "type": "package", @@ -1262,6 +2258,33 @@ "version.txt" ] }, + "System.IO.Packaging/4.7.0": { + "sha512": "9VV4KAbgRQZ79iEoG40KIeZy38O30oWwewScAST879+oki8g/Wa2HXZQgrhDDxQM4GkP1PnRJll05NMiVPbYAw==", + "type": "package", + "path": "system.io.packaging/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.IO.Packaging.dll", + "lib/net46/System.IO.Packaging.xml", + "lib/netstandard1.3/System.IO.Packaging.dll", + "lib/netstandard1.3/System.IO.Packaging.xml", + "lib/netstandard2.0/System.IO.Packaging.dll", + "lib/netstandard2.0/System.IO.Packaging.xml", + "ref/net46/System.IO.Packaging.dll", + "ref/net46/System.IO.Packaging.xml", + "ref/netstandard1.3/System.IO.Packaging.dll", + "ref/netstandard1.3/System.IO.Packaging.xml", + "ref/netstandard2.0/System.IO.Packaging.dll", + "ref/netstandard2.0/System.IO.Packaging.xml", + "system.io.packaging.4.7.0.nupkg.sha512", + "system.io.packaging.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, "System.Memory/4.5.3": { "sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", "type": "package", @@ -1619,7 +2642,10 @@ }, "projectFileDependencyGroups": { "net5.0": [ + "ClosedXML >= 0.96.0", + "ExcelDataReader >= 3.7.0-develop00310", "FastReport.Core >= 2021.3.0", + "SeventyOneDev.Utilities >= 1.10.12", "Swashbuckle.AspNetCore >= 5.6.3", "Swashbuckle.AspNetCore.Annotations >= 6.0.7" ] @@ -1647,6 +2673,7 @@ "sources": { "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {}, + "https://nuget.71dev.com/v3/index.json": {}, "https://nuget.71dev.com/v3/index.json": {} }, "frameworks": { @@ -1665,10 +2692,22 @@ "net5.0": { "targetAlias": "net5.0", "dependencies": { + "ClosedXML": { + "target": "Package", + "version": "[0.96.0, )" + }, + "ExcelDataReader": { + "target": "Package", + "version": "[3.7.0-develop00310, )" + }, "FastReport.Core": { "target": "Package", "version": "[2021.3.0, )" }, + "SeventyOneDev.Utilities": { + "target": "Package", + "version": "[1.10.12, )" + }, "Swashbuckle.AspNetCore": { "target": "Package", "version": "[5.6.3, )" diff --git a/obj/project.packagespec.json b/obj/project.packagespec.json index 69bad35..a929f13 100644 --- a/obj/project.packagespec.json +++ b/obj/project.packagespec.json @@ -1 +1 @@ -"restore":{"projectUniqueName":"C:\\Users\\Mercedes Benz\\Documents\\rmutr_report\\rmutr-report.csproj","projectName":"rmutr-report","projectPath":"C:\\Users\\Mercedes Benz\\Documents\\rmutr_report\\rmutr-report.csproj","outputPath":"C:\\Users\\Mercedes Benz\\Documents\\rmutr_report\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net5.0"],"sources":{"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\":{},"https://api.nuget.org/v3/index.json":{},"https://nuget.71dev.com/v3/index.json":{},"https://nuget.71dev.com/v3/index.json":{}},"frameworks":{"net5.0":{"targetAlias":"net5.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net5.0":{"targetAlias":"net5.0","dependencies":{"FastReport.Core":{"target":"Package","version":"[2021.3.0, )"},"Swashbuckle.AspNetCore":{"target":"Package","version":"[5.6.3, )"},"Swashbuckle.AspNetCore.Annotations":{"target":"Package","version":"[6.0.7, )"}},"imports":["net461","net462","net47","net471","net472","net48"],"assetTargetFallback":true,"warn":true,"downloadDependencies":[{"name":"Microsoft.NETCore.App.Host.win-x64","version":"[5.0.17, 5.0.17]"}],"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json"}} \ No newline at end of file +"restore":{"projectUniqueName":"C:\\Users\\Mercedes Benz\\Documents\\rmutr_report\\rmutr-report.csproj","projectName":"rmutr-report","projectPath":"C:\\Users\\Mercedes Benz\\Documents\\rmutr_report\\rmutr-report.csproj","outputPath":"C:\\Users\\Mercedes Benz\\Documents\\rmutr_report\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net5.0"],"sources":{"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\":{},"https://api.nuget.org/v3/index.json":{},"https://nuget.71dev.com/v3/index.json":{},"https://nuget.71dev.com/v3/index.json":{}},"frameworks":{"net5.0":{"targetAlias":"net5.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net5.0":{"targetAlias":"net5.0","dependencies":{"ClosedXML":{"target":"Package","version":"[0.96.0, )"},"ExcelDataReader":{"target":"Package","version":"[3.7.0-develop00310, )"},"FastReport.Core":{"target":"Package","version":"[2021.3.0, )"},"SeventyOneDev.Utilities":{"target":"Package","version":"[1.10.12, )"},"Swashbuckle.AspNetCore":{"target":"Package","version":"[5.6.3, )"},"Swashbuckle.AspNetCore.Annotations":{"target":"Package","version":"[6.0.7, )"}},"imports":["net461","net462","net47","net471","net472","net48"],"assetTargetFallback":true,"warn":true,"downloadDependencies":[{"name":"Microsoft.NETCore.App.Host.win-x64","version":"[5.0.17, 5.0.17]"}],"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/obj/rider.project.restore.info b/obj/rider.project.restore.info index 4bf624f..09065a4 100644 --- a/obj/rider.project.restore.info +++ b/obj/rider.project.restore.info @@ -1 +1 @@ -16613086405383533 \ No newline at end of file +16663372757326494 \ No newline at end of file diff --git a/obj/rmutr-report.csproj.nuget.dgspec.json b/obj/rmutr-report.csproj.nuget.dgspec.json index 990e9f7..275e28a 100644 --- a/obj/rmutr-report.csproj.nuget.dgspec.json +++ b/obj/rmutr-report.csproj.nuget.dgspec.json @@ -43,10 +43,22 @@ "net5.0": { "targetAlias": "net5.0", "dependencies": { + "ClosedXML": { + "target": "Package", + "version": "[0.96.0, )" + }, + "ExcelDataReader": { + "target": "Package", + "version": "[3.7.0-develop00310, )" + }, "FastReport.Core": { "target": "Package", "version": "[2021.3.0, )" }, + "SeventyOneDev.Utilities": { + "target": "Package", + "version": "[1.10.12, )" + }, "Swashbuckle.AspNetCore": { "target": "Package", "version": "[5.6.3, )" diff --git a/obj/rmutr-report.csproj.nuget.g.props b/obj/rmutr-report.csproj.nuget.g.props index 876b599..4b30156 100644 --- a/obj/rmutr-report.csproj.nuget.g.props +++ b/obj/rmutr-report.csproj.nuget.g.props @@ -7,7 +7,7 @@ $(UserProfile)\.nuget\packages\ C:\Users\Mercedes Benz\.nuget\packages\ PackageReference - 6.2.0 + 6.3.0 diff --git a/rmutr-report.csproj b/rmutr-report.csproj index cfee403..2c4908b 100644 --- a/rmutr-report.csproj +++ b/rmutr-report.csproj @@ -9,7 +9,10 @@ $(NoWarn);1591 + + +