diff --git a/Controllers/durable_articles_three.Controller.cs b/Controllers/durable_articles_three.Controller.cs index 27c79e9..819d260 100644 --- a/Controllers/durable_articles_three.Controller.cs +++ b/Controllers/durable_articles_three.Controller.cs @@ -9,6 +9,7 @@ using FastReport.Export.Mht; using FastReport.Export.OoXML; using FastReport.Export.Pdf; using Microsoft.AspNetCore.Mvc; +using OfficeOpenXml; using rmutr_report.Models; using Swashbuckle.AspNetCore.Annotations; @@ -29,25 +30,25 @@ namespace rmutr_report.Controllers public IActionResult GetHrReport([FromRoute] string type, [FromBody] durable_articles_three durable_articles_threes) { - //Console.WriteLine(durable_articles_threes.specification_data[0].data_detail[0].data_detail2); - // var a1 = durable_articles_threes.data.Sum(o => o.amount); - // if (durable_articles_threes.data!=null) - // { - // durable_articles_threes.total_amount = a1; - // - // } - - // int a = 1; - // foreach (var q in durable_articles_threes.quotation) - // { - // - // string t = "ใบเสนอราคาบริษัทที่ " + a++ +" "; - // q.company = t + q.company; - // //a++; - // } + //Console.WriteLine(durable_articles_threes.specification_data[0].data_detail[0].data_detail2); + // var a1 = durable_articles_threes.data.Sum(o => o.amount); + // if (durable_articles_threes.data!=null) + // { + // durable_articles_threes.total_amount = a1; + // + // } - - var _durable_articles_three = new List() {durable_articles_threes}; + // int a = 1; + // foreach (var q in durable_articles_threes.quotation) + // { + // + // string t = "ใบเสนอราคาบริษัทที่ " + a++ +" "; + // q.company = t + q.company; + // //a++; + // } + + + var _durable_articles_three = new List() { durable_articles_threes }; Report report = new Report(); report.Load(_setting.report_path + "durable_articles_three.frx"); @@ -65,14 +66,6 @@ namespace rmutr_report.Controllers stream.Seek(0, SeekOrigin.Begin); return File(stream, "application/pdf"); - case "xls": - case "xlsx": - Excel2007Export excel = new Excel2007Export(); - excel.ShowProgress = true; - excel.PageBreaks = true; - report.Export(excel, stream); - stream.Seek(0, SeekOrigin.Begin); - return File(stream, "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"); break; case "mht": MHTExport mht = new MHTExport(); @@ -86,15 +79,55 @@ namespace rmutr_report.Controllers stream.Seek(0, SeekOrigin.Begin); return File(stream, "text/csv"); break; - case "doc" : case "docx": + case "doc": + case "docx": Word2007Export word = new Word2007Export(); report.Export(word, stream); stream.Seek(0, SeekOrigin.Begin); return File(stream, "appllication/vnd.ms-word"); break; - } + case "xls": + case "xlsx": + Excel2007Export excelExport = new Excel2007Export + { + ShowProgress = true, + PageBreaks = true + }; + report.Export(excelExport, stream); - return Ok(); + stream.Seek(0, SeekOrigin.Begin); + using (var package = new ExcelPackage(stream)) + { + ExcelWorksheet worksheet = package.Workbook.Worksheets[0]; + + if (worksheet.Dimension != null) + { + //worksheet.Cells[worksheet.Dimension.Address].AutoFitColumns(); + worksheet.Cells[worksheet.Dimension.Address].Style.WrapText = true; + } + + package.Save(); + } + + stream.Seek(0, SeekOrigin.Begin); + return File(stream, "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"); + + } + // static double GetTextHeight(string text, double fontSize, bool wrapText) + // { + // if (string.IsNullOrEmpty(text)) + // return 0; + // + // + // const double lineHeightFactor = 1.2; + // + // int lines = wrapText ? text.Split(new[] { '\n' }, StringSplitOptions.None).Length : 1; + // return lines * (fontSize * lineHeightFactor); + // } + + + + return Ok(); } } diff --git a/bin/Debug/netcoreapp3.1/EPPlus.Interfaces.dll b/bin/Debug/netcoreapp3.1/EPPlus.Interfaces.dll new file mode 100644 index 0000000..dd1134e Binary files /dev/null and b/bin/Debug/netcoreapp3.1/EPPlus.Interfaces.dll differ diff --git a/bin/Debug/netcoreapp3.1/EPPlus.System.Drawing.dll b/bin/Debug/netcoreapp3.1/EPPlus.System.Drawing.dll new file mode 100644 index 0000000..3c964e4 Binary files /dev/null and b/bin/Debug/netcoreapp3.1/EPPlus.System.Drawing.dll differ diff --git a/bin/Debug/netcoreapp3.1/EPPlus.dll b/bin/Debug/netcoreapp3.1/EPPlus.dll new file mode 100644 index 0000000..d64e82a Binary files /dev/null and b/bin/Debug/netcoreapp3.1/EPPlus.dll differ diff --git a/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll b/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll new file mode 100644 index 0000000..421e812 Binary files /dev/null and b/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll b/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll new file mode 100644 index 0000000..83d1cf3 Binary files /dev/null and b/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll differ diff --git a/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll b/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll new file mode 100644 index 0000000..2290ca0 Binary files /dev/null and b/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll differ diff --git a/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll b/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll new file mode 100644 index 0000000..c38e9b2 Binary files /dev/null and b/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll differ diff --git a/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll b/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll new file mode 100644 index 0000000..01784b6 Binary files /dev/null and b/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll differ diff --git a/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll b/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll new file mode 100644 index 0000000..59f0636 Binary files /dev/null and b/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll differ diff --git a/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll b/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll new file mode 100644 index 0000000..5ab5699 Binary files /dev/null and b/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll differ diff --git a/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileSystemGlobbing.dll b/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileSystemGlobbing.dll new file mode 100644 index 0000000..5118bb8 Binary files /dev/null and b/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileSystemGlobbing.dll differ diff --git a/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll b/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll new file mode 100644 index 0000000..d723644 Binary files /dev/null and b/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll differ diff --git a/bin/Debug/netcoreapp3.1/Microsoft.IO.RecyclableMemoryStream.dll b/bin/Debug/netcoreapp3.1/Microsoft.IO.RecyclableMemoryStream.dll new file mode 100644 index 0000000..2a12e32 Binary files /dev/null and b/bin/Debug/netcoreapp3.1/Microsoft.IO.RecyclableMemoryStream.dll differ diff --git a/bin/Debug/netcoreapp3.1/System.ComponentModel.Annotations.dll b/bin/Debug/netcoreapp3.1/System.ComponentModel.Annotations.dll new file mode 100644 index 0000000..a5adedd Binary files /dev/null and b/bin/Debug/netcoreapp3.1/System.ComponentModel.Annotations.dll differ diff --git a/bin/Debug/netcoreapp3.1/System.Formats.Asn1.dll b/bin/Debug/netcoreapp3.1/System.Formats.Asn1.dll new file mode 100644 index 0000000..469c6ba Binary files /dev/null and b/bin/Debug/netcoreapp3.1/System.Formats.Asn1.dll differ diff --git a/bin/Debug/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll b/bin/Debug/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll new file mode 100644 index 0000000..103462b Binary files /dev/null and b/bin/Debug/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/bin/Debug/netcoreapp3.1/System.Security.Cryptography.Cng.dll b/bin/Debug/netcoreapp3.1/System.Security.Cryptography.Cng.dll new file mode 100644 index 0000000..9b1fdd8 Binary files /dev/null and b/bin/Debug/netcoreapp3.1/System.Security.Cryptography.Cng.dll differ diff --git a/bin/Debug/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll b/bin/Debug/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll new file mode 100644 index 0000000..92d1ff1 Binary files /dev/null and b/bin/Debug/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll differ diff --git a/bin/Debug/netcoreapp3.1/System.Text.Encoding.CodePages.dll b/bin/Debug/netcoreapp3.1/System.Text.Encoding.CodePages.dll new file mode 100644 index 0000000..e210e3d Binary files /dev/null and b/bin/Debug/netcoreapp3.1/System.Text.Encoding.CodePages.dll differ diff --git a/bin/Debug/netcoreapp3.1/System.Text.Encodings.Web.dll b/bin/Debug/netcoreapp3.1/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..99c130d Binary files /dev/null and b/bin/Debug/netcoreapp3.1/System.Text.Encodings.Web.dll differ diff --git a/bin/Debug/netcoreapp3.1/System.Text.Json.dll b/bin/Debug/netcoreapp3.1/System.Text.Json.dll new file mode 100644 index 0000000..45b6bc0 Binary files /dev/null and b/bin/Debug/netcoreapp3.1/System.Text.Json.dll differ diff --git a/bin/Debug/netcoreapp3.1/rmutr_report.deps.json b/bin/Debug/netcoreapp3.1/rmutr_report.deps.json index 94ea663..4882a5b 100644 --- a/bin/Debug/netcoreapp3.1/rmutr_report.deps.json +++ b/bin/Debug/netcoreapp3.1/rmutr_report.deps.json @@ -32,6 +32,7 @@ "rmutr_report/1.0.0": { "dependencies": { "ClosedXML": "0.96.0", + "EPPlus": "7.2.2", "FastReport.Core": "2021.3.0", "Swashbuckle.AspNetCore": "6.5.0", "Swashbuckle.AspNetCore.Annotations": "6.5.0", @@ -115,14 +116,10 @@ "Microsoft.CSharp.Reference": "4.0.0.0", "Microsoft.Extensions.Caching.Abstractions": "3.1.0.0", "Microsoft.Extensions.Caching.Memory": "3.1.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "3.1.0.0", "Microsoft.Extensions.Configuration.Binder": "3.1.0.0", "Microsoft.Extensions.Configuration.CommandLine": "3.1.0.0", - "Microsoft.Extensions.Configuration": "3.1.0.0", "Microsoft.Extensions.Configuration.EnvironmentVariables": "3.1.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "3.1.0.0", "Microsoft.Extensions.Configuration.Ini": "3.1.0.0", - "Microsoft.Extensions.Configuration.Json": "3.1.0.0", "Microsoft.Extensions.Configuration.KeyPerFile": "3.1.0.0", "Microsoft.Extensions.Configuration.UserSecrets": "3.1.0.0", "Microsoft.Extensions.Configuration.Xml": "3.1.0.0", @@ -130,11 +127,8 @@ "Microsoft.Extensions.DependencyInjection": "3.1.0.0", "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "3.1.0.0", "Microsoft.Extensions.Diagnostics.HealthChecks": "3.1.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "3.1.0.0", "Microsoft.Extensions.FileProviders.Composite": "3.1.0.0", "Microsoft.Extensions.FileProviders.Embedded": "3.1.0.0", - "Microsoft.Extensions.FileProviders.Physical": "3.1.0.0", - "Microsoft.Extensions.FileSystemGlobbing": "3.1.0.0", "Microsoft.Extensions.Hosting.Abstractions": "3.1.0.0", "Microsoft.Extensions.Hosting": "3.1.0.0", "Microsoft.Extensions.Http": "3.1.0.0", @@ -154,7 +148,6 @@ "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.0.0", "Microsoft.Extensions.Options.DataAnnotations": "3.1.0.0", "Microsoft.Extensions.Options": "3.1.0.0", - "Microsoft.Extensions.Primitives": "3.1.0.0", "Microsoft.Extensions.WebEncoders": "3.1.0.0", "Microsoft.JSInterop": "3.1.0.0", "Microsoft.Net.Http.Headers": "3.1.0.0", @@ -165,13 +158,12 @@ "mscorlib": "4.0.0.0", "netstandard": "2.1.0.0", "System.AppContext": "4.2.2.0", - "System.Buffers": "4.0.2.0", + "System.Buffers.Reference": "4.0.2.0", "System.Collections.Concurrent": "4.0.15.0", "System.Collections": "4.1.2.0", "System.Collections.Immutable.Reference": "1.2.5.0", "System.Collections.NonGeneric": "4.1.2.0", "System.Collections.Specialized": "4.1.2.0", - "System.ComponentModel.Annotations": "4.3.1.0", "System.ComponentModel.DataAnnotations": "4.0.0.0", "System.ComponentModel": "4.0.4.0", "System.ComponentModel.EventBasedAsync": "4.1.2.0", @@ -252,7 +244,6 @@ "System.Resources.Reader": "4.1.2.0", "System.Resources.ResourceManager": "4.1.2.0", "System.Resources.Writer": "4.1.2.0", - "System.Runtime.CompilerServices.Unsafe.Reference": "4.0.6.0", "System.Runtime.CompilerServices.VisualC": "4.1.2.0", "System.Runtime": "4.2.2.0", "System.Runtime.Extensions": "4.2.2.0", @@ -271,7 +262,6 @@ "System.Security.AccessControl.Reference": "4.1.1.0", "System.Security.Claims": "4.1.2.0", "System.Security.Cryptography.Algorithms": "4.3.2.0", - "System.Security.Cryptography.Cng.Reference": "4.3.3.0", "System.Security.Cryptography.Csp": "4.1.2.0", "System.Security.Cryptography.Encoding": "4.1.2.0", "System.Security.Cryptography.Primitives": "4.1.2.0", @@ -284,11 +274,8 @@ "System.Security.SecureString": "4.1.2.0", "System.ServiceModel.Web": "4.0.0.0", "System.ServiceProcess": "4.0.0.0", - "System.Text.Encoding.CodePages.Reference": "4.1.3.0", "System.Text.Encoding": "4.1.2.0", "System.Text.Encoding.Extensions": "4.1.2.0", - "System.Text.Encodings.Web": "4.0.5.0", - "System.Text.Json": "4.0.1.0", "System.Text.RegularExpressions": "4.2.2.0", "System.Threading.Channels": "4.0.2.0", "System.Threading": "4.1.2.0", @@ -330,7 +317,7 @@ "DocumentFormat.OpenXml": "2.16.0", "ExcelNumberFormat": "1.1.0", "Microsoft.CSharp": "4.7.0", - "System.Drawing.Common": "4.6.1" + "System.Drawing.Common": "4.7.3" }, "runtime": { "lib/netstandard2.0/ClosedXML.dll": { @@ -356,6 +343,51 @@ "lib/netstandard2.0/DocumentFormat.OpenXml.dll": {} } }, + "EPPlus/7.2.2": { + "dependencies": { + "EPPlus.System.Drawing": "6.1.1", + "Microsoft.Extensions.Configuration.Json": "8.0.0", + "Microsoft.IO.RecyclableMemoryStream": "3.0.0", + "System.ComponentModel.Annotations": "5.0.0", + "System.Security.Cryptography.Pkcs": "8.0.0", + "System.Text.Encoding.CodePages": "8.0.0" + }, + "runtime": { + "lib/netstandard2.1/EPPlus.dll": { + "assemblyVersion": "7.2.2.0", + "fileVersion": "7.2.2.0" + } + }, + "compile": { + "lib/netstandard2.1/EPPlus.dll": {} + } + }, + "EPPlus.Interfaces/6.1.1": { + "runtime": { + "lib/netstandard2.1/EPPlus.Interfaces.dll": { + "assemblyVersion": "6.1.1.0", + "fileVersion": "6.1.1.0" + } + }, + "compile": { + "lib/netstandard2.1/EPPlus.Interfaces.dll": {} + } + }, + "EPPlus.System.Drawing/6.1.1": { + "dependencies": { + "EPPlus.Interfaces": "6.1.1", + "System.Drawing.Common": "4.7.3" + }, + "runtime": { + "lib/netstandard2.1/EPPlus.System.Drawing.dll": { + "assemblyVersion": "6.1.1.0", + "fileVersion": "6.1.1.0" + } + }, + "compile": { + "lib/netstandard2.1/EPPlus.System.Drawing.dll": {} + } + }, "ExcelNumberFormat/1.1.0": { "runtime": { "lib/netstandard2.0/ExcelNumberFormat.dll": { @@ -371,7 +403,7 @@ "dependencies": { "Microsoft.CodeAnalysis.CSharp": "3.3.1", "Microsoft.CodeAnalysis.VisualBasic": "3.3.1", - "System.Drawing.Common": "4.6.1", + "System.Drawing.Common": "4.7.3", "System.Windows.Extensions": "4.6.0" }, "runtimeTargets": { @@ -387,10 +419,10 @@ "dependencies": { "FastReport.Compat": "2021.2.0", "FastReport.DataVisualization": "2021.2.0", - "System.Drawing.Common": "4.6.1", - "System.Security.Cryptography.Pkcs": "4.5.2", + "System.Drawing.Common": "4.7.3", + "System.Security.Cryptography.Pkcs": "8.0.0", "System.Security.Permissions": "4.4.0", - "System.Text.Encoding.CodePages": "4.5.1" + "System.Text.Encoding.CodePages": "8.0.0" }, "runtime": { "lib/netstandard2.1/FastReport.dll": { @@ -406,7 +438,7 @@ "dependencies": { "FastReport.Compat": "2021.2.0", "System.Data.SqlClient": "4.4.3", - "System.Drawing.Common": "4.6.1" + "System.Drawing.Common": "4.7.3" }, "runtimeTargets": { "runtimes/any/lib/netcoreapp3.0/FastReport.DataVisualization.dll": { @@ -417,16 +449,27 @@ } } }, + "Microsoft.Bcl.AsyncInterfaces/8.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + }, + "compile": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.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.Memory": "4.5.3", + "System.Memory": "4.5.5", "System.Reflection.Metadata": "1.6.0", - "System.Runtime.CompilerServices.Unsafe": "4.5.2", - "System.Text.Encoding.CodePages": "4.5.1", - "System.Threading.Tasks.Extensions": "4.5.3" + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encoding.CodePages": "8.0.0", + "System.Threading.Tasks.Extensions": "4.5.4" }, "runtime": { "lib/netstandard2.0/Microsoft.CodeAnalysis.dll": { @@ -591,7 +634,139 @@ }, "Microsoft.CSharp/4.7.0": {}, "Microsoft.Extensions.ApiDescription.Server/6.0.5": {}, - "Microsoft.NETCore.Platforms/3.0.0": {}, + "Microsoft.Extensions.Configuration/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", + "Microsoft.Extensions.FileProviders.Physical": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Json/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", + "System.Text.Json": "8.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Physical/8.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {} + } + }, + "Microsoft.Extensions.FileSystemGlobbing/8.0.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "dependencies": { + "System.Memory": "4.5.5", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.IO.RecyclableMemoryStream/3.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.IO.RecyclableMemoryStream.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.0.0.0" + } + }, + "compile": { + "lib/netstandard2.1/Microsoft.IO.RecyclableMemoryStream.dll": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.9": {}, "Microsoft.OpenApi/1.2.3": { "runtime": { "lib/netstandard2.0/Microsoft.OpenApi.dll": { @@ -605,14 +780,14 @@ }, "Microsoft.Win32.Registry/4.4.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.0.0", + "Microsoft.NETCore.Platforms": "3.1.9", "System.Security.AccessControl": "4.4.0", "System.Security.Principal.Windows": "4.4.0" } }, - "Microsoft.Win32.SystemEvents/4.6.0": { + "Microsoft.Win32.SystemEvents/4.7.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.0.0" + "Microsoft.NETCore.Platforms": "3.1.9" } }, "runtime.native.System.Data.SqlClient.sni/4.4.0": { @@ -710,12 +885,24 @@ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {} } }, + "System.Buffers/4.5.1": {}, "System.Collections.Immutable/1.5.0": {}, + "System.ComponentModel.Annotations/5.0.0": { + "runtime": { + "lib/netstandard2.1/System.ComponentModel.Annotations.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "compile": { + "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {} + } + }, "System.Data.SqlClient/4.4.3": { "dependencies": { "Microsoft.Win32.Registry": "4.4.0", "System.Security.Principal.Windows": "4.4.0", - "System.Text.Encoding.CodePages": "4.5.1", + "System.Text.Encoding.CodePages": "8.0.0", "runtime.native.System.Data.SqlClient.sni": "4.4.0" }, "runtime": { @@ -742,15 +929,44 @@ "ref/netstandard2.0/System.Data.SqlClient.dll": {} } }, - "System.Drawing.Common/4.6.1": { + "System.Drawing.Common/4.7.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.0.0", - "Microsoft.Win32.SystemEvents": "4.6.0" + "Microsoft.NETCore.Platforms": "3.1.9", + "Microsoft.Win32.SystemEvents": "4.7.0" + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.0.2.3", + "fileVersion": "4.700.21.51508" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.3", + "fileVersion": "4.700.21.51508" + } }, "compile": { "ref/netcoreapp3.0/System.Drawing.Common.dll": {} } }, + "System.Formats.Asn1/8.0.0": { + "dependencies": { + "System.Buffers": "4.5.1", + "System.Memory": "4.5.5" + }, + "runtime": { + "lib/netstandard2.0/System.Formats.Asn1.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + }, + "compile": { + "lib/netstandard2.0/System.Formats.Asn1.dll": {} + } + }, "System.IO.Packaging/4.7.0": { "runtime": { "lib/netstandard2.0/System.IO.Packaging.dll": { @@ -762,22 +978,60 @@ "ref/netstandard2.0/System.IO.Packaging.dll": {} } }, - "System.Memory/4.5.3": {}, + "System.Memory/4.5.5": {}, "System.Reflection.Metadata/1.6.0": {}, - "System.Runtime.CompilerServices.Unsafe/4.5.2": {}, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "runtime": { + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "compile": { + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {} + } + }, "System.Security.AccessControl/4.4.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.0.0", + "Microsoft.NETCore.Platforms": "3.1.9", "System.Security.Principal.Windows": "4.4.0" } }, - "System.Security.Cryptography.Cng/4.5.0": {}, - "System.Security.Cryptography.Pkcs/4.5.2": { + "System.Security.Cryptography.Cng/5.0.0": { "dependencies": { - "System.Security.Cryptography.Cng": "4.5.0" + "System.Formats.Asn1": "8.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } }, "compile": { - "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll": {} + "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {} + } + }, + "System.Security.Cryptography.Pkcs/8.0.0": { + "dependencies": { + "System.Formats.Asn1": "8.0.0", + "System.Security.Cryptography.Cng": "5.0.0" + }, + "runtime": { + "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + }, + "compile": { + "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll": {} } }, "System.Security.Permissions/4.4.0": { @@ -787,19 +1041,63 @@ }, "System.Security.Principal.Windows/4.4.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.0.0" + "Microsoft.NETCore.Platforms": "3.1.9" } }, - "System.Text.Encoding.CodePages/4.5.1": { + "System.Text.Encoding.CodePages/8.0.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.0.0", - "System.Runtime.CompilerServices.Unsafe": "4.5.2" + "System.Memory": "4.5.5", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + }, + "compile": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} } }, - "System.Threading.Tasks.Extensions/4.5.3": {}, + "System.Text.Encodings.Web/8.0.0": { + "dependencies": { + "System.Buffers": "4.5.1", + "System.Memory": "4.5.5", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encodings.Web.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + }, + "compile": { + "lib/netstandard2.0/System.Text.Encodings.Web.dll": {} + } + }, + "System.Text.Json/8.0.0": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "8.0.0", + "System.Buffers": "4.5.1", + "System.Memory": "4.5.5", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "8.0.0", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/System.Text.Json.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + }, + "compile": { + "lib/netstandard2.0/System.Text.Json.dll": {} + } + }, + "System.Threading.Tasks.Extensions/4.5.4": {}, "System.Windows.Extensions/4.6.0": { "dependencies": { - "System.Drawing.Common": "4.6.1" + "System.Drawing.Common": "4.7.3" } }, "Microsoft.AspNetCore.Antiforgery/3.1.0.0": { @@ -1282,12 +1580,6 @@ }, "compileOnly": true }, - "Microsoft.Extensions.Configuration.Abstractions/3.1.0.0": { - "compile": { - "Microsoft.Extensions.Configuration.Abstractions.dll": {} - }, - "compileOnly": true - }, "Microsoft.Extensions.Configuration.Binder/3.1.0.0": { "compile": { "Microsoft.Extensions.Configuration.Binder.dll": {} @@ -1300,36 +1592,18 @@ }, "compileOnly": true }, - "Microsoft.Extensions.Configuration/3.1.0.0": { - "compile": { - "Microsoft.Extensions.Configuration.dll": {} - }, - "compileOnly": true - }, "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.0.0": { "compile": { "Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} }, "compileOnly": true }, - "Microsoft.Extensions.Configuration.FileExtensions/3.1.0.0": { - "compile": { - "Microsoft.Extensions.Configuration.FileExtensions.dll": {} - }, - "compileOnly": true - }, "Microsoft.Extensions.Configuration.Ini/3.1.0.0": { "compile": { "Microsoft.Extensions.Configuration.Ini.dll": {} }, "compileOnly": true }, - "Microsoft.Extensions.Configuration.Json/3.1.0.0": { - "compile": { - "Microsoft.Extensions.Configuration.Json.dll": {} - }, - "compileOnly": true - }, "Microsoft.Extensions.Configuration.KeyPerFile/3.1.0.0": { "compile": { "Microsoft.Extensions.Configuration.KeyPerFile.dll": {} @@ -1372,12 +1646,6 @@ }, "compileOnly": true }, - "Microsoft.Extensions.FileProviders.Abstractions/3.1.0.0": { - "compile": { - "Microsoft.Extensions.FileProviders.Abstractions.dll": {} - }, - "compileOnly": true - }, "Microsoft.Extensions.FileProviders.Composite/3.1.0.0": { "compile": { "Microsoft.Extensions.FileProviders.Composite.dll": {} @@ -1390,18 +1658,6 @@ }, "compileOnly": true }, - "Microsoft.Extensions.FileProviders.Physical/3.1.0.0": { - "compile": { - "Microsoft.Extensions.FileProviders.Physical.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Extensions.FileSystemGlobbing/3.1.0.0": { - "compile": { - "Microsoft.Extensions.FileSystemGlobbing.dll": {} - }, - "compileOnly": true - }, "Microsoft.Extensions.Hosting.Abstractions/3.1.0.0": { "compile": { "Microsoft.Extensions.Hosting.Abstractions.dll": {} @@ -1516,12 +1772,6 @@ }, "compileOnly": true }, - "Microsoft.Extensions.Primitives/3.1.0.0": { - "compile": { - "Microsoft.Extensions.Primitives.dll": {} - }, - "compileOnly": true - }, "Microsoft.Extensions.WebEncoders/3.1.0.0": { "compile": { "Microsoft.Extensions.WebEncoders.dll": {} @@ -1582,7 +1832,7 @@ }, "compileOnly": true }, - "System.Buffers/4.0.2.0": { + "System.Buffers.Reference/4.0.2.0": { "compile": { "System.Buffers.dll": {} }, @@ -1618,12 +1868,6 @@ }, "compileOnly": true }, - "System.ComponentModel.Annotations/4.3.1.0": { - "compile": { - "System.ComponentModel.Annotations.dll": {} - }, - "compileOnly": true - }, "System.ComponentModel.DataAnnotations/4.0.0.0": { "compile": { "System.ComponentModel.DataAnnotations.dll": {} @@ -2104,12 +2348,6 @@ }, "compileOnly": true }, - "System.Runtime.CompilerServices.Unsafe.Reference/4.0.6.0": { - "compile": { - "System.Runtime.CompilerServices.Unsafe.dll": {} - }, - "compileOnly": true - }, "System.Runtime.CompilerServices.VisualC/4.1.2.0": { "compile": { "System.Runtime.CompilerServices.VisualC.dll": {} @@ -2218,12 +2456,6 @@ }, "compileOnly": true }, - "System.Security.Cryptography.Cng.Reference/4.3.3.0": { - "compile": { - "System.Security.Cryptography.Cng.dll": {} - }, - "compileOnly": true - }, "System.Security.Cryptography.Csp/4.1.2.0": { "compile": { "System.Security.Cryptography.Csp.dll": {} @@ -2296,12 +2528,6 @@ }, "compileOnly": true }, - "System.Text.Encoding.CodePages.Reference/4.1.3.0": { - "compile": { - "System.Text.Encoding.CodePages.dll": {} - }, - "compileOnly": true - }, "System.Text.Encoding/4.1.2.0": { "compile": { "System.Text.Encoding.dll": {} @@ -2314,18 +2540,6 @@ }, "compileOnly": true }, - "System.Text.Encodings.Web/4.0.5.0": { - "compile": { - "System.Text.Encodings.Web.dll": {} - }, - "compileOnly": true - }, - "System.Text.Json/4.0.1.0": { - "compile": { - "System.Text.Json.dll": {} - }, - "compileOnly": true - }, "System.Text.RegularExpressions/4.2.2.0": { "compile": { "System.Text.RegularExpressions.dll": {} @@ -2516,6 +2730,27 @@ "path": "documentformat.openxml/2.16.0", "hashPath": "documentformat.openxml.2.16.0.nupkg.sha512" }, + "EPPlus/7.2.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gSbODd3UQroSqQ9abC35DjThwdWj7q4Mc8jLJT224CF88112QKDIoUkW7c7iiv4MzbMoWn+Spvu4A1Jszsym6Q==", + "path": "epplus/7.2.2", + "hashPath": "epplus.7.2.2.nupkg.sha512" + }, + "EPPlus.Interfaces/6.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-y7dkrOoE1ZR9Vgy1Jf2rEIaTf3SHlUjYt01NklP+F5Qh7S2ruPbzTcpYLRWMeXiG8XL8h2jqX4CyIkFt3NQGZw==", + "path": "epplus.interfaces/6.1.1", + "hashPath": "epplus.interfaces.6.1.1.nupkg.sha512" + }, + "EPPlus.System.Drawing/6.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lRF5gHYrmkHOOiLMI0t6q8zNYjUrzRgAM5BCXumv5xiqXko8fx3AWI+HCNZfhEqVFGOop+42KfR5GiUcCoyoMw==", + "path": "epplus.system.drawing/6.1.1", + "hashPath": "epplus.system.drawing.6.1.1.nupkg.sha512" + }, "ExcelNumberFormat/1.1.0": { "type": "package", "serviceable": true, @@ -2544,6 +2779,13 @@ "path": "fastreport.datavisualization/2021.2.0", "hashPath": "fastreport.datavisualization.2021.2.0.nupkg.sha512" }, + "Microsoft.Bcl.AsyncInterfaces/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==", + "path": "microsoft.bcl.asyncinterfaces/8.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.8.0.0.nupkg.sha512" + }, "Microsoft.CodeAnalysis.Analyzers/2.9.4": { "type": "package", "serviceable": true, @@ -2586,12 +2828,75 @@ "path": "microsoft.extensions.apidescription.server/6.0.5", "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512" }, - "Microsoft.NETCore.Platforms/3.0.0": { + "Microsoft.Extensions.Configuration/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-TsETIgVJb/AKoYfSP+iCxkuly5d3inZjTdx/ItZLk2CxY85v8083OBS3uai84kK3/baLnS5/b5XGs6zR7SuuHQ==", - "path": "microsoft.netcore.platforms/3.0.0", - "hashPath": "microsoft.netcore.platforms.3.0.0.nupkg.sha512" + "sha512": "sha512-0J/9YNXTMWSZP2p2+nvl8p71zpSwokZXZuJW+VjdErkegAnFdO1XlqtA62SJtgVYHdKu3uPxJHcMR/r35HwFBA==", + "path": "microsoft.extensions.configuration/8.0.0", + "hashPath": "microsoft.extensions.configuration.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==", + "path": "microsoft.extensions.configuration.abstractions/8.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-McP+Lz/EKwvtCv48z0YImw+L1gi1gy5rHhNaNIY2CrjloV+XY8gydT8DjMR6zWeL13AFK+DioVpppwAuO1Gi1w==", + "path": "microsoft.extensions.configuration.fileextensions/8.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-C2wqUoh9OmRL1akaCcKSTmRU8z0kckfImG7zLNI8uyi47Lp+zd5LWAD17waPQEqCz3ioWOCrFUo+JJuoeZLOBw==", + "path": "microsoft.extensions.configuration.json/8.0.0", + "hashPath": "microsoft.extensions.configuration.json.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==", + "path": "microsoft.extensions.fileproviders.abstractions/8.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UboiXxpPUpwulHvIAVE36Knq0VSHaAmfrFkegLyBZeaADuKezJ/AIXYAW8F5GBlGk/VaibN2k/Zn1ca8YAfVdA==", + "path": "microsoft.extensions.fileproviders.physical/8.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OK+670i7esqlQrPjdIKRbsyMCe9g5kSLpRRQGSr4Q58AOYEe/hCnfLZprh7viNisSUUQZmMrbbuDaIrP+V1ebQ==", + "path": "microsoft.extensions.filesystemglobbing/8.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==", + "path": "microsoft.extensions.primitives/8.0.0", + "hashPath": "microsoft.extensions.primitives.8.0.0.nupkg.sha512" + }, + "Microsoft.IO.RecyclableMemoryStream/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-irv0HuqoH8Ig5i2fO+8dmDNdFdsrO+DoQcedwIlb810qpZHBNQHZLW7C/AHBQDgLLpw2T96vmMAy/aE4Yj55Sg==", + "path": "microsoft.io.recyclablememorystream/3.0.0", + "hashPath": "microsoft.io.recyclablememorystream.3.0.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/3.1.9": { + "type": "package", + "serviceable": true, + "sha512": "sha512-e+/BrhryHoMojWlbcPJAFcShpk3JYvsMfrmoM26dnvHARWR6vtmGbfHppZcANVqf7DUBDIRxlZXcWg7v/9e1TQ==", + "path": "microsoft.netcore.platforms/3.1.9", + "hashPath": "microsoft.netcore.platforms.3.1.9.nupkg.sha512" }, "Microsoft.OpenApi/1.2.3": { "type": "package", @@ -2607,12 +2912,12 @@ "path": "microsoft.win32.registry/4.4.0", "hashPath": "microsoft.win32.registry.4.4.0.nupkg.sha512" }, - "Microsoft.Win32.SystemEvents/4.6.0": { + "Microsoft.Win32.SystemEvents/4.7.0": { "type": "package", "serviceable": true, - "sha512": "sha512-Edg+pFW5C8WJb680Za2kTV8TqUi6Ahl/WldRVoOVJ23UQLpDHFspa+umgFjkWZw24ETsU99Cg+ErZz683M4chg==", - "path": "microsoft.win32.systemevents/4.6.0", - "hashPath": "microsoft.win32.systemevents.4.6.0.nupkg.sha512" + "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "path": "microsoft.win32.systemevents/4.7.0", + "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512" }, "runtime.native.System.Data.SqlClient.sni/4.4.0": { "type": "package", @@ -2677,6 +2982,13 @@ "path": "swashbuckle.aspnetcore.swaggerui/6.5.0", "hashPath": "swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512" }, + "System.Buffers/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" + }, "System.Collections.Immutable/1.5.0": { "type": "package", "serviceable": true, @@ -2684,6 +2996,13 @@ "path": "system.collections.immutable/1.5.0", "hashPath": "system.collections.immutable.1.5.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", "serviceable": true, @@ -2691,12 +3010,19 @@ "path": "system.data.sqlclient/4.4.3", "hashPath": "system.data.sqlclient.4.4.3.nupkg.sha512" }, - "System.Drawing.Common/4.6.1": { + "System.Drawing.Common/4.7.3": { "type": "package", "serviceable": true, - "sha512": "sha512-TFAADvBEUhdDb2Lteq/BUeG0J1y7a0GyFdpB8yE/eAcbiN0R5MII1nXExXsrtRZiO8C/L9SozL2wGqkRlhiv6A==", - "path": "system.drawing.common/4.6.1", - "hashPath": "system.drawing.common.4.6.1.nupkg.sha512" + "sha512": "sha512-B3+wwhAeoUQ6KeshWSq3IRLQiMoqPEzSHzyVyxTI/EbYuqIp90lXrRISlip2AF+5tj74ycIVPpnRY4M424HahA==", + "path": "system.drawing.common/4.7.3", + "hashPath": "system.drawing.common.4.7.3.nupkg.sha512" + }, + "System.Formats.Asn1/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AJukBuLoe3QeAF+mfaRKQb2dgyrvt340iMBHYv+VdBzCUM06IxGlvl0o/uPOS7lHnXPN6u8fFRHSHudx5aTi8w==", + "path": "system.formats.asn1/8.0.0", + "hashPath": "system.formats.asn1.8.0.0.nupkg.sha512" }, "System.IO.Packaging/4.7.0": { "type": "package", @@ -2705,12 +3031,12 @@ "path": "system.io.packaging/4.7.0", "hashPath": "system.io.packaging.4.7.0.nupkg.sha512" }, - "System.Memory/4.5.3": { + "System.Memory/4.5.5": { "type": "package", "serviceable": true, - "sha512": "sha512-3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", - "path": "system.memory/4.5.3", - "hashPath": "system.memory.4.5.3.nupkg.sha512" + "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", + "path": "system.memory/4.5.5", + "hashPath": "system.memory.4.5.5.nupkg.sha512" }, "System.Reflection.Metadata/1.6.0": { "type": "package", @@ -2719,12 +3045,12 @@ "path": "system.reflection.metadata/1.6.0", "hashPath": "system.reflection.metadata.1.6.0.nupkg.sha512" }, - "System.Runtime.CompilerServices.Unsafe/4.5.2": { + "System.Runtime.CompilerServices.Unsafe/6.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-wprSFgext8cwqymChhrBLu62LMg/1u92bU+VOwyfBimSPVFXtsNqEWC92Pf9ofzJFlk4IHmJA75EDJn1b2goAQ==", - "path": "system.runtime.compilerservices.unsafe/4.5.2", - "hashPath": "system.runtime.compilerservices.unsafe.4.5.2.nupkg.sha512" + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" }, "System.Security.AccessControl/4.4.0": { "type": "package", @@ -2733,19 +3059,19 @@ "path": "system.security.accesscontrol/4.4.0", "hashPath": "system.security.accesscontrol.4.4.0.nupkg.sha512" }, - "System.Security.Cryptography.Cng/4.5.0": { + "System.Security.Cryptography.Cng/5.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", - "path": "system.security.cryptography.cng/4.5.0", - "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + "sha512": "sha512-jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==", + "path": "system.security.cryptography.cng/5.0.0", + "hashPath": "system.security.cryptography.cng.5.0.0.nupkg.sha512" }, - "System.Security.Cryptography.Pkcs/4.5.2": { + "System.Security.Cryptography.Pkcs/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-lIo52x0AAsZs8r1L58lPXaqN6PP51Z/XJts0kZtbZRNYcMguupxqRGjvc/GoqSKTbYa+aBwbkT4xoqQ7EsfN0A==", - "path": "system.security.cryptography.pkcs/4.5.2", - "hashPath": "system.security.cryptography.pkcs.4.5.2.nupkg.sha512" + "sha512": "sha512-ULmp3xoOwNYjOYp4JZ2NK/6NdTgiN1GQXzVVN1njQ7LOZ0d0B9vyMnhyqbIi9Qw4JXj1JgCsitkTShboHRx7Eg==", + "path": "system.security.cryptography.pkcs/8.0.0", + "hashPath": "system.security.cryptography.pkcs.8.0.0.nupkg.sha512" }, "System.Security.Permissions/4.4.0": { "type": "package", @@ -2761,19 +3087,33 @@ "path": "system.security.principal.windows/4.4.0", "hashPath": "system.security.principal.windows.4.4.0.nupkg.sha512" }, - "System.Text.Encoding.CodePages/4.5.1": { + "System.Text.Encoding.CodePages/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==", - "path": "system.text.encoding.codepages/4.5.1", - "hashPath": "system.text.encoding.codepages.4.5.1.nupkg.sha512" + "sha512": "sha512-OZIsVplFGaVY90G2SbpgU7EnCoOO5pw1t4ic21dBF3/1omrJFpAGoNAVpPyMVOC90/hvgkGG3VFqR13YgZMQfg==", + "path": "system.text.encoding.codepages/8.0.0", + "hashPath": "system.text.encoding.codepages.8.0.0.nupkg.sha512" }, - "System.Threading.Tasks.Extensions/4.5.3": { + "System.Text.Encodings.Web/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-+MvhNtcvIbqmhANyKu91jQnvIRVSTiaOiFNfKWwXGHG48YAb4I/TyH8spsySiPYla7gKal5ZnF3teJqZAximyQ==", - "path": "system.threading.tasks.extensions/4.5.3", - "hashPath": "system.threading.tasks.extensions.4.5.3.nupkg.sha512" + "sha512": "sha512-yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==", + "path": "system.text.encodings.web/8.0.0", + "hashPath": "system.text.encodings.web.8.0.0.nupkg.sha512" + }, + "System.Text.Json/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==", + "path": "system.text.json/8.0.0", + "hashPath": "system.text.json.8.0.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "path": "system.threading.tasks.extensions/4.5.4", + "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" }, "System.Windows.Extensions/4.6.0": { "type": "package", @@ -3182,11 +3522,6 @@ "serviceable": false, "sha512": "" }, - "Microsoft.Extensions.Configuration.Abstractions/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, "Microsoft.Extensions.Configuration.Binder/3.1.0.0": { "type": "referenceassembly", "serviceable": false, @@ -3197,31 +3532,16 @@ "serviceable": false, "sha512": "" }, - "Microsoft.Extensions.Configuration/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "Microsoft.Extensions.Configuration.FileExtensions/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, "Microsoft.Extensions.Configuration.Ini/3.1.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "Microsoft.Extensions.Configuration.Json/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, "Microsoft.Extensions.Configuration.KeyPerFile/3.1.0.0": { "type": "referenceassembly", "serviceable": false, @@ -3257,11 +3577,6 @@ "serviceable": false, "sha512": "" }, - "Microsoft.Extensions.FileProviders.Abstractions/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, "Microsoft.Extensions.FileProviders.Composite/3.1.0.0": { "type": "referenceassembly", "serviceable": false, @@ -3272,16 +3587,6 @@ "serviceable": false, "sha512": "" }, - "Microsoft.Extensions.FileProviders.Physical/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.FileSystemGlobbing/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, "Microsoft.Extensions.Hosting.Abstractions/3.1.0.0": { "type": "referenceassembly", "serviceable": false, @@ -3377,11 +3682,6 @@ "serviceable": false, "sha512": "" }, - "Microsoft.Extensions.Primitives/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, "Microsoft.Extensions.WebEncoders/3.1.0.0": { "type": "referenceassembly", "serviceable": false, @@ -3432,7 +3732,7 @@ "serviceable": false, "sha512": "" }, - "System.Buffers/4.0.2.0": { + "System.Buffers.Reference/4.0.2.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -3462,11 +3762,6 @@ "serviceable": false, "sha512": "" }, - "System.ComponentModel.Annotations/4.3.1.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, "System.ComponentModel.DataAnnotations/4.0.0.0": { "type": "referenceassembly", "serviceable": false, @@ -3867,11 +4162,6 @@ "serviceable": false, "sha512": "" }, - "System.Runtime.CompilerServices.Unsafe.Reference/4.0.6.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, "System.Runtime.CompilerServices.VisualC/4.1.2.0": { "type": "referenceassembly", "serviceable": false, @@ -3962,11 +4252,6 @@ "serviceable": false, "sha512": "" }, - "System.Security.Cryptography.Cng.Reference/4.3.3.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, "System.Security.Cryptography.Csp/4.1.2.0": { "type": "referenceassembly", "serviceable": false, @@ -4027,11 +4312,6 @@ "serviceable": false, "sha512": "" }, - "System.Text.Encoding.CodePages.Reference/4.1.3.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, "System.Text.Encoding/4.1.2.0": { "type": "referenceassembly", "serviceable": false, @@ -4042,16 +4322,6 @@ "serviceable": false, "sha512": "" }, - "System.Text.Encodings.Web/4.0.5.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Text.Json/4.0.1.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, "System.Text.RegularExpressions/4.2.2.0": { "type": "referenceassembly", "serviceable": false, diff --git a/bin/Debug/netcoreapp3.1/rmutr_report.dll b/bin/Debug/netcoreapp3.1/rmutr_report.dll index 6629f8f..00d203a 100644 Binary files a/bin/Debug/netcoreapp3.1/rmutr_report.dll and b/bin/Debug/netcoreapp3.1/rmutr_report.dll differ diff --git a/bin/Debug/netcoreapp3.1/rmutr_report.pdb b/bin/Debug/netcoreapp3.1/rmutr_report.pdb index 0840d49..89d346f 100644 Binary files a/bin/Debug/netcoreapp3.1/rmutr_report.pdb and b/bin/Debug/netcoreapp3.1/rmutr_report.pdb differ diff --git a/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll b/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll new file mode 100644 index 0000000..5f176e3 Binary files /dev/null and b/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll differ diff --git a/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll b/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll new file mode 100644 index 0000000..99aaabe Binary files /dev/null and b/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll differ diff --git a/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll b/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll new file mode 100644 index 0000000..de19c86 Binary files /dev/null and b/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll differ diff --git a/obj/Debug/net5.0/rmutr_report.AssemblyInfo.cs b/obj/Debug/net5.0/rmutr_report.AssemblyInfo.cs index fd8634f..37dd3eb 100644 --- a/obj/Debug/net5.0/rmutr_report.AssemblyInfo.cs +++ b/obj/Debug/net5.0/rmutr_report.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("rmutr_report")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+438286ba8b5971a78baa3b8940d590103c830170")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+41fa5d139899cc18306e905b36a359608ad04928")] [assembly: System.Reflection.AssemblyProductAttribute("rmutr_report")] [assembly: System.Reflection.AssemblyTitleAttribute("rmutr_report")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/obj/Debug/net5.0/rmutr_report.AssemblyInfoInputs.cache b/obj/Debug/net5.0/rmutr_report.AssemblyInfoInputs.cache index ee89432..2d350f5 100644 --- a/obj/Debug/net5.0/rmutr_report.AssemblyInfoInputs.cache +++ b/obj/Debug/net5.0/rmutr_report.AssemblyInfoInputs.cache @@ -1 +1 @@ -0b74fadfa0f1ddcddcc69a25e09f2f20d2bbbedec97a5ba107b0f1ccf9a8585d +b92c5c7fedc5f70a29e89e367583aee2ac12b796317b141207cd395662939416 diff --git a/obj/Debug/net5.0/rmutr_report.assets.cache b/obj/Debug/net5.0/rmutr_report.assets.cache index 5e620ac..400035d 100644 Binary files a/obj/Debug/net5.0/rmutr_report.assets.cache and b/obj/Debug/net5.0/rmutr_report.assets.cache differ diff --git a/obj/Debug/net5.0/rmutr_report.csproj.AssemblyReference.cache b/obj/Debug/net5.0/rmutr_report.csproj.AssemblyReference.cache index ada5f78..f4db848 100644 Binary files a/obj/Debug/net5.0/rmutr_report.csproj.AssemblyReference.cache and b/obj/Debug/net5.0/rmutr_report.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/netcoreapp3.1/rmutr_re.3485F772.Up2Date b/obj/Debug/netcoreapp3.1/rmutr_re.3485F772.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/netcoreapp3.1/rmutr_report.AssemblyInfo.cs b/obj/Debug/netcoreapp3.1/rmutr_report.AssemblyInfo.cs index fd8634f..37dd3eb 100644 --- a/obj/Debug/netcoreapp3.1/rmutr_report.AssemblyInfo.cs +++ b/obj/Debug/netcoreapp3.1/rmutr_report.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("rmutr_report")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+438286ba8b5971a78baa3b8940d590103c830170")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+41fa5d139899cc18306e905b36a359608ad04928")] [assembly: System.Reflection.AssemblyProductAttribute("rmutr_report")] [assembly: System.Reflection.AssemblyTitleAttribute("rmutr_report")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/obj/Debug/netcoreapp3.1/rmutr_report.AssemblyInfoInputs.cache b/obj/Debug/netcoreapp3.1/rmutr_report.AssemblyInfoInputs.cache index ee89432..2d350f5 100644 --- a/obj/Debug/netcoreapp3.1/rmutr_report.AssemblyInfoInputs.cache +++ b/obj/Debug/netcoreapp3.1/rmutr_report.AssemblyInfoInputs.cache @@ -1 +1 @@ -0b74fadfa0f1ddcddcc69a25e09f2f20d2bbbedec97a5ba107b0f1ccf9a8585d +b92c5c7fedc5f70a29e89e367583aee2ac12b796317b141207cd395662939416 diff --git a/obj/Debug/netcoreapp3.1/rmutr_report.RazorTargetAssemblyInfo.cache b/obj/Debug/netcoreapp3.1/rmutr_report.RazorTargetAssemblyInfo.cache index d544be9..9571c37 100644 --- a/obj/Debug/netcoreapp3.1/rmutr_report.RazorTargetAssemblyInfo.cache +++ b/obj/Debug/netcoreapp3.1/rmutr_report.RazorTargetAssemblyInfo.cache @@ -1 +1 @@ -1eedcf7419825c64b7b8057a14ab5041b9352f93f3cfd2f4dd4c8eb43ab3254d +2a44f2b4a8538ca223dc93088d3dc8438b519f5c35f27c5fd6146dc8b03c441c diff --git a/obj/Debug/netcoreapp3.1/rmutr_report.assets.cache b/obj/Debug/netcoreapp3.1/rmutr_report.assets.cache index 1ae82b9..e7f183b 100644 Binary files a/obj/Debug/netcoreapp3.1/rmutr_report.assets.cache and b/obj/Debug/netcoreapp3.1/rmutr_report.assets.cache differ diff --git a/obj/Debug/netcoreapp3.1/rmutr_report.csproj.AssemblyReference.cache b/obj/Debug/netcoreapp3.1/rmutr_report.csproj.AssemblyReference.cache index baa66f1..13170bd 100644 Binary files a/obj/Debug/netcoreapp3.1/rmutr_report.csproj.AssemblyReference.cache and b/obj/Debug/netcoreapp3.1/rmutr_report.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/netcoreapp3.1/rmutr_report.csproj.CoreCompileInputs.cache b/obj/Debug/netcoreapp3.1/rmutr_report.csproj.CoreCompileInputs.cache index 01052d9..e75ed08 100644 --- a/obj/Debug/netcoreapp3.1/rmutr_report.csproj.CoreCompileInputs.cache +++ b/obj/Debug/netcoreapp3.1/rmutr_report.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -8d0a705eb05b7d31a5543fad875abccdcc0dec6fa2790db8f635c6c6cfa76d95 +839c9e7f0873da70dfcac7ef6998ba9642d45b9afb515631acc12aaf50522c14 diff --git a/obj/Debug/netcoreapp3.1/rmutr_report.csproj.FileListAbsolute.txt b/obj/Debug/netcoreapp3.1/rmutr_report.csproj.FileListAbsolute.txt index 2ed12a6..c962586 100644 --- a/obj/Debug/netcoreapp3.1/rmutr_report.csproj.FileListAbsolute.txt +++ b/obj/Debug/netcoreapp3.1/rmutr_report.csproj.FileListAbsolute.txt @@ -265,3 +265,27 @@ D:\RiderProjects\rmutr_report\obj\Debug\netcoreapp3.1\rmutr_report.dll D:\RiderProjects\rmutr_report\obj\Debug\netcoreapp3.1\rmutr_report.xml D:\RiderProjects\rmutr_report\obj\Debug\netcoreapp3.1\rmutr_report.pdb D:\RiderProjects\rmutr_report\obj\Debug\netcoreapp3.1\rmutr_report.genruntimeconfig.cache +D:\RiderProjects\rmutr_report\bin\Debug\netcoreapp3.1\EPPlus.dll +D:\RiderProjects\rmutr_report\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.dll +D:\RiderProjects\rmutr_report\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.Abstractions.dll +D:\RiderProjects\rmutr_report\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.FileExtensions.dll +D:\RiderProjects\rmutr_report\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.Json.dll +D:\RiderProjects\rmutr_report\bin\Debug\netcoreapp3.1\Microsoft.Extensions.FileProviders.Abstractions.dll +D:\RiderProjects\rmutr_report\bin\Debug\netcoreapp3.1\Microsoft.Extensions.FileProviders.Physical.dll +D:\RiderProjects\rmutr_report\bin\Debug\netcoreapp3.1\Microsoft.Extensions.FileSystemGlobbing.dll +D:\RiderProjects\rmutr_report\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Primitives.dll +D:\RiderProjects\rmutr_report\bin\Debug\netcoreapp3.1\Microsoft.IO.RecyclableMemoryStream.dll +D:\RiderProjects\rmutr_report\bin\Debug\netcoreapp3.1\System.Text.Encoding.CodePages.dll +D:\RiderProjects\rmutr_report\bin\Debug\netcoreapp3.1\runtimes\unix\lib\netcoreapp3.0\System.Drawing.Common.dll +D:\RiderProjects\rmutr_report\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp3.0\System.Drawing.Common.dll +D:\RiderProjects\rmutr_report\bin\Debug\netcoreapp3.1\EPPlus.Interfaces.dll +D:\RiderProjects\rmutr_report\bin\Debug\netcoreapp3.1\EPPlus.System.Drawing.dll +D:\RiderProjects\rmutr_report\bin\Debug\netcoreapp3.1\Microsoft.Bcl.AsyncInterfaces.dll +D:\RiderProjects\rmutr_report\bin\Debug\netcoreapp3.1\System.ComponentModel.Annotations.dll +D:\RiderProjects\rmutr_report\bin\Debug\netcoreapp3.1\System.Formats.Asn1.dll +D:\RiderProjects\rmutr_report\bin\Debug\netcoreapp3.1\System.Runtime.CompilerServices.Unsafe.dll +D:\RiderProjects\rmutr_report\bin\Debug\netcoreapp3.1\System.Security.Cryptography.Cng.dll +D:\RiderProjects\rmutr_report\bin\Debug\netcoreapp3.1\System.Security.Cryptography.Pkcs.dll +D:\RiderProjects\rmutr_report\bin\Debug\netcoreapp3.1\System.Text.Encodings.Web.dll +D:\RiderProjects\rmutr_report\bin\Debug\netcoreapp3.1\System.Text.Json.dll +D:\RiderProjects\rmutr_report\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp3.0\System.Security.Cryptography.Cng.dll diff --git a/obj/Debug/netcoreapp3.1/rmutr_report.dll b/obj/Debug/netcoreapp3.1/rmutr_report.dll index 6629f8f..00d203a 100644 Binary files a/obj/Debug/netcoreapp3.1/rmutr_report.dll and b/obj/Debug/netcoreapp3.1/rmutr_report.dll differ diff --git a/obj/Debug/netcoreapp3.1/rmutr_report.pdb b/obj/Debug/netcoreapp3.1/rmutr_report.pdb index 0840d49..89d346f 100644 Binary files a/obj/Debug/netcoreapp3.1/rmutr_report.pdb and b/obj/Debug/netcoreapp3.1/rmutr_report.pdb differ diff --git a/obj/project.assets.json b/obj/project.assets.json index 6c25ad6..e357ac7 100644 --- a/obj/project.assets.json +++ b/obj/project.assets.json @@ -37,6 +37,49 @@ } } }, + "EPPlus/7.2.2": { + "type": "package", + "dependencies": { + "EPPlus.System.Drawing": "6.1.1", + "Microsoft.Extensions.Configuration.Json": "8.0.0", + "Microsoft.IO.RecyclableMemoryStream": "3.0.0", + "System.ComponentModel.Annotations": "5.0.0", + "System.Security.Cryptography.Pkcs": "8.0.0", + "System.Text.Encoding.CodePages": "8.0.0" + }, + "compile": { + "lib/netstandard2.1/EPPlus.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/EPPlus.dll": { + "related": ".xml" + } + } + }, + "EPPlus.Interfaces/6.1.1": { + "type": "package", + "compile": { + "lib/netstandard2.1/EPPlus.Interfaces.dll": {} + }, + "runtime": { + "lib/netstandard2.1/EPPlus.Interfaces.dll": {} + } + }, + "EPPlus.System.Drawing/6.1.1": { + "type": "package", + "dependencies": { + "EPPlus.Interfaces": "6.1.1", + "System.Drawing.Common": "4.7.3" + }, + "compile": { + "lib/netstandard2.1/EPPlus.System.Drawing.dll": {} + }, + "runtime": { + "lib/netstandard2.1/EPPlus.System.Drawing.dll": {} + } + }, "ExcelNumberFormat/1.1.0": { "type": "package", "compile": { @@ -120,6 +163,19 @@ } } }, + "Microsoft.Bcl.AsyncInterfaces/8.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + } + }, "Microsoft.CodeAnalysis.Analyzers/2.9.4": { "type": "package", "build": { @@ -323,7 +379,181 @@ "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {} } }, - "Microsoft.NETCore.Platforms/3.0.0": { + "Microsoft.Extensions.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", + "Microsoft.Extensions.FileProviders.Physical": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.FileExtensions.targets": {} + } + }, + "Microsoft.Extensions.Configuration.Json/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", + "System.Text.Json": "8.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Json.targets": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.FileProviders.Physical/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets": {} + } + }, + "Microsoft.Extensions.FileSystemGlobbing/8.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.5", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets": {} + } + }, + "Microsoft.IO.RecyclableMemoryStream/3.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/Microsoft.IO.RecyclableMemoryStream.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.IO.RecyclableMemoryStream.dll": { + "related": ".xml" + } + } + }, + "Microsoft.NETCore.Platforms/3.1.9": { "type": "package", "compile": { "lib/netstandard1.0/_._": {} @@ -371,10 +601,10 @@ } } }, - "Microsoft.Win32.SystemEvents/4.6.0": { + "Microsoft.Win32.SystemEvents/4.7.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "3.0.0" + "Microsoft.NETCore.Platforms": "3.1.0" }, "compile": { "ref/netstandard2.0/_._": { @@ -507,6 +737,15 @@ "Microsoft.AspNetCore.App" ] }, + "System.Buffers/4.5.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, "System.Collections.Immutable/1.5.0": { "type": "package", "compile": { @@ -520,6 +759,19 @@ } } }, + "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": { "type": "package", "dependencies": { @@ -547,11 +799,11 @@ } } }, - "System.Drawing.Common/4.6.1": { + "System.Drawing.Common/4.7.3": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "3.0.0", - "Microsoft.Win32.SystemEvents": "4.6.0" + "Microsoft.NETCore.Platforms": "3.1.9", + "Microsoft.Win32.SystemEvents": "4.7.0" }, "compile": { "ref/netcoreapp3.0/System.Drawing.Common.dll": { @@ -572,6 +824,26 @@ } } }, + "System.Formats.Asn1/8.0.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.5.1", + "System.Memory": "4.5.5" + }, + "compile": { + "lib/netstandard2.0/System.Formats.Asn1.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Formats.Asn1.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp2.0/System.Formats.Asn1.targets": {} + } + }, "System.IO.Packaging/4.7.0": { "type": "package", "compile": { @@ -585,7 +857,7 @@ } } }, - "System.Memory/4.5.3": { + "System.Memory/4.5.5": { "type": "package", "compile": { "ref/netcoreapp2.1/_._": {} @@ -607,17 +879,20 @@ } } }, - "System.Runtime.CompilerServices.Unsafe/4.5.2": { + "System.Runtime.CompilerServices.Unsafe/6.0.0": { "type": "package", "compile": { - "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": { + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": { "related": ".xml" } }, "runtime": { - "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": { + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": { "related": ".xml" } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} } }, "System.Security.AccessControl/4.4.0": { @@ -645,41 +920,46 @@ } } }, - "System.Security.Cryptography.Cng/4.5.0": { + "System.Security.Cryptography.Cng/5.0.0": { "type": "package", + "dependencies": { + "System.Formats.Asn1": "5.0.0" + }, "compile": { - "ref/netcoreapp2.1/_._": { + "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll": { "related": ".xml" } }, "runtime": { - "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": { + "related": ".xml" + } }, "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": { "assetType": "runtime", "rid": "win" } } }, - "System.Security.Cryptography.Pkcs/4.5.2": { + "System.Security.Cryptography.Pkcs/8.0.0": { "type": "package", "dependencies": { - "System.Security.Cryptography.Cng": "4.5.0" + "System.Formats.Asn1": "8.0.0", + "System.Security.Cryptography.Cng": "5.0.0" }, "compile": { - "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll": { + "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll": { "related": ".xml" } }, "runtime": { - "lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll": { - "assetType": "runtime", - "rid": "win" + "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll": { + "related": ".xml" } + }, + "build": { + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Pkcs.targets": {} } }, "System.Security.Permissions/4.4.0": { @@ -720,26 +1000,72 @@ } } }, - "System.Text.Encoding.CodePages/4.5.1": { + "System.Text.Encoding.CodePages/8.0.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "2.1.2", - "System.Runtime.CompilerServices.Unsafe": "4.5.2" + "System.Memory": "4.5.5", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" }, "compile": { - "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": { + "related": ".xml" + } }, "runtime": { - "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { - "assetType": "runtime", - "rid": "win" + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": { + "related": ".xml" } + }, + "build": { + "buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets": {} } }, - "System.Threading.Tasks.Extensions/4.5.3": { + "System.Text.Encodings.Web/8.0.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.5.1", + "System.Memory": "4.5.5", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets": {} + } + }, + "System.Text.Json/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "8.0.0", + "System.Buffers": "4.5.1", + "System.Memory": "4.5.5", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "8.0.0", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/netstandard2.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp2.0/System.Text.Json.targets": {} + } + }, + "System.Threading.Tasks.Extensions/4.5.4": { "type": "package", "compile": { "ref/netcoreapp2.1/_._": {} @@ -816,6 +1142,75 @@ "lib/netstandard2.0/DocumentFormat.OpenXml.xml" ] }, + "EPPlus/7.2.2": { + "sha512": "gSbODd3UQroSqQ9abC35DjThwdWj7q4Mc8jLJT224CF88112QKDIoUkW7c7iiv4MzbMoWn+Spvu4A1Jszsym6Q==", + "type": "package", + "path": "epplus/7.2.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "EPPlusLogo.png", + "epplus.7.2.2.nupkg.sha512", + "epplus.nuspec", + "lib/net35/EPPlus.dll", + "lib/net35/EPPlus.xml", + "lib/net462/EPPlus.dll", + "lib/net462/EPPlus.xml", + "lib/net6.0/EPPlus.dll", + "lib/net6.0/EPPlus.xml", + "lib/net7.0/EPPlus.dll", + "lib/net7.0/EPPlus.xml", + "lib/net8.0/EPPlus.dll", + "lib/net8.0/EPPlus.xml", + "lib/netstandard2.0/EPPlus.dll", + "lib/netstandard2.0/EPPlus.xml", + "lib/netstandard2.1/EPPlus.dll", + "lib/netstandard2.1/EPPlus.xml", + "license.md", + "readme.md", + "readme.txt" + ] + }, + "EPPlus.Interfaces/6.1.1": { + "sha512": "y7dkrOoE1ZR9Vgy1Jf2rEIaTf3SHlUjYt01NklP+F5Qh7S2ruPbzTcpYLRWMeXiG8XL8h2jqX4CyIkFt3NQGZw==", + "type": "package", + "path": "epplus.interfaces/6.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "EPPlusLogo.png", + "epplus.interfaces.6.1.1.nupkg.sha512", + "epplus.interfaces.nuspec", + "lib/net35/EPPlus.Interfaces.dll", + "lib/net462/EPPlus.Interfaces.dll", + "lib/net6.0/EPPlus.Interfaces.dll", + "lib/net7.0/EPPlus.Interfaces.dll", + "lib/netstandard2.0/EPPlus.Interfaces.dll", + "lib/netstandard2.1/EPPlus.Interfaces.dll", + "license.md", + "readme.md" + ] + }, + "EPPlus.System.Drawing/6.1.1": { + "sha512": "lRF5gHYrmkHOOiLMI0t6q8zNYjUrzRgAM5BCXumv5xiqXko8fx3AWI+HCNZfhEqVFGOop+42KfR5GiUcCoyoMw==", + "type": "package", + "path": "epplus.system.drawing/6.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "EPPlusLogo.png", + "epplus.system.drawing.6.1.1.nupkg.sha512", + "epplus.system.drawing.nuspec", + "lib/net35/EPPlus.System.Drawing.dll", + "lib/net462/EPPlus.System.Drawing.dll", + "lib/net6.0/EPPlus.System.Drawing.dll", + "lib/net7.0/EPPlus.System.Drawing.dll", + "lib/netstandard2.0/EPPlus.System.Drawing.dll", + "lib/netstandard2.1/EPPlus.System.Drawing.dll", + "license.md", + "readme.md" + ] + }, "ExcelNumberFormat/1.1.0": { "sha512": "R3BVHPs9O+RkExbZYTGT0+9HLbi8ZrNij1Yziyw6znd3J7P3uoIR07uwTLGOogtz1p6+0sna66eBoXu7tBiVQA==", "type": "package", @@ -894,6 +1289,30 @@ "runtimes/any/lib/netcoreapp3.0/FastReport.DataVisualization.dll" ] }, + "Microsoft.Bcl.AsyncInterfaces/8.0.0": { + "sha512": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==", + "type": "package", + "path": "microsoft.bcl.asyncinterfaces/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Bcl.AsyncInterfaces.targets", + "buildTransitive/net462/_._", + "lib/net462/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/net462/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", + "microsoft.bcl.asyncinterfaces.8.0.0.nupkg.sha512", + "microsoft.bcl.asyncinterfaces.nuspec", + "useSharedDesignerContext.txt" + ] + }, "Microsoft.CodeAnalysis.Analyzers/2.9.4": { "sha512": "alIJhS0VUg/7x5AsHEoovh/wRZ0RfCSS7k5pDSqpRLTyuMTtRgj6OJJPRApRhJHOGYYsLakf1hKeXFoDwKwNkg==", "type": "package", @@ -1349,17 +1768,276 @@ "tools/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll" ] }, - "Microsoft.NETCore.Platforms/3.0.0": { - "sha512": "TsETIgVJb/AKoYfSP+iCxkuly5d3inZjTdx/ItZLk2CxY85v8083OBS3uai84kK3/baLnS5/b5XGs6zR7SuuHQ==", + "Microsoft.Extensions.Configuration/8.0.0": { + "sha512": "0J/9YNXTMWSZP2p2+nvl8p71zpSwokZXZuJW+VjdErkegAnFdO1XlqtA62SJtgVYHdKu3uPxJHcMR/r35HwFBA==", "type": "package", - "path": "microsoft.netcore.platforms/3.0.0", + "path": "microsoft.extensions.configuration/8.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets", + "lib/net462/Microsoft.Extensions.Configuration.dll", + "lib/net462/Microsoft.Extensions.Configuration.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", + "microsoft.extensions.configuration.8.0.0.nupkg.sha512", + "microsoft.extensions.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "sha512": "3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net8.0/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.8.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.FileExtensions/8.0.0": { + "sha512": "McP+Lz/EKwvtCv48z0YImw+L1gi1gy5rHhNaNIY2CrjloV+XY8gydT8DjMR6zWeL13AFK+DioVpppwAuO1Gi1w==", + "type": "package", + "path": "microsoft.extensions.configuration.fileextensions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.FileExtensions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.FileExtensions.targets", + "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "microsoft.extensions.configuration.fileextensions.8.0.0.nupkg.sha512", + "microsoft.extensions.configuration.fileextensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Json/8.0.0": { + "sha512": "C2wqUoh9OmRL1akaCcKSTmRU8z0kckfImG7zLNI8uyi47Lp+zd5LWAD17waPQEqCz3ioWOCrFUo+JJuoeZLOBw==", + "type": "package", + "path": "microsoft.extensions.configuration.json/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Json.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Json.targets", + "lib/net462/Microsoft.Extensions.Configuration.Json.dll", + "lib/net462/Microsoft.Extensions.Configuration.Json.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml", + "microsoft.extensions.configuration.json.8.0.0.nupkg.sha512", + "microsoft.extensions.configuration.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": { + "sha512": "ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.FileProviders.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets", + "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Physical/8.0.0": { + "sha512": "UboiXxpPUpwulHvIAVE36Knq0VSHaAmfrFkegLyBZeaADuKezJ/AIXYAW8F5GBlGk/VaibN2k/Zn1ca8YAfVdA==", + "type": "package", + "path": "microsoft.extensions.fileproviders.physical/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.FileProviders.Physical.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets", + "lib/net462/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net462/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/net7.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net7.0/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml", + "microsoft.extensions.fileproviders.physical.8.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.physical.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileSystemGlobbing/8.0.0": { + "sha512": "OK+670i7esqlQrPjdIKRbsyMCe9g5kSLpRRQGSr4Q58AOYEe/hCnfLZprh7viNisSUUQZmMrbbuDaIrP+V1ebQ==", + "type": "package", + "path": "microsoft.extensions.filesystemglobbing/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.FileSystemGlobbing.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets", + "lib/net462/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net462/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "microsoft.extensions.filesystemglobbing.8.0.0.nupkg.sha512", + "microsoft.extensions.filesystemglobbing.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "sha512": "bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==", + "type": "package", + "path": "microsoft.extensions.primitives/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/net7.0/Microsoft.Extensions.Primitives.dll", + "lib/net7.0/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.8.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.IO.RecyclableMemoryStream/3.0.0": { + "sha512": "irv0HuqoH8Ig5i2fO+8dmDNdFdsrO+DoQcedwIlb810qpZHBNQHZLW7C/AHBQDgLLpw2T96vmMAy/aE4Yj55Sg==", + "type": "package", + "path": "microsoft.io.recyclablememorystream/3.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll", + "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.xml", + "lib/netstandard2.0/Microsoft.IO.RecyclableMemoryStream.dll", + "lib/netstandard2.0/Microsoft.IO.RecyclableMemoryStream.xml", + "lib/netstandard2.1/Microsoft.IO.RecyclableMemoryStream.dll", + "lib/netstandard2.1/Microsoft.IO.RecyclableMemoryStream.xml", + "microsoft.io.recyclablememorystream.3.0.0.nupkg.sha512", + "microsoft.io.recyclablememorystream.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/3.1.9": { + "sha512": "e+/BrhryHoMojWlbcPJAFcShpk3JYvsMfrmoM26dnvHARWR6vtmGbfHppZcANVqf7DUBDIRxlZXcWg7v/9e1TQ==", + "type": "package", + "path": "microsoft.netcore.platforms/3.1.9", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", "LICENSE.TXT", "THIRD-PARTY-NOTICES.TXT", "lib/netstandard1.0/_._", - "microsoft.netcore.platforms.3.0.0.nupkg.sha512", + "microsoft.netcore.platforms.3.1.9.nupkg.sha512", "microsoft.netcore.platforms.nuspec", "runtime.json", "useSharedDesignerContext.txt", @@ -1423,10 +2101,10 @@ "version.txt" ] }, - "Microsoft.Win32.SystemEvents/4.6.0": { - "sha512": "Edg+pFW5C8WJb680Za2kTV8TqUi6Ahl/WldRVoOVJ23UQLpDHFspa+umgFjkWZw24ETsU99Cg+ErZz683M4chg==", + "Microsoft.Win32.SystemEvents/4.7.0": { + "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", "type": "package", - "path": "microsoft.win32.systemevents/4.6.0", + "path": "microsoft.win32.systemevents/4.7.0", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -1436,7 +2114,7 @@ "lib/net461/Microsoft.Win32.SystemEvents.xml", "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", - "microsoft.win32.systemevents.4.6.0.nupkg.sha512", + "microsoft.win32.systemevents.4.7.0.nupkg.sha512", "microsoft.win32.systemevents.nuspec", "ref/net461/Microsoft.Win32.SystemEvents.dll", "ref/net461/Microsoft.Win32.SystemEvents.xml", @@ -1627,6 +2305,37 @@ "swashbuckle.aspnetcore.swaggerui.nuspec" ] }, + "System.Buffers/4.5.1": { + "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "type": "package", + "path": "system.buffers/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Buffers.dll", + "lib/net461/System.Buffers.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.1/System.Buffers.dll", + "lib/netstandard1.1/System.Buffers.xml", + "lib/netstandard2.0/System.Buffers.dll", + "lib/netstandard2.0/System.Buffers.xml", + "lib/uap10.0.16299/_._", + "ref/net45/System.Buffers.dll", + "ref/net45/System.Buffers.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.1/System.Buffers.dll", + "ref/netstandard1.1/System.Buffers.xml", + "ref/netstandard2.0/System.Buffers.dll", + "ref/netstandard2.0/System.Buffers.xml", + "ref/uap10.0.16299/_._", + "system.buffers.4.5.1.nupkg.sha512", + "system.buffers.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, "System.Collections.Immutable/1.5.0": { "sha512": "EXKiDFsChZW0RjrZ4FYHu9aW6+P4MCgEDCklsVseRfhoO0F+dXeMSsMRAlVXIo06kGJ/zv+2w1a2uc2+kxxSaQ==", "type": "package", @@ -1650,6 +2359,96 @@ "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", @@ -1718,13 +2517,14 @@ "version.txt" ] }, - "System.Drawing.Common/4.6.1": { - "sha512": "TFAADvBEUhdDb2Lteq/BUeG0J1y7a0GyFdpB8yE/eAcbiN0R5MII1nXExXsrtRZiO8C/L9SozL2wGqkRlhiv6A==", + "System.Drawing.Common/4.7.3": { + "sha512": "B3+wwhAeoUQ6KeshWSq3IRLQiMoqPEzSHzyVyxTI/EbYuqIp90lXrRISlip2AF+5tj74ycIVPpnRY4M424HahA==", "type": "package", - "path": "system.drawing.common/4.6.1", + "path": "system.drawing.common/4.7.3", "files": [ ".nupkg.metadata", ".signature.p7s", + "Icon.png", "LICENSE.TXT", "THIRD-PARTY-NOTICES.TXT", "lib/MonoAndroid10/_._", @@ -1751,12 +2551,41 @@ "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll", "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll", "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml", - "system.drawing.common.4.6.1.nupkg.sha512", + "system.drawing.common.4.7.3.nupkg.sha512", "system.drawing.common.nuspec", "useSharedDesignerContext.txt", "version.txt" ] }, + "System.Formats.Asn1/8.0.0": { + "sha512": "AJukBuLoe3QeAF+mfaRKQb2dgyrvt340iMBHYv+VdBzCUM06IxGlvl0o/uPOS7lHnXPN6u8fFRHSHudx5aTi8w==", + "type": "package", + "path": "system.formats.asn1/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Formats.Asn1.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Formats.Asn1.targets", + "lib/net462/System.Formats.Asn1.dll", + "lib/net462/System.Formats.Asn1.xml", + "lib/net6.0/System.Formats.Asn1.dll", + "lib/net6.0/System.Formats.Asn1.xml", + "lib/net7.0/System.Formats.Asn1.dll", + "lib/net7.0/System.Formats.Asn1.xml", + "lib/net8.0/System.Formats.Asn1.dll", + "lib/net8.0/System.Formats.Asn1.xml", + "lib/netstandard2.0/System.Formats.Asn1.dll", + "lib/netstandard2.0/System.Formats.Asn1.xml", + "system.formats.asn1.8.0.0.nupkg.sha512", + "system.formats.asn1.nuspec", + "useSharedDesignerContext.txt" + ] + }, "System.IO.Packaging/4.7.0": { "sha512": "9VV4KAbgRQZ79iEoG40KIeZy38O30oWwewScAST879+oki8g/Wa2HXZQgrhDDxQM4GkP1PnRJll05NMiVPbYAw==", "type": "package", @@ -1784,22 +2613,24 @@ "version.txt" ] }, - "System.Memory/4.5.3": { - "sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", + "System.Memory/4.5.5": { + "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", "type": "package", - "path": "system.memory/4.5.3", + "path": "system.memory/4.5.5", "files": [ ".nupkg.metadata", ".signature.p7s", "LICENSE.TXT", "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Memory.dll", + "lib/net461/System.Memory.xml", "lib/netcoreapp2.1/_._", "lib/netstandard1.1/System.Memory.dll", "lib/netstandard1.1/System.Memory.xml", "lib/netstandard2.0/System.Memory.dll", "lib/netstandard2.0/System.Memory.xml", "ref/netcoreapp2.1/_._", - "system.memory.4.5.3.nupkg.sha512", + "system.memory.4.5.5.nupkg.sha512", "system.memory.nuspec", "useSharedDesignerContext.txt", "version.txt" @@ -1826,29 +2657,29 @@ "version.txt" ] }, - "System.Runtime.CompilerServices.Unsafe/4.5.2": { - "sha512": "wprSFgext8cwqymChhrBLu62LMg/1u92bU+VOwyfBimSPVFXtsNqEWC92Pf9ofzJFlk4IHmJA75EDJn1b2goAQ==", + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", "type": "package", - "path": "system.runtime.compilerservices.unsafe/4.5.2", + "path": "system.runtime.compilerservices.unsafe/6.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", + "Icon.png", "LICENSE.TXT", "THIRD-PARTY-NOTICES.TXT", - "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll", - "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml", - "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", - "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", - "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", - "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", - "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", - "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", - "system.runtime.compilerservices.unsafe.4.5.2.nupkg.sha512", + "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", "system.runtime.compilerservices.unsafe.nuspec", - "useSharedDesignerContext.txt", - "version.txt" + "useSharedDesignerContext.txt" ] }, "System.Security.AccessControl/4.4.0": { @@ -1891,26 +2722,35 @@ "version.txt" ] }, - "System.Security.Cryptography.Cng/4.5.0": { - "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "System.Security.Cryptography.Cng/5.0.0": { + "sha512": "jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==", "type": "package", - "path": "system.security.cryptography.cng/4.5.0", + "path": "system.security.cryptography.cng/5.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", + "Icon.png", "LICENSE.TXT", "THIRD-PARTY-NOTICES.TXT", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/System.Security.Cryptography.Cng.dll", "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.xml", "lib/net462/System.Security.Cryptography.Cng.dll", + "lib/net462/System.Security.Cryptography.Cng.xml", "lib/net47/System.Security.Cryptography.Cng.dll", + "lib/net47/System.Security.Cryptography.Cng.xml", "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml", "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.xml", + "lib/netstandard2.1/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.1/System.Security.Cryptography.Cng.xml", "lib/uap10.0.16299/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", @@ -1929,11 +2769,15 @@ "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp3.0/System.Security.Cryptography.Cng.xml", "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", + "ref/netstandard2.1/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.1/System.Security.Cryptography.Cng.xml", "ref/uap10.0.16299/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", @@ -1941,50 +2785,59 @@ "ref/xamarinwatchos10/_._", "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.xml", "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.xml", "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.xml", "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml", "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", "runtimes/win/lib/uap10.0.16299/_._", - "system.security.cryptography.cng.4.5.0.nupkg.sha512", + "system.security.cryptography.cng.5.0.0.nupkg.sha512", "system.security.cryptography.cng.nuspec", "useSharedDesignerContext.txt", "version.txt" ] }, - "System.Security.Cryptography.Pkcs/4.5.2": { - "sha512": "lIo52x0AAsZs8r1L58lPXaqN6PP51Z/XJts0kZtbZRNYcMguupxqRGjvc/GoqSKTbYa+aBwbkT4xoqQ7EsfN0A==", + "System.Security.Cryptography.Pkcs/8.0.0": { + "sha512": "ULmp3xoOwNYjOYp4JZ2NK/6NdTgiN1GQXzVVN1njQ7LOZ0d0B9vyMnhyqbIi9Qw4JXj1JgCsitkTShboHRx7Eg==", "type": "package", - "path": "system.security.cryptography.pkcs/4.5.2", + "path": "system.security.cryptography.pkcs/8.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", + "Icon.png", "LICENSE.TXT", "THIRD-PARTY-NOTICES.TXT", - "lib/net46/System.Security.Cryptography.Pkcs.dll", - "lib/net461/System.Security.Cryptography.Pkcs.dll", - "lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll", - "lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll", + "buildTransitive/net461/System.Security.Cryptography.Pkcs.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Pkcs.targets", + "lib/net462/System.Security.Cryptography.Pkcs.dll", + "lib/net462/System.Security.Cryptography.Pkcs.xml", + "lib/net6.0/System.Security.Cryptography.Pkcs.dll", + "lib/net6.0/System.Security.Cryptography.Pkcs.xml", + "lib/net7.0/System.Security.Cryptography.Pkcs.dll", + "lib/net7.0/System.Security.Cryptography.Pkcs.xml", + "lib/net8.0/System.Security.Cryptography.Pkcs.dll", + "lib/net8.0/System.Security.Cryptography.Pkcs.xml", "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", - "ref/net46/System.Security.Cryptography.Pkcs.dll", - "ref/net461/System.Security.Cryptography.Pkcs.dll", - "ref/net461/System.Security.Cryptography.Pkcs.xml", - "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll", - "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.xml", - "ref/netstandard1.3/System.Security.Cryptography.Pkcs.dll", - "ref/netstandard2.0/System.Security.Cryptography.Pkcs.dll", - "ref/netstandard2.0/System.Security.Cryptography.Pkcs.xml", - "runtimes/win/lib/net46/System.Security.Cryptography.Pkcs.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll", - "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll", - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll", - "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", - "system.security.cryptography.pkcs.4.5.2.nupkg.sha512", + "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml", + "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net7.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net7.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net8.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net8.0/System.Security.Cryptography.Pkcs.xml", + "system.security.cryptography.pkcs.8.0.0.nupkg.sha512", "system.security.cryptography.pkcs.nuspec", - "useSharedDesignerContext.txt", - "version.txt" + "useSharedDesignerContext.txt" ] }, "System.Security.Permissions/4.4.0": { @@ -2046,45 +2899,160 @@ "version.txt" ] }, - "System.Text.Encoding.CodePages/4.5.1": { - "sha512": "4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==", + "System.Text.Encoding.CodePages/8.0.0": { + "sha512": "OZIsVplFGaVY90G2SbpgU7EnCoOO5pw1t4ic21dBF3/1omrJFpAGoNAVpPyMVOC90/hvgkGG3VFqR13YgZMQfg==", "type": "package", - "path": "system.text.encoding.codepages/4.5.1", + "path": "system.text.encoding.codepages/8.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", + "Icon.png", "LICENSE.TXT", + "PACKAGE.md", "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Text.Encoding.CodePages.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", - "lib/net46/System.Text.Encoding.CodePages.dll", - "lib/net461/System.Text.Encoding.CodePages.dll", - "lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "lib/net462/System.Text.Encoding.CodePages.dll", + "lib/net462/System.Text.Encoding.CodePages.xml", + "lib/net6.0/System.Text.Encoding.CodePages.dll", + "lib/net6.0/System.Text.Encoding.CodePages.xml", + "lib/net7.0/System.Text.Encoding.CodePages.dll", + "lib/net7.0/System.Text.Encoding.CodePages.xml", + "lib/net8.0/System.Text.Encoding.CodePages.dll", + "lib/net8.0/System.Text.Encoding.CodePages.xml", "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.xml", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "lib/xamarintvos10/_._", "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", - "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll", - "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", - "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", - "system.text.encoding.codepages.4.5.1.nupkg.sha512", + "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/net7.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net7.0/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/net8.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net8.0/System.Text.Encoding.CodePages.xml", + "system.text.encoding.codepages.8.0.0.nupkg.sha512", "system.text.encoding.codepages.nuspec", - "useSharedDesignerContext.txt", - "version.txt" + "useSharedDesignerContext.txt" ] }, - "System.Threading.Tasks.Extensions/4.5.3": { - "sha512": "+MvhNtcvIbqmhANyKu91jQnvIRVSTiaOiFNfKWwXGHG48YAb4I/TyH8spsySiPYla7gKal5ZnF3teJqZAximyQ==", + "System.Text.Encodings.Web/8.0.0": { + "sha512": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==", "type": "package", - "path": "system.threading.tasks.extensions/4.5.3", + "path": "system.text.encodings.web/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Text.Encodings.Web.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "lib/net462/System.Text.Encodings.Web.dll", + "lib/net462/System.Text.Encodings.Web.xml", + "lib/net6.0/System.Text.Encodings.Web.dll", + "lib/net6.0/System.Text.Encodings.Web.xml", + "lib/net7.0/System.Text.Encodings.Web.dll", + "lib/net7.0/System.Text.Encodings.Web.xml", + "lib/net8.0/System.Text.Encodings.Web.dll", + "lib/net8.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.8.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/8.0.0": { + "sha512": "OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==", + "type": "package", + "path": "system.text.json/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "buildTransitive/net461/System.Text.Json.targets", + "buildTransitive/net462/System.Text.Json.targets", + "buildTransitive/net6.0/System.Text.Json.targets", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netstandard2.0/System.Text.Json.targets", + "lib/net462/System.Text.Json.dll", + "lib/net462/System.Text.Json.xml", + "lib/net6.0/System.Text.Json.dll", + "lib/net6.0/System.Text.Json.xml", + "lib/net7.0/System.Text.Json.dll", + "lib/net7.0/System.Text.Json.xml", + "lib/net8.0/System.Text.Json.dll", + "lib/net8.0/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.8.0.0.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.4", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -2092,6 +3060,8 @@ "THIRD-PARTY-NOTICES.TXT", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", + "lib/net461/System.Threading.Tasks.Extensions.dll", + "lib/net461/System.Threading.Tasks.Extensions.xml", "lib/netcoreapp2.1/_._", "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", @@ -2110,7 +3080,7 @@ "ref/xamarinmac20/_._", "ref/xamarintvos10/_._", "ref/xamarinwatchos10/_._", - "system.threading.tasks.extensions.4.5.3.nupkg.sha512", + "system.threading.tasks.extensions.4.5.4.nupkg.sha512", "system.threading.tasks.extensions.nuspec", "useSharedDesignerContext.txt", "version.txt" @@ -2141,6 +3111,7 @@ "projectFileDependencyGroups": { "net5.0": [ "ClosedXML >= 0.96.0", + "EPPlus >= 7.2.2", "FastReport.Core >= 2021.3.0", "Swashbuckle.AspNetCore >= 6.5.0", "Swashbuckle.AspNetCore.Annotations >= 6.5.0" @@ -2191,6 +3162,10 @@ "target": "Package", "version": "[0.96.0, )" }, + "EPPlus": { + "target": "Package", + "version": "[7.2.2, )" + }, "FastReport.Core": { "target": "Package", "version": "[2021.3.0, )" diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache index be39e65..02ad2e3 100644 --- a/obj/project.nuget.cache +++ b/obj/project.nuget.cache @@ -1,25 +1,38 @@ { "version": 2, - "dgSpecHash": "16tUroaUnyk5DfcJ5uBUBqnWQdJVLseeVEqVv/Cyf3Fb6M56ufMMvsiWe4T15e3sdaOLJ3FAzeg9i1qBG2/6Jg==", + "dgSpecHash": "imHgriiCjMHjV66Gbxeii1xTKkLhG/eM4BKxf1zGc+fEecF8EUG2gv4LvD8fsrpHzLumpjV9tPWp8quqGklCvQ==", "success": true, "projectFilePath": "D:\\RiderProjects\\rmutr_report\\rmutr_report.csproj", "expectedPackageFiles": [ "C:\\Users\\USER\\.nuget\\packages\\closedxml\\0.96.0\\closedxml.0.96.0.nupkg.sha512", "C:\\Users\\USER\\.nuget\\packages\\documentformat.openxml\\2.16.0\\documentformat.openxml.2.16.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\epplus\\7.2.2\\epplus.7.2.2.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\epplus.interfaces\\6.1.1\\epplus.interfaces.6.1.1.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\epplus.system.drawing\\6.1.1\\epplus.system.drawing.6.1.1.nupkg.sha512", "C:\\Users\\USER\\.nuget\\packages\\excelnumberformat\\1.1.0\\excelnumberformat.1.1.0.nupkg.sha512", "C:\\Users\\USER\\.nuget\\packages\\fastreport.compat\\2021.2.0\\fastreport.compat.2021.2.0.nupkg.sha512", "C:\\Users\\USER\\.nuget\\packages\\fastreport.core\\2021.3.0\\fastreport.core.2021.3.0.nupkg.sha512", "C:\\Users\\USER\\.nuget\\packages\\fastreport.datavisualization\\2021.2.0\\fastreport.datavisualization.2021.2.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\8.0.0\\microsoft.bcl.asyncinterfaces.8.0.0.nupkg.sha512", "C:\\Users\\USER\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\2.9.4\\microsoft.codeanalysis.analyzers.2.9.4.nupkg.sha512", "C:\\Users\\USER\\.nuget\\packages\\microsoft.codeanalysis.common\\3.3.1\\microsoft.codeanalysis.common.3.3.1.nupkg.sha512", "C:\\Users\\USER\\.nuget\\packages\\microsoft.codeanalysis.csharp\\3.3.1\\microsoft.codeanalysis.csharp.3.3.1.nupkg.sha512", "C:\\Users\\USER\\.nuget\\packages\\microsoft.codeanalysis.visualbasic\\3.3.1\\microsoft.codeanalysis.visualbasic.3.3.1.nupkg.sha512", "C:\\Users\\USER\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", "C:\\Users\\USER\\.nuget\\packages\\microsoft.extensions.apidescription.server\\6.0.5\\microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\microsoft.netcore.platforms\\3.0.0\\microsoft.netcore.platforms.3.0.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\microsoft.extensions.configuration\\8.0.0\\microsoft.extensions.configuration.8.0.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\8.0.0\\microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\8.0.0\\microsoft.extensions.configuration.fileextensions.8.0.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\microsoft.extensions.configuration.json\\8.0.0\\microsoft.extensions.configuration.json.8.0.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\8.0.0\\microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\8.0.0\\microsoft.extensions.fileproviders.physical.8.0.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\8.0.0\\microsoft.extensions.filesystemglobbing.8.0.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\microsoft.extensions.primitives\\8.0.0\\microsoft.extensions.primitives.8.0.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\microsoft.io.recyclablememorystream\\3.0.0\\microsoft.io.recyclablememorystream.3.0.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.9\\microsoft.netcore.platforms.3.1.9.nupkg.sha512", "C:\\Users\\USER\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512", "C:\\Users\\USER\\.nuget\\packages\\microsoft.win32.registry\\4.4.0\\microsoft.win32.registry.4.4.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\microsoft.win32.systemevents\\4.6.0\\microsoft.win32.systemevents.4.6.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\microsoft.win32.systemevents\\4.7.0\\microsoft.win32.systemevents.4.7.0.nupkg.sha512", "C:\\Users\\USER\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", "C:\\Users\\USER\\.nuget\\packages\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", "C:\\Users\\USER\\.nuget\\packages\\runtime.win-x64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", @@ -29,20 +42,25 @@ "C:\\Users\\USER\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.5.0\\swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512", "C:\\Users\\USER\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.5.0\\swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512", "C:\\Users\\USER\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.5.0\\swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512", "C:\\Users\\USER\\.nuget\\packages\\system.collections.immutable\\1.5.0\\system.collections.immutable.1.5.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", "C:\\Users\\USER\\.nuget\\packages\\system.data.sqlclient\\4.4.3\\system.data.sqlclient.4.4.3.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.drawing.common\\4.6.1\\system.drawing.common.4.6.1.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.drawing.common\\4.7.3\\system.drawing.common.4.7.3.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.formats.asn1\\8.0.0\\system.formats.asn1.8.0.0.nupkg.sha512", "C:\\Users\\USER\\.nuget\\packages\\system.io.packaging\\4.7.0\\system.io.packaging.4.7.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.memory\\4.5.3\\system.memory.4.5.3.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.memory\\4.5.5\\system.memory.4.5.5.nupkg.sha512", "C:\\Users\\USER\\.nuget\\packages\\system.reflection.metadata\\1.6.0\\system.reflection.metadata.1.6.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\4.5.2\\system.runtime.compilerservices.unsafe.4.5.2.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", "C:\\Users\\USER\\.nuget\\packages\\system.security.accesscontrol\\4.4.0\\system.security.accesscontrol.4.4.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.security.cryptography.pkcs\\4.5.2\\system.security.cryptography.pkcs.4.5.2.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.security.cryptography.cng\\5.0.0\\system.security.cryptography.cng.5.0.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.security.cryptography.pkcs\\8.0.0\\system.security.cryptography.pkcs.8.0.0.nupkg.sha512", "C:\\Users\\USER\\.nuget\\packages\\system.security.permissions\\4.4.0\\system.security.permissions.4.4.0.nupkg.sha512", "C:\\Users\\USER\\.nuget\\packages\\system.security.principal.windows\\4.4.0\\system.security.principal.windows.4.4.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.text.encoding.codepages\\4.5.1\\system.text.encoding.codepages.4.5.1.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.3\\system.threading.tasks.extensions.4.5.3.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.text.encoding.codepages\\8.0.0\\system.text.encoding.codepages.8.0.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.text.encodings.web\\8.0.0\\system.text.encodings.web.8.0.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.text.json\\8.0.0\\system.text.json.8.0.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", "C:\\Users\\USER\\.nuget\\packages\\system.windows.extensions\\4.6.0\\system.windows.extensions.4.6.0.nupkg.sha512" ], "logs": [] diff --git a/obj/project.packagespec.json b/obj/project.packagespec.json index 229d553..b021ede 100644 --- a/obj/project.packagespec.json +++ b/obj/project.packagespec.json @@ -1 +1 @@ -"restore":{"projectUniqueName":"D:\\RiderProjects\\rmutr_report\\rmutr_report.csproj","projectName":"rmutr_report","projectPath":"D:\\RiderProjects\\rmutr_report\\rmutr_report.csproj","outputPath":"D:\\RiderProjects\\rmutr_report\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net5.0"],"sources":{"https://api.nuget.org/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, )"},"FastReport.Core":{"target":"Package","version":"[2021.3.0, )"},"Swashbuckle.AspNetCore":{"target":"Package","version":"[6.5.0, )"},"Swashbuckle.AspNetCore.Annotations":{"target":"Package","version":"[6.5.0, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\8.0.203\\RuntimeIdentifierGraph.json"}} \ No newline at end of file +"restore":{"projectUniqueName":"D:\\RiderProjects\\rmutr_report\\rmutr_report.csproj","projectName":"rmutr_report","projectPath":"D:\\RiderProjects\\rmutr_report\\rmutr_report.csproj","outputPath":"D:\\RiderProjects\\rmutr_report\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net5.0"],"sources":{"https://api.nuget.org/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, )"},"EPPlus":{"target":"Package","version":"[7.2.2, )"},"FastReport.Core":{"target":"Package","version":"[2021.3.0, )"},"Swashbuckle.AspNetCore":{"target":"Package","version":"[6.5.0, )"},"Swashbuckle.AspNetCore.Annotations":{"target":"Package","version":"[6.5.0, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\8.0.203\\RuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/obj/rider.project.model.nuget.info b/obj/rider.project.model.nuget.info index 679bcd7..3c051af 100644 --- a/obj/rider.project.model.nuget.info +++ b/obj/rider.project.model.nuget.info @@ -1 +1 @@ -17265608288848838 \ No newline at end of file +17265722909247533 \ No newline at end of file diff --git a/obj/rider.project.restore.info b/obj/rider.project.restore.info index f969689..1798d2b 100644 --- a/obj/rider.project.restore.info +++ b/obj/rider.project.restore.info @@ -1 +1 @@ -17265637091769413 \ No newline at end of file +17266322247535166 \ 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 c2a0005..719008b 100644 --- a/obj/rmutr_report.csproj.nuget.dgspec.json +++ b/obj/rmutr_report.csproj.nuget.dgspec.json @@ -46,6 +46,10 @@ "target": "Package", "version": "[0.96.0, )" }, + "EPPlus": { + "target": "Package", + "version": "[7.2.2, )" + }, "FastReport.Core": { "target": "Package", "version": "[2021.3.0, )" diff --git a/obj/rmutr_report.csproj.nuget.g.targets b/obj/rmutr_report.csproj.nuget.g.targets index eea8d76..d1ec416 100644 --- a/obj/rmutr_report.csproj.nuget.g.targets +++ b/obj/rmutr_report.csproj.nuget.g.targets @@ -1,6 +1,19 @@  + + + + + + + + + + + + + \ No newline at end of file diff --git a/rmutr_report.csproj b/rmutr_report.csproj index 1d2b290..edd3628 100644 --- a/rmutr_report.csproj +++ b/rmutr_report.csproj @@ -9,6 +9,7 @@ + diff --git a/wwwroot/reports/durable_articles_three.frx b/wwwroot/reports/durable_articles_three.frx index b7774ed..ca07015 100644 --- a/wwwroot/reports/durable_articles_three.frx +++ b/wwwroot/reports/durable_articles_three.frx @@ -1,5 +1,5 @@  - + @@ -214,8 +214,8 @@ - - + + @@ -225,7 +225,7 @@ - + @@ -234,10 +234,10 @@ - + - - + + @@ -361,21 +361,21 @@ - + - - - + + + - + - - - - + + + +