diff --git a/.idea/.idea.ImportDataToDataBaseExtensionPlugin/.idea/vcs.xml b/.idea/.idea.ImportDataToDataBaseExtensionPlugin/.idea/vcs.xml new file mode 100644 index 0000000000000000000000000000000000000000..94a25f7f4cb416c083d265558da75d457237d671 --- /dev/null +++ b/.idea/.idea.ImportDataToDataBaseExtensionPlugin/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/.idea.ImportDataToDataBaseExtensionPlugin/.idea/workspace.xml b/.idea/.idea.ImportDataToDataBaseExtensionPlugin/.idea/workspace.xml index dabf966bccb7c6643123fb982b3ab58802569a30..f86c18576969617aa5d77edfdf53e46541df35de 100644 --- a/.idea/.idea.ImportDataToDataBaseExtensionPlugin/.idea/workspace.xml +++ b/.idea/.idea.ImportDataToDataBaseExtensionPlugin/.idea/workspace.xml @@ -4,25 +4,48 @@ ImportDataToDataBaseExtensionPlugin/ImportDataToDataBaseExtensionPlugin.csproj - + + + + + + + + + + + + + + + + + + + - { + "keyToString": { + "RunOnceActivity.OpenProjectViewOnStart": "true", + "RunOnceActivity.ShowReadmeOnStart": "true", + "WebServerToolWindowFactoryState": "false", + "vue.rearranger.settings.migration": "true" } -}]]> +} + + + + + \ No newline at end of file diff --git a/.vs/ImportDataToDataBaseExtensionPlugin/DesignTimeBuild/.dtbcache.v2 b/.vs/ImportDataToDataBaseExtensionPlugin/DesignTimeBuild/.dtbcache.v2 new file mode 100644 index 0000000000000000000000000000000000000000..5baf851038a9476c72bc2535deccde35caf47aea Binary files /dev/null and b/.vs/ImportDataToDataBaseExtensionPlugin/DesignTimeBuild/.dtbcache.v2 differ diff --git a/.vs/ImportDataToDataBaseExtensionPlugin/FileContentIndex/b1aa5475-b594-4a4e-8dc2-c7a5d905803c.vsidx b/.vs/ImportDataToDataBaseExtensionPlugin/FileContentIndex/b1aa5475-b594-4a4e-8dc2-c7a5d905803c.vsidx new file mode 100644 index 0000000000000000000000000000000000000000..27a135c3bdfa2b370ae162e007f90dc77e2f8bee Binary files /dev/null and b/.vs/ImportDataToDataBaseExtensionPlugin/FileContentIndex/b1aa5475-b594-4a4e-8dc2-c7a5d905803c.vsidx differ diff --git a/.vs/ImportDataToDataBaseExtensionPlugin/FileContentIndex/read.lock b/.vs/ImportDataToDataBaseExtensionPlugin/FileContentIndex/read.lock new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/.vs/ImportDataToDataBaseExtensionPlugin/v17/.futdcache.v1 b/.vs/ImportDataToDataBaseExtensionPlugin/v17/.futdcache.v1 new file mode 100644 index 0000000000000000000000000000000000000000..bc7396b82061c64456f1a7a8276abb2ef280c259 Binary files /dev/null and b/.vs/ImportDataToDataBaseExtensionPlugin/v17/.futdcache.v1 differ diff --git a/.vs/ImportDataToDataBaseExtensionPlugin/v17/.suo b/.vs/ImportDataToDataBaseExtensionPlugin/v17/.suo new file mode 100644 index 0000000000000000000000000000000000000000..eb1c4f36953869bb0d607ef3226aa6f41cc943e3 Binary files /dev/null and b/.vs/ImportDataToDataBaseExtensionPlugin/v17/.suo differ diff --git a/.vs/ProjectEvaluation/importdatatodatabaseextensionplugin.metadata.v2 b/.vs/ProjectEvaluation/importdatatodatabaseextensionplugin.metadata.v2 new file mode 100644 index 0000000000000000000000000000000000000000..1b0ae7fec007bfcc9712407e7e46680702762f8d Binary files /dev/null and b/.vs/ProjectEvaluation/importdatatodatabaseextensionplugin.metadata.v2 differ diff --git a/.vs/ProjectEvaluation/importdatatodatabaseextensionplugin.projects.v2 b/.vs/ProjectEvaluation/importdatatodatabaseextensionplugin.projects.v2 new file mode 100644 index 0000000000000000000000000000000000000000..ec63dcc89d1b1280a743de5bec54a5ee673d24ca Binary files /dev/null and b/.vs/ProjectEvaluation/importdatatodatabaseextensionplugin.projects.v2 differ diff --git a/ImportDataToDataBaseExtensionPlugin.sln.DotSettings.user b/ImportDataToDataBaseExtensionPlugin.sln.DotSettings.user new file mode 100644 index 0000000000000000000000000000000000000000..1a5c1da77adb385bbbc9f9f924164566af31f92d --- /dev/null +++ b/ImportDataToDataBaseExtensionPlugin.sln.DotSettings.user @@ -0,0 +1,4 @@ + + <AssemblyExplorer> + <Assembly Path="C:\Users\admin\.nuget\packages\mysqlconnector\2.1.2\lib\net6.0\MySqlConnector.dll" /> +</AssemblyExplorer> \ No newline at end of file diff --git a/ImportDataToDataBaseExtensionPlugin/Common/GetDataFromExcel.cs b/ImportDataToDataBaseExtensionPlugin/Common/GetDataFromExcel.cs new file mode 100644 index 0000000000000000000000000000000000000000..2719ccdad2046b4a90d2e40470a245c8b5375c36 --- /dev/null +++ b/ImportDataToDataBaseExtensionPlugin/Common/GetDataFromExcel.cs @@ -0,0 +1,77 @@ +using System; +using System.Data; +using System.IO; +using NPOI.HSSF.UserModel; +using NPOI.SS.UserModel; +using NPOI.XSSF.UserModel; + +namespace ImportDataToDataBaseExtensionPlugin.Common +{ + public static class GetDataFromExcel + { + public static DataTable ExcelToDatatable(string fileName, string sheetName = null, bool isFirstRowColumn = true) + { + var data = new DataTable(); + + var fs = new FileStream(fileName, FileMode.Open, FileAccess.Read); + IWorkbook workbook = null; + if (fileName.IndexOf(".xlsx", StringComparison.Ordinal) > 0) // 2007版本 + { + workbook = new XSSFWorkbook(fs); + } + else if (fileName.IndexOf(".xls", StringComparison.Ordinal) > 0) // 2003版本 + { + workbook = new HSSFWorkbook(fs); + } + else + { + return null; + } + + ISheet sheet = null; + sheet = sheetName != null ? + workbook.GetSheet(sheetName) : + workbook.GetSheetAt(0); //获取第几个sheet表(此处表示如果没有给定sheet名称,默认是第一个sheet表) + + if (sheet == null) return data; + var firstRow = sheet.GetRow(0); + int cellCount = firstRow.LastCellNum;//列数 + var startRow = 0; + if (isFirstRowColumn)//如果第一行是标题行 + { + for (int i = firstRow.FirstCellNum; i < cellCount; ++i)//第一行列数循环 + { + var column = new DataColumn(firstRow.GetCell(i).StringCellValue);//获取标题 + data.Columns.Add(column);//添加列 + } + startRow = sheet.FirstRowNum + 1;//1(即第二行,第一行0从开始) + } + else + { + startRow = sheet.FirstRowNum;//0 + } + //最后一行的标号 + var rowCount = sheet.LastRowNum;//行数 + for (var i = startRow; i <= rowCount; ++i)//循环遍历所有行 + { + var row = sheet.GetRow(i);//第几行 + if (row == null) + { + continue; //没有数据的行默认是null; + } + //将excel表每一行的数据添加到datatable的行中 + var dataRow = data.NewRow(); + for (int j = row.FirstCellNum; j < cellCount; ++j) + { + if (row.GetCell(j) != null) //同理,没有数据的单元格都默认是null + { + dataRow[j] = row.GetCell(j).ToString() ?? string.Empty; + } + } + data.Rows.Add(dataRow); + } + return data; + + } + } +} \ No newline at end of file diff --git a/ImportDataToDataBaseExtensionPlugin/Designer/ImportDataToDataBaseExtensionPluginServerCommandDesigner.cs b/ImportDataToDataBaseExtensionPlugin/Designer/ImportDataToDataBaseExtensionPluginServerCommandDesigner.cs index f471a2385297e5884f03f66cee5824087e3414d2..25bdbf09b5bd4247c59b1822972b3e3ff793243a 100644 --- a/ImportDataToDataBaseExtensionPlugin/Designer/ImportDataToDataBaseExtensionPluginServerCommandDesigner.cs +++ b/ImportDataToDataBaseExtensionPlugin/Designer/ImportDataToDataBaseExtensionPluginServerCommandDesigner.cs @@ -1,10 +1,37 @@ using GrapeCity.Forguncy.Commands; using System; using System.Collections.Generic; +using System.ComponentModel; +using System.Linq; +using EnumsNET; +using GrapeCity.Forguncy.Plugin; +using ImportDataToDataBaseExtensionPlugin.Helper; namespace ImportDataToDataBaseExtensionPlugin.Designer { public class ImportDataToDataBaseExtensionPluginServerCommandDesigner : CommandDesigner { + public override EditorSetting GetEditorSetting(PropertyDescriptor property, IBuilderCommandContext builderContext) + { + if (property.Name == nameof(ImportDataToDataBaseExtensionPluginServerCommand.DataBaseType)) + { + return new ComboEditorSetting( + Enum.GetValues().Select(e => new ComboItem((int)e, e.GetName())), + nameof(ComboItem.Display), + nameof(ComboItem.Value)); + } + return base.GetEditorSetting(property, builderContext); + } + } + + public class ComboItem + { + public ComboItem(int value, string display) + { + Value = value; + Display = display; + } + public int Value { get; set; } + public string Display { get; set; } } } diff --git a/ImportDataToDataBaseExtensionPlugin/Helper/DataBaseTypeEnum.cs b/ImportDataToDataBaseExtensionPlugin/Helper/DataBaseTypeEnum.cs new file mode 100644 index 0000000000000000000000000000000000000000..136eac0275f6ed7e214a1b10a3436a684fee0068 --- /dev/null +++ b/ImportDataToDataBaseExtensionPlugin/Helper/DataBaseTypeEnum.cs @@ -0,0 +1,11 @@ +using System.Linq; + +namespace ImportDataToDataBaseExtensionPlugin.Helper +{ + public enum DataBaseTypeEnum + { + SqlServer = 1, + MySql = 2 + } + +} \ No newline at end of file diff --git a/ImportDataToDataBaseExtensionPlugin/Helper/InsertDataToDataBaseHelper.cs b/ImportDataToDataBaseExtensionPlugin/Helper/InsertDataToDataBaseHelper.cs new file mode 100644 index 0000000000000000000000000000000000000000..10b8bdbd1c4226afabde8b38ab5c73c73236e5c8 --- /dev/null +++ b/ImportDataToDataBaseExtensionPlugin/Helper/InsertDataToDataBaseHelper.cs @@ -0,0 +1,51 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.IO; +using System.Threading.Tasks; +using MySqlConnector; + +namespace ImportDataToDataBaseExtensionPlugin.Helper +{ + + + public static class InsertDataToDataBaseHelper + { + public static async Task InsertDataToSqlServerAsync(string connectionString, string tableName, DataTable dataTable) + { + await using var connection = new SqlConnection(connectionString); + var bulkCopy = new SqlBulkCopy(connection); + bulkCopy.DestinationTableName = tableName; + bulkCopy.BatchSize = dataTable.Rows.Count; + + await connection.OpenAsync(); + foreach (DataColumn dataTableColumn in dataTable.Columns) + { + bulkCopy.ColumnMappings.Add(dataTableColumn.ColumnName, dataTableColumn.ColumnName); + } + await bulkCopy.WriteToServerAsync(dataTable); + await connection.CloseAsync(); + } + + public static async Task InsertDataToMySqlAsync(string connectionString, string tableName, DataTable dataTable) + { + connectionString += ";AllowLoadLocalInfile=true;"; + var connection = new MySqlConnection(connectionString); + + var bulkCopy = new MySqlBulkCopy(connection) + { + DestinationTableName = tableName + }; + + await connection.OpenAsync(); + foreach (DataColumn dataTableColumn in dataTable.Columns) + { + bulkCopy.ColumnMappings.Add(new MySqlBulkCopyColumnMapping(dataTable.Columns.IndexOf(dataTableColumn), dataTableColumn.ColumnName)); + } + await bulkCopy.WriteToServerAsync(dataTable); + await connection.CloseAsync(); + + + } + } +} \ No newline at end of file diff --git a/ImportDataToDataBaseExtensionPlugin/ImportDataToDataBaseExtensionPlugin.csproj b/ImportDataToDataBaseExtensionPlugin/ImportDataToDataBaseExtensionPlugin.csproj index 8208fd9507e1a73a3529f644e91d1b63caa41898..1feff632571882e6c3c5534cde1cb8f39ae406a3 100644 --- a/ImportDataToDataBaseExtensionPlugin/ImportDataToDataBaseExtensionPlugin.csproj +++ b/ImportDataToDataBaseExtensionPlugin/ImportDataToDataBaseExtensionPlugin.csproj @@ -54,6 +54,12 @@ + + + + + + diff --git a/ImportDataToDataBaseExtensionPlugin/ImportDataToDataBaseExtensionPluginServerCommand.cs b/ImportDataToDataBaseExtensionPlugin/ImportDataToDataBaseExtensionPluginServerCommand.cs index 0f74a500fd72e66a5e6cc226efe17d908cdc7ba7..82c24de55bf29e74cee71fde08598a782f8d34d1 100644 --- a/ImportDataToDataBaseExtensionPlugin/ImportDataToDataBaseExtensionPluginServerCommand.cs +++ b/ImportDataToDataBaseExtensionPlugin/ImportDataToDataBaseExtensionPluginServerCommand.cs @@ -3,7 +3,11 @@ using GrapeCity.Forguncy.Plugin; using GrapeCity.Forguncy.Log; using System; using System.ComponentModel; +using System.ComponentModel.DataAnnotations; +using System.Data; using System.Threading.Tasks; +using ImportDataToDataBaseExtensionPlugin.Common; +using ImportDataToDataBaseExtensionPlugin.Helper; namespace ImportDataToDataBaseExtensionPlugin { @@ -11,27 +15,41 @@ namespace ImportDataToDataBaseExtensionPlugin [Designer("ImportDataToDataBaseExtensionPlugin.Designer.ImportDataToDataBaseExtensionPluginServerCommandDesigner, ImportDataToDataBaseExtensionPlugin")] public class ImportDataToDataBaseExtensionPluginServerCommand : Command, ICommandExecutableInServerSideAsync { + [Required] + public int DataBaseType { get; set; } + + [DatabaseConnectionSelectorProperty(IncludeBuiltInDatabase = true)] + [Required] + public string Connection { get; set; } + [FormulaProperty] - [DisplayName("加数1")] - public object AddNumber1 { get; set; } - + [Required] + public object TableName { get; set; } + [FormulaProperty] - [DisplayName("加数2")] - public object AddNumber2 { get; set; } + [Required] + public object FilePath { get; set; } + + [ResultToProperty] - [DisplayName("相加结果")] + [DisplayName("成功导入行数")] public string ResultTo { get; set; } = "结果"; public async Task ExecuteAsync(IServerCommandExecuteContext dataContext) { - var add1 = await dataContext.EvaluateFormulaAsync(AddNumber1); // 计算的一个加数的公式值 - var add2 = await dataContext.EvaluateFormulaAsync(AddNumber2); // 计算第二个加数的公式值 - - double.TryParse(add1?.ToString(), out var add1Number); // 对第一个加数做类型转换 - double.TryParse(add2?.ToString(), out var add2Number); // 对第二个加数做类型转换 + var filePath = (await dataContext.EvaluateFormulaAsync(FilePath)).ToString(); + var dataTable = GetDataFromExcel.ExcelToDatatable(filePath); + + + var dataAccess = dataContext.DataAccess; + var connectionString = dataAccess.GetConnectionStringByID(Connection); + + var tableName = (await dataContext.EvaluateFormulaAsync(TableName)).ToString(); - dataContext.Parameters[ResultTo] = add1Number + add2Number; // 把计算的结果设置到结果变量中 + await ImportDataToDataBaseAsync(connectionString, tableName, dataTable); + + dataContext.Parameters[ResultTo] = dataTable.Rows.Count; return new ExecuteResult(); } @@ -45,5 +63,18 @@ namespace ImportDataToDataBaseExtensionPlugin { return CommandScope.ExecutableInServer; } + + private async Task ImportDataToDataBaseAsync(string connectionString, string tableName, DataTable dataTable) + { + switch (DataBaseType) + { + case (int)DataBaseTypeEnum.SqlServer: + await InsertDataToDataBaseHelper.InsertDataToSqlServerAsync(connectionString, tableName, dataTable); + break; + case (int)DataBaseTypeEnum.MySql: + await InsertDataToDataBaseHelper.InsertDataToMySqlAsync(connectionString, tableName, dataTable); + break; + } + } } } diff --git a/ImportDataToDataBaseExtensionPlugin/bin/BouncyCastle.Cryptography.dll b/ImportDataToDataBaseExtensionPlugin/bin/BouncyCastle.Cryptography.dll new file mode 100644 index 0000000000000000000000000000000000000000..782adf41a1d19c92b2f853b89e6dca9f4408e889 Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/BouncyCastle.Cryptography.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/Enums.NET.dll b/ImportDataToDataBaseExtensionPlugin/bin/Enums.NET.dll new file mode 100644 index 0000000000000000000000000000000000000000..adc8614c2f141cdb9fae6d6db8657c7243b01298 Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/Enums.NET.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/ExtendedNumerics.BigDecimal.dll b/ImportDataToDataBaseExtensionPlugin/bin/ExtendedNumerics.BigDecimal.dll new file mode 100644 index 0000000000000000000000000000000000000000..7a8a9e469be435c2db7810fa56a05ed42199d403 Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/ExtendedNumerics.BigDecimal.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/Google.Protobuf.dll b/ImportDataToDataBaseExtensionPlugin/bin/Google.Protobuf.dll new file mode 100644 index 0000000000000000000000000000000000000000..5363ce344a359bfc0c7dcb757108063e67aec08a Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/Google.Protobuf.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/ICSharpCode.SharpZipLib.dll b/ImportDataToDataBaseExtensionPlugin/bin/ICSharpCode.SharpZipLib.dll new file mode 100644 index 0000000000000000000000000000000000000000..8a743431262146737cb67b60a141effc36fec05f Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/ICSharpCode.SharpZipLib.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/ImportDataToDataBaseExtensionPlugin.deps.json b/ImportDataToDataBaseExtensionPlugin/bin/ImportDataToDataBaseExtensionPlugin.deps.json new file mode 100644 index 0000000000000000000000000000000000000000..479e038f29e250d19c4aa9e0bbbf81a0af9fa8ba --- /dev/null +++ b/ImportDataToDataBaseExtensionPlugin/bin/ImportDataToDataBaseExtensionPlugin.deps.json @@ -0,0 +1,843 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "ImportDataToDataBaseExtensionPlugin/1.0.0": { + "dependencies": { + "MySql.Data": "9.0.0", + "MySqlConnector": "2.1.2", + "NPOI": "2.7.0", + "System.Data.SqlClient": "4.8.6", + "System.Diagnostics.DiagnosticSource": "8.0.1" + }, + "runtime": { + "ImportDataToDataBaseExtensionPlugin.dll": {} + } + }, + "BouncyCastle.Cryptography/2.3.1": { + "runtime": { + "lib/net6.0/BouncyCastle.Cryptography.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.3.1.17862" + } + } + }, + "Enums.NET/4.0.1": { + "runtime": { + "lib/netcoreapp3.0/Enums.NET.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.1.0" + } + } + }, + "ExtendedNumerics.BigDecimal/2023.1000.0.230": { + "runtime": { + "lib/net6.0/ExtendedNumerics.BigDecimal.dll": { + "assemblyVersion": "2023.1000.0.230", + "fileVersion": "2023.1000.0.230" + } + } + }, + "Google.Protobuf/3.26.1": { + "runtime": { + "lib/net5.0/Google.Protobuf.dll": { + "assemblyVersion": "3.26.1.0", + "fileVersion": "3.26.1.0" + } + } + }, + "K4os.Compression.LZ4/1.3.8": { + "runtime": { + "lib/net6.0/K4os.Compression.LZ4.dll": { + "assemblyVersion": "1.3.8.0", + "fileVersion": "1.3.8.0" + } + } + }, + "K4os.Compression.LZ4.Streams/1.3.8": { + "dependencies": { + "K4os.Compression.LZ4": "1.3.8", + "K4os.Hash.xxHash": "1.0.8", + "System.IO.Pipelines": "6.0.3" + }, + "runtime": { + "lib/net6.0/K4os.Compression.LZ4.Streams.dll": { + "assemblyVersion": "1.3.8.0", + "fileVersion": "1.3.8.0" + } + } + }, + "K4os.Hash.xxHash/1.0.8": { + "runtime": { + "lib/net6.0/K4os.Hash.xxHash.dll": { + "assemblyVersion": "1.0.8.0", + "fileVersion": "1.0.8.0" + } + } + }, + "MathNet.Numerics.Signed/5.0.0": { + "runtime": { + "lib/net6.0/MathNet.Numerics.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + } + }, + "Microsoft.IO.RecyclableMemoryStream/3.0.0": { + "runtime": { + "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.0.0.0" + } + } + }, + "Microsoft.NETCore.Platforms/1.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "MySql.Data/9.0.0": { + "dependencies": { + "BouncyCastle.Cryptography": "2.3.1", + "Google.Protobuf": "3.26.1", + "K4os.Compression.LZ4.Streams": "1.3.8", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "8.0.0", + "System.Diagnostics.DiagnosticSource": "8.0.1", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Runtime.Loader": "4.3.0", + "System.Security.Permissions": "8.0.0", + "System.Text.Encoding.CodePages": "8.0.0", + "System.Text.Json": "8.0.3", + "System.Threading.Tasks.Extensions": "4.5.4", + "ZstdSharp.Port": "0.8.0" + }, + "runtime": { + "lib/net6.0/MySql.Data.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.0.0" + } + }, + "runtimeTargets": { + "runtimes/win-x64/native/comerr64.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "4.1.0.0" + }, + "runtimes/win-x64/native/gssapi64.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "4.1.0.0" + }, + "runtimes/win-x64/native/k5sprt64.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "4.1.0.0" + }, + "runtimes/win-x64/native/krb5_64.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "4.1.0.0" + }, + "runtimes/win-x64/native/krbcc64.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "4.1.0.0" + } + } + }, + "MySqlConnector/2.1.2": { + "runtime": { + "lib/net6.0/MySqlConnector.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.1.2.0" + } + } + }, + "NPOI/2.7.0": { + "dependencies": { + "BouncyCastle.Cryptography": "2.3.1", + "Enums.NET": "4.0.1", + "ExtendedNumerics.BigDecimal": "2023.1000.0.230", + "MathNet.Numerics.Signed": "5.0.0", + "Microsoft.IO.RecyclableMemoryStream": "3.0.0", + "SharpZipLib": "1.3.3", + "SixLabors.Fonts": "1.0.1", + "SixLabors.ImageSharp": "2.1.7", + "System.Configuration.ConfigurationManager": "8.0.0", + "System.Security.Cryptography.Pkcs": "6.0.3", + "System.Security.Cryptography.Xml": "6.0.1" + }, + "runtime": { + "lib/net6.0/NPOI.Core.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + }, + "lib/net6.0/NPOI.OOXML.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + }, + "lib/net6.0/NPOI.OpenXml4Net.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + }, + "lib/net6.0/NPOI.OpenXmlFormats.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "SharpZipLib/1.3.3": { + "runtime": { + "lib/netstandard2.1/ICSharpCode.SharpZipLib.dll": { + "assemblyVersion": "1.3.3.11", + "fileVersion": "1.3.3.11" + } + } + }, + "SixLabors.Fonts/1.0.1": { + "runtime": { + "lib/netcoreapp3.1/SixLabors.Fonts.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.1.0" + } + } + }, + "SixLabors.ImageSharp/2.1.7": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encoding.CodePages": "8.0.0" + }, + "runtime": { + "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.1.7.0" + } + } + }, + "System.Buffers/4.5.1": {}, + "System.Configuration.ConfigurationManager/8.0.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "8.0.0" + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "System.Data.SqlClient/4.8.6": { + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "runtime.native.System.Data.SqlClient.sni": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assemblyVersion": "4.6.1.6", + "fileVersion": "4.700.23.52603" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.6.1.6", + "fileVersion": "4.700.23.52603" + }, + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.6.1.6", + "fileVersion": "4.700.23.52603" + } + } + }, + "System.Diagnostics.DiagnosticSource/8.0.1": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.424.16909" + } + } + }, + "System.Formats.Asn1/6.0.0": {}, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Pipelines/6.0.3": { + "runtime": { + "lib/net6.0/System.IO.Pipelines.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21309" + } + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Runtime.Loader/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Security.AccessControl/6.0.0": {}, + "System.Security.Cryptography.Pkcs/6.0.3": { + "dependencies": { + "System.Formats.Asn1": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.Pkcs.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.1823.26907" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.1823.26907" + } + } + }, + "System.Security.Cryptography.ProtectedData/8.0.0": { + "runtime": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "System.Security.Cryptography.Xml/6.0.1": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.3" + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.Xml.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.822.36306" + } + } + }, + "System.Security.Permissions/8.0.0": { + "dependencies": { + "System.Windows.Extensions": "8.0.0" + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/8.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Text.Encoding.CodePages.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "System.Text.Encodings.Web/8.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Text.Encodings.Web.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + }, + "runtimeTargets": { + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": { + "rid": "browser", + "assetType": "runtime", + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "System.Text.Json/8.0.3": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "8.0.0" + }, + "runtime": { + "lib/net6.0/System.Text.Json.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.324.11423" + } + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.5.4": {}, + "System.Windows.Extensions/8.0.0": { + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "ZstdSharp.Port/0.8.0": { + "runtime": { + "lib/net6.0/ZstdSharp.dll": { + "assemblyVersion": "0.8.0.0", + "fileVersion": "0.8.0.0" + } + } + } + } + }, + "libraries": { + "ImportDataToDataBaseExtensionPlugin/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "BouncyCastle.Cryptography/2.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-buwoISwecYke3CmgG1AQSg+sNZjJeIb93vTAtJiHZX35hP/teYMxsfg0NDXGUKjGx6BKBTNKc77O2M3vKvlXZQ==", + "path": "bouncycastle.cryptography/2.3.1", + "hashPath": "bouncycastle.cryptography.2.3.1.nupkg.sha512" + }, + "Enums.NET/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OUGCd5L8zHZ61GAf436G0gf/H6yrSUkEpV5vm2CbCUuz9Rx7iLFLP5iHSSfmOtqNpuyo4vYte0CvYEmPZXRmRQ==", + "path": "enums.net/4.0.1", + "hashPath": "enums.net.4.0.1.nupkg.sha512" + }, + "ExtendedNumerics.BigDecimal/2023.1000.0.230": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kbEPff0V3AOgVpOidwEvB/k4d/74h6NgUbnHp3ZvPxz6QqsKXP5Zry2zUroyQUyztp3yDLtFT89XY5rfaShZAw==", + "path": "extendednumerics.bigdecimal/2023.1000.0.230", + "hashPath": "extendednumerics.bigdecimal.2023.1000.0.230.nupkg.sha512" + }, + "Google.Protobuf/3.26.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CHZX8zXqhF/fdUtd+AYzew8T2HFkAoe5c7lbGxZY/qryAlQXckDvM5BfOJjXlMS7kyICqQTMszj4w1bX5uBJ/w==", + "path": "google.protobuf/3.26.1", + "hashPath": "google.protobuf.3.26.1.nupkg.sha512" + }, + "K4os.Compression.LZ4/1.3.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LhwlPa7c1zs1OV2XadMtAWdImjLIsqFJPoRcIWAadSRn0Ri1DepK65UbWLPmt4riLqx2d40xjXRk0ogpqNtK7g==", + "path": "k4os.compression.lz4/1.3.8", + "hashPath": "k4os.compression.lz4.1.3.8.nupkg.sha512" + }, + "K4os.Compression.LZ4.Streams/1.3.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P15qr8dZAeo9GvYbUIPEYFQ0MEJ0i5iqr37wsYeRC3la2uCldOoeCa6to0CZ1taiwxIV+Mk8NGuZi+4iWivK9w==", + "path": "k4os.compression.lz4.streams/1.3.8", + "hashPath": "k4os.compression.lz4.streams.1.3.8.nupkg.sha512" + }, + "K4os.Hash.xxHash/1.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Wp2F7BamQ2Q/7Hk834nV9vRQapgcr8kgv9Jvfm8J3D0IhDqZMMl+a2yxUq5ltJitvXvQfB8W6K4F4fCbw/P6YQ==", + "path": "k4os.hash.xxhash/1.0.8", + "hashPath": "k4os.hash.xxhash.1.0.8.nupkg.sha512" + }, + "MathNet.Numerics.Signed/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PSrHBVMf41SjbhlnpOMnoir8YgkyEJ6/nwxvjYpH+vJCexNcx2ms6zRww5yLVqLet1xLJgZ39swtKRTLhWdnAw==", + "path": "mathnet.numerics.signed/5.0.0", + "hashPath": "mathnet.numerics.signed.5.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/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "path": "microsoft.netcore.platforms/1.1.0", + "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "MySql.Data/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YT2/fdDy3FBx5ZK0qsupEs9Gt0iFo/mZR+ND5cJwrr+6xguAOXyYpYUbEj27UcLZER5InOUrJQYyUaPIDil2Xw==", + "path": "mysql.data/9.0.0", + "hashPath": "mysql.data.9.0.0.nupkg.sha512" + }, + "MySqlConnector/2.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JVokQTUNN3WHAu9Vw8ieeq1dXTFokJiig5P0VJ4f439UxRrsPo6SaVWC8Zdm6mkPeQFhZ0/9afdWa02EY/1j/w==", + "path": "mysqlconnector/2.1.2", + "hashPath": "mysqlconnector.2.1.2.nupkg.sha512" + }, + "NPOI/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yexXTxBKJT845yOSRDkgrgc3ciEWRnp8vMIRoZLOmUs7QJoCp5ZSi4wTPXtwYdhRg2v5Up9nC1TVKxrtkDcsYg==", + "path": "npoi/2.7.0", + "hashPath": "npoi.2.7.0.nupkg.sha512" + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", + "path": "runtime.native.system.data.sqlclient.sni/4.7.0", + "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512" + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "SharpZipLib/1.3.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N8+hwhsKZm25tDJfWpBSW7EGhH/R7EMuiX+KJ4C4u+fCWVc1lJ5zg1u3S1RPPVYgTqhx/C3hxrqUpi6RwK5+Tg==", + "path": "sharpziplib/1.3.3", + "hashPath": "sharpziplib.1.3.3.nupkg.sha512" + }, + "SixLabors.Fonts/1.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ljezRHWc7N0azdQViib7Aa5v+DagRVkKI2/93kEbtjVczLs+yTkSq6gtGmvOcx4IqyNbO3GjLt7SAQTpLkySNw==", + "path": "sixlabors.fonts/1.0.1", + "hashPath": "sixlabors.fonts.1.0.1.nupkg.sha512" + }, + "SixLabors.ImageSharp/2.1.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CiOV86pE4v1U850lO8zTRXQMysFCo40DJnHwxX8mIJbJ/unr7I9avhHqCh3BvU0sOSDdCp/2LcIz+7zVCWjMZw==", + "path": "sixlabors.imagesharp/2.1.7", + "hashPath": "sixlabors.imagesharp.2.1.7.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.Configuration.ConfigurationManager/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JlYi9XVvIREURRUlGMr1F6vOFLk7YSY4p1vHo4kX3tQ0AGrjqlRWHDi66ImHhy6qwXBG3BJ6Y1QlYQ+Qz6Xgww==", + "path": "system.configuration.configurationmanager/8.0.0", + "hashPath": "system.configuration.configurationmanager.8.0.0.nupkg.sha512" + }, + "System.Data.SqlClient/4.8.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2Ij/LCaTQRyAi5lAv7UUTV9R2FobC8xN9mE0fXBZohum/xLl8IZVmE98Rq5ugQHjCgTBRKqpXRb4ORulRdA6Ig==", + "path": "system.data.sqlclient/4.8.6", + "hashPath": "system.data.sqlclient.4.8.6.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vaoWjvkG1aenR2XdjaVivlCV9fADfgyhW5bZtXT23qaEea0lWiUljdQuze4E31vKM7ZWJaSUsbYIKE3rnzfZUg==", + "path": "system.diagnostics.diagnosticsource/8.0.1", + "hashPath": "system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512" + }, + "System.Formats.Asn1/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T6fD00dQ3NTbPDy31m4eQUwKW84s03z0N2C8HpOklyeaDgaJPa/TexP4/SkORMSOwc7WhKifnA6Ya33AkzmafA==", + "path": "system.formats.asn1/6.0.0", + "hashPath": "system.formats.asn1.6.0.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Pipelines/6.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==", + "path": "system.io.pipelines/6.0.3", + "hashPath": "system.io.pipelines.6.0.3.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "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.Runtime.Loader/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==", + "path": "system.runtime.loader/4.3.0", + "hashPath": "system.runtime.loader.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "path": "system.security.accesscontrol/6.0.0", + "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Pkcs/6.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-18UT1BdZ4TYFBHk/wuq7JzCdE3X75z81X+C2rXqIlmEnC21Pm60spGV/dKQSzbyomstqYE33EuN5hfnC86VFxA==", + "path": "system.security.cryptography.pkcs/6.0.3", + "hashPath": "system.security.cryptography.pkcs.6.0.3.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+TUFINV2q2ifyXauQXRwy4CiBhqvDEDZeVJU7qfxya4aRYOKzVBpN+4acx25VcPB9ywUN6C0n8drWl110PhZEg==", + "path": "system.security.cryptography.protecteddata/8.0.0", + "hashPath": "system.security.cryptography.protecteddata.8.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Xml/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5e5bI28T0x73AwTsbuFP4qSRzthmU2C0Gqgg3AZ3KTxmSyA+Uhk31puA3srdaeWaacVnHhLdJywCzqOiEpbO/w==", + "path": "system.security.cryptography.xml/6.0.1", + "hashPath": "system.security.cryptography.xml.6.0.1.nupkg.sha512" + }, + "System.Security.Permissions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v/BBylw7XevuAsHXoX9dDUUfmBIcUf7Lkz8K3ZXIKz3YRKpw8YftpSir4n4e/jDTKFoaK37AsC3xnk+GNFI1Ow==", + "path": "system.security.permissions/8.0.0", + "hashPath": "system.security.permissions.8.0.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OZIsVplFGaVY90G2SbpgU7EnCoOO5pw1t4ic21dBF3/1omrJFpAGoNAVpPyMVOC90/hvgkGG3VFqR13YgZMQfg==", + "path": "system.text.encoding.codepages/8.0.0", + "hashPath": "system.text.encoding.codepages.8.0.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/8.0.0": { + "type": "package", + "serviceable": true, + "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.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hpagS9joOwv6efWfrMmV9MjQXpiXZH72PgN067Ysfr6AWMSD1/1hEcvh/U5mUpPLezEWsOJSuVrmqDIVD958iA==", + "path": "system.text.json/8.0.3", + "hashPath": "system.text.json.8.0.3.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.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/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Obg3a90MkOw9mYKxrardLpY2u0axDMrSmy4JCdq2cYbelM2cUwmUir5Bomvd1yxmPL9h5LVHU1tuKBZpUjfASg==", + "path": "system.windows.extensions/8.0.0", + "hashPath": "system.windows.extensions.8.0.0.nupkg.sha512" + }, + "ZstdSharp.Port/0.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z62eNBIu8E8YtbqlMy57tK3dV1+m2b9NhPeaYovB5exmLKvrGCqOhJTzrEUH5VyUWU6vwX3c1XHJGhW5HVs8dA==", + "path": "zstdsharp.port/0.8.0", + "hashPath": "zstdsharp.port.0.8.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/ImportDataToDataBaseExtensionPlugin/bin/ImportDataToDataBaseExtensionPlugin.dll b/ImportDataToDataBaseExtensionPlugin/bin/ImportDataToDataBaseExtensionPlugin.dll new file mode 100644 index 0000000000000000000000000000000000000000..644b000afdf1aa964e9701d3ef35df2ca52bee4f Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/ImportDataToDataBaseExtensionPlugin.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/ImportDataToDataBaseExtensionPlugin.pdb b/ImportDataToDataBaseExtensionPlugin/bin/ImportDataToDataBaseExtensionPlugin.pdb new file mode 100644 index 0000000000000000000000000000000000000000..1b7784897757e7dd75787e44532f455b38abc0ec Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/ImportDataToDataBaseExtensionPlugin.pdb differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/ImportDataToDataBaseExtensionPlugin.zip b/ImportDataToDataBaseExtensionPlugin/bin/ImportDataToDataBaseExtensionPlugin.zip new file mode 100644 index 0000000000000000000000000000000000000000..5164aae9eb2be4397d9b67f34123e4bba2a0ebca Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/ImportDataToDataBaseExtensionPlugin.zip differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/K4os.Compression.LZ4.Streams.dll b/ImportDataToDataBaseExtensionPlugin/bin/K4os.Compression.LZ4.Streams.dll new file mode 100644 index 0000000000000000000000000000000000000000..57bc9f2d252d7f3627432fae126bb15ed713596b Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/K4os.Compression.LZ4.Streams.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/K4os.Compression.LZ4.dll b/ImportDataToDataBaseExtensionPlugin/bin/K4os.Compression.LZ4.dll new file mode 100644 index 0000000000000000000000000000000000000000..0711563fc942e31b08abbc1004b77586d44d9b91 Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/K4os.Compression.LZ4.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/K4os.Hash.xxHash.dll b/ImportDataToDataBaseExtensionPlugin/bin/K4os.Hash.xxHash.dll new file mode 100644 index 0000000000000000000000000000000000000000..7796fb9371f741157054f0bda33e52b27ce6dfbe Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/K4os.Hash.xxHash.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/MathNet.Numerics.dll b/ImportDataToDataBaseExtensionPlugin/bin/MathNet.Numerics.dll new file mode 100644 index 0000000000000000000000000000000000000000..b6b9e4b1346f7964f86edcb99ad3a3c5281b871b Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/MathNet.Numerics.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/Microsoft.IO.RecyclableMemoryStream.dll b/ImportDataToDataBaseExtensionPlugin/bin/Microsoft.IO.RecyclableMemoryStream.dll new file mode 100644 index 0000000000000000000000000000000000000000..e0b0a48ace1d142101139c935b33efd1518eb03a Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/Microsoft.IO.RecyclableMemoryStream.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/MySql.Data.dll b/ImportDataToDataBaseExtensionPlugin/bin/MySql.Data.dll new file mode 100644 index 0000000000000000000000000000000000000000..b62773cbf2c1ad736679e1727d79601b999becc7 Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/MySql.Data.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/MySqlConnector.dll b/ImportDataToDataBaseExtensionPlugin/bin/MySqlConnector.dll new file mode 100644 index 0000000000000000000000000000000000000000..3247a943e9e31b73a6b45398f517a8938418160c Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/MySqlConnector.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/NPOI.Core.dll b/ImportDataToDataBaseExtensionPlugin/bin/NPOI.Core.dll new file mode 100644 index 0000000000000000000000000000000000000000..837a297b89bf7a965f3eb61a747c7eb6f90e1816 Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/NPOI.Core.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/NPOI.OOXML.dll b/ImportDataToDataBaseExtensionPlugin/bin/NPOI.OOXML.dll new file mode 100644 index 0000000000000000000000000000000000000000..e35eb8c4253961191c158409b356082c27114646 Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/NPOI.OOXML.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/NPOI.OpenXml4Net.dll b/ImportDataToDataBaseExtensionPlugin/bin/NPOI.OpenXml4Net.dll new file mode 100644 index 0000000000000000000000000000000000000000..6515648eb3d8d10de2e8d1863f291ee2988298d6 Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/NPOI.OpenXml4Net.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/NPOI.OpenXmlFormats.dll b/ImportDataToDataBaseExtensionPlugin/bin/NPOI.OpenXmlFormats.dll new file mode 100644 index 0000000000000000000000000000000000000000..57928e1eb4c18600500ea17d6ffb5d405e802b69 Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/NPOI.OpenXmlFormats.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/SixLabors.Fonts.dll b/ImportDataToDataBaseExtensionPlugin/bin/SixLabors.Fonts.dll new file mode 100644 index 0000000000000000000000000000000000000000..6fc583825efd18c6bdae70c80f745e9d6ca79372 Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/SixLabors.Fonts.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/SixLabors.ImageSharp.dll b/ImportDataToDataBaseExtensionPlugin/bin/SixLabors.ImageSharp.dll new file mode 100644 index 0000000000000000000000000000000000000000..5d3687f01ba59e1fd3d95ecc735184329e36abc3 Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/SixLabors.ImageSharp.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/System.Configuration.ConfigurationManager.dll b/ImportDataToDataBaseExtensionPlugin/bin/System.Configuration.ConfigurationManager.dll new file mode 100644 index 0000000000000000000000000000000000000000..dd73ce44ccf619fad613aaa487005fcbb1e69bd7 Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/System.Configuration.ConfigurationManager.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/System.Data.SqlClient.dll b/ImportDataToDataBaseExtensionPlugin/bin/System.Data.SqlClient.dll new file mode 100644 index 0000000000000000000000000000000000000000..8b1c1af32dee71909e396a84eb558a187d8cd939 Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/System.Data.SqlClient.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/System.Diagnostics.DiagnosticSource.dll b/ImportDataToDataBaseExtensionPlugin/bin/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000000000000000000000000000000000000..95773e2bbfad0c1560c6f600099b6724765e80c6 Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/System.Diagnostics.DiagnosticSource.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/System.IO.Pipelines.dll b/ImportDataToDataBaseExtensionPlugin/bin/System.IO.Pipelines.dll new file mode 100644 index 0000000000000000000000000000000000000000..8ee4dfdd7f982824c66d7ba5a74a1b7728d3d949 Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/System.IO.Pipelines.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/System.Security.Cryptography.Pkcs.dll b/ImportDataToDataBaseExtensionPlugin/bin/System.Security.Cryptography.Pkcs.dll new file mode 100644 index 0000000000000000000000000000000000000000..eedf8e6b5cd291664091df38ddf3674dab25c696 Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/System.Security.Cryptography.Pkcs.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/System.Security.Cryptography.ProtectedData.dll b/ImportDataToDataBaseExtensionPlugin/bin/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000000000000000000000000000000000000..b12bebfade9a4b89992440928c235d4afcbfc401 Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/System.Security.Cryptography.ProtectedData.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/System.Security.Cryptography.Xml.dll b/ImportDataToDataBaseExtensionPlugin/bin/System.Security.Cryptography.Xml.dll new file mode 100644 index 0000000000000000000000000000000000000000..b43ece0207929bb0a58c699c4be30dfa3399e73d Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/System.Security.Cryptography.Xml.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/System.Security.Permissions.dll b/ImportDataToDataBaseExtensionPlugin/bin/System.Security.Permissions.dll new file mode 100644 index 0000000000000000000000000000000000000000..f003f3ee98f005bc37b3e39e6c40f5e53304b84d Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/System.Security.Permissions.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/System.Text.Encoding.CodePages.dll b/ImportDataToDataBaseExtensionPlugin/bin/System.Text.Encoding.CodePages.dll new file mode 100644 index 0000000000000000000000000000000000000000..e539c5eb3c331f5d37697cd011200c6e974b8738 Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/System.Text.Encoding.CodePages.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/System.Text.Encodings.Web.dll b/ImportDataToDataBaseExtensionPlugin/bin/System.Text.Encodings.Web.dll new file mode 100644 index 0000000000000000000000000000000000000000..7471f7c3eef141b3f09038eb5bf95078d6bbac53 Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/System.Text.Encodings.Web.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/System.Text.Json.dll b/ImportDataToDataBaseExtensionPlugin/bin/System.Text.Json.dll new file mode 100644 index 0000000000000000000000000000000000000000..b1d0100b6c1643c76f96c6a3b7c406f08aeb9c76 Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/System.Text.Json.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/System.Windows.Extensions.dll b/ImportDataToDataBaseExtensionPlugin/bin/System.Windows.Extensions.dll new file mode 100644 index 0000000000000000000000000000000000000000..b1405832d9a6e3f716aa44e0eb3ce8d7ea35a73c Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/System.Windows.Extensions.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/ZstdSharp.dll b/ImportDataToDataBaseExtensionPlugin/bin/ZstdSharp.dll new file mode 100644 index 0000000000000000000000000000000000000000..01f9edcd3c4984538f343c735eabb8f65173f822 Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/ZstdSharp.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll b/ImportDataToDataBaseExtensionPlugin/bin/runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll new file mode 100644 index 0000000000000000000000000000000000000000..132cdf45bacd8816b73e3cc13327236462bc5511 Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll b/ImportDataToDataBaseExtensionPlugin/bin/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll new file mode 100644 index 0000000000000000000000000000000000000000..3da53a56fc9b49ea5107e902c5c662d1365f1cdb Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/runtimes/win-arm64/native/sni.dll b/ImportDataToDataBaseExtensionPlugin/bin/runtimes/win-arm64/native/sni.dll new file mode 100644 index 0000000000000000000000000000000000000000..7b8f9d86c86982a7da8b53e85eee1b24dc117f51 Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/runtimes/win-arm64/native/sni.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/runtimes/win-x64/native/comerr64.dll b/ImportDataToDataBaseExtensionPlugin/bin/runtimes/win-x64/native/comerr64.dll new file mode 100644 index 0000000000000000000000000000000000000000..0a48cb5b62db1a835b18620e3ff69042dc4d5753 Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/runtimes/win-x64/native/comerr64.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/runtimes/win-x64/native/gssapi64.dll b/ImportDataToDataBaseExtensionPlugin/bin/runtimes/win-x64/native/gssapi64.dll new file mode 100644 index 0000000000000000000000000000000000000000..1628e3842faa02d29fc6e038f8c2d03bf5b53d64 Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/runtimes/win-x64/native/gssapi64.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/runtimes/win-x64/native/k5sprt64.dll b/ImportDataToDataBaseExtensionPlugin/bin/runtimes/win-x64/native/k5sprt64.dll new file mode 100644 index 0000000000000000000000000000000000000000..9237ce9d76f38f00f0a29a308d251ad0a1e61e81 Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/runtimes/win-x64/native/k5sprt64.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/runtimes/win-x64/native/krb5_64.dll b/ImportDataToDataBaseExtensionPlugin/bin/runtimes/win-x64/native/krb5_64.dll new file mode 100644 index 0000000000000000000000000000000000000000..582f680f8ae964fdcf51c9611715855a7575bcf1 Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/runtimes/win-x64/native/krb5_64.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/runtimes/win-x64/native/krbcc64.dll b/ImportDataToDataBaseExtensionPlugin/bin/runtimes/win-x64/native/krbcc64.dll new file mode 100644 index 0000000000000000000000000000000000000000..ba5a5190d03163bf27ef08761e816e8f91f872c0 Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/runtimes/win-x64/native/krbcc64.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/runtimes/win-x64/native/sni.dll b/ImportDataToDataBaseExtensionPlugin/bin/runtimes/win-x64/native/sni.dll new file mode 100644 index 0000000000000000000000000000000000000000..c1a05a5bcca3694a6c95c3bf2c31a625020351b3 Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/runtimes/win-x64/native/sni.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/runtimes/win-x86/native/sni.dll b/ImportDataToDataBaseExtensionPlugin/bin/runtimes/win-x86/native/sni.dll new file mode 100644 index 0000000000000000000000000000000000000000..5fc21acbfc299668092f81b0d66fa9691eb4a45e Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/runtimes/win-x86/native/sni.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll b/ImportDataToDataBaseExtensionPlugin/bin/runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll new file mode 100644 index 0000000000000000000000000000000000000000..b065b1478dabe48fcbfcb74dcdb0db752e557a17 Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll b/ImportDataToDataBaseExtensionPlugin/bin/runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll new file mode 100644 index 0000000000000000000000000000000000000000..1205c7542c92bf7f245706a29921688e7e5f3ddf Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/runtimes/win/lib/net6.0/System.Windows.Extensions.dll b/ImportDataToDataBaseExtensionPlugin/bin/runtimes/win/lib/net6.0/System.Windows.Extensions.dll new file mode 100644 index 0000000000000000000000000000000000000000..ea06d3dc0cc41420418bc891bb3bfc9beb93c4bc Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/runtimes/win/lib/net6.0/System.Windows.Extensions.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/bin/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll b/ImportDataToDataBaseExtensionPlugin/bin/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll new file mode 100644 index 0000000000000000000000000000000000000000..c67f8661e59328ef8b0485f55bb8abfb9ca03657 Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/bin/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/obj/Debug/ImportDataToDataBaseExtensionPlugin.assets.cache b/ImportDataToDataBaseExtensionPlugin/obj/Debug/ImportDataToDataBaseExtensionPlugin.assets.cache index 47fc4a9d41e58c72f0ee744dc199e79092482cf5..43a0c92dcaeb40cca3b5af57fc1d5f0c0de888cb 100644 Binary files a/ImportDataToDataBaseExtensionPlugin/obj/Debug/ImportDataToDataBaseExtensionPlugin.assets.cache and b/ImportDataToDataBaseExtensionPlugin/obj/Debug/ImportDataToDataBaseExtensionPlugin.assets.cache differ diff --git a/ImportDataToDataBaseExtensionPlugin/obj/Debug/ImportDataToDataBaseExtensionPlugin.csproj.AssemblyReference.cache b/ImportDataToDataBaseExtensionPlugin/obj/Debug/ImportDataToDataBaseExtensionPlugin.csproj.AssemblyReference.cache index 7dc2077bb9170770ff3de21297c69aab33246755..2988a6cb4490594a2935bf924524ab5399713423 100644 Binary files a/ImportDataToDataBaseExtensionPlugin/obj/Debug/ImportDataToDataBaseExtensionPlugin.csproj.AssemblyReference.cache and b/ImportDataToDataBaseExtensionPlugin/obj/Debug/ImportDataToDataBaseExtensionPlugin.csproj.AssemblyReference.cache differ diff --git a/ImportDataToDataBaseExtensionPlugin/obj/Debug/ImportDataToDataBaseExtensionPlugin.csproj.CopyComplete b/ImportDataToDataBaseExtensionPlugin/obj/Debug/ImportDataToDataBaseExtensionPlugin.csproj.CopyComplete new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/ImportDataToDataBaseExtensionPlugin/obj/Debug/ImportDataToDataBaseExtensionPlugin.csproj.CoreCompileInputs.cache b/ImportDataToDataBaseExtensionPlugin/obj/Debug/ImportDataToDataBaseExtensionPlugin.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000000000000000000000000000000000000..5846334259eb0ba52a51332b5f558ab96d31f392 --- /dev/null +++ b/ImportDataToDataBaseExtensionPlugin/obj/Debug/ImportDataToDataBaseExtensionPlugin.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +e0101997f0c80733d735f9f96a49de4b48221c39 diff --git a/ImportDataToDataBaseExtensionPlugin/obj/Debug/ImportDataToDataBaseExtensionPlugin.csproj.FileListAbsolute.txt b/ImportDataToDataBaseExtensionPlugin/obj/Debug/ImportDataToDataBaseExtensionPlugin.csproj.FileListAbsolute.txt new file mode 100644 index 0000000000000000000000000000000000000000..f64252c85cae1528fadaba9dda44f4bcb21fe93f --- /dev/null +++ b/ImportDataToDataBaseExtensionPlugin/obj/Debug/ImportDataToDataBaseExtensionPlugin.csproj.FileListAbsolute.txt @@ -0,0 +1,59 @@ +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\ImportDataToDataBaseExtensionPlugin.deps.json +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\ImportDataToDataBaseExtensionPlugin.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\ImportDataToDataBaseExtensionPlugin.pdb +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\BouncyCastle.Cryptography.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\Enums.NET.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\ExtendedNumerics.BigDecimal.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\MathNet.Numerics.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\Microsoft.IO.RecyclableMemoryStream.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\NPOI.Core.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\NPOI.OOXML.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\NPOI.OpenXml4Net.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\NPOI.OpenXmlFormats.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\ICSharpCode.SharpZipLib.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\SixLabors.Fonts.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\SixLabors.ImageSharp.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\System.Data.SqlClient.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\System.Security.Cryptography.Pkcs.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\System.Security.Cryptography.Xml.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\runtimes\win-arm64\native\sni.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\runtimes\win-x64\native\sni.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\runtimes\win-x86\native\sni.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\runtimes\win\lib\net6.0\System.Security.Cryptography.Pkcs.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\obj\Debug\ImportDataToDataBaseExtensionPlugin.csproj.AssemblyReference.cache +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\obj\Debug\ImportDataToDataBaseExtensionPlugin.g.resources +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\obj\Debug\ImportDataToDataBaseExtensionPlugin.GeneratedMSBuildEditorConfig.editorconfig +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\obj\Debug\ImportDataToDataBaseExtensionPlugin.AssemblyInfoInputs.cache +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\obj\Debug\ImportDataToDataBaseExtensionPlugin.AssemblyInfo.cs +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\obj\Debug\ImportDataToDataBaseExtensionPlugin.csproj.CoreCompileInputs.cache +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\obj\Debug\ImportDataToDataBaseExtensionPlugin.csproj.CopyComplete +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\obj\Debug\ImportDataToDataBaseExtensionPlugin.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\obj\Debug\refint\ImportDataToDataBaseExtensionPlugin.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\obj\Debug\ImportDataToDataBaseExtensionPlugin.pdb +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\obj\Debug\ref\ImportDataToDataBaseExtensionPlugin.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\Google.Protobuf.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\K4os.Compression.LZ4.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\K4os.Compression.LZ4.Streams.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\K4os.Hash.xxHash.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\MySql.Data.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\System.Configuration.ConfigurationManager.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\System.Diagnostics.DiagnosticSource.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\System.IO.Pipelines.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\System.Security.Cryptography.ProtectedData.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\System.Security.Permissions.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\System.Text.Encoding.CodePages.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\System.Text.Encodings.Web.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\System.Text.Json.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\System.Windows.Extensions.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\ZstdSharp.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\runtimes\win-x64\native\comerr64.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\runtimes\win-x64\native\gssapi64.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\runtimes\win-x64\native\k5sprt64.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\runtimes\win-x64\native\krb5_64.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\runtimes\win-x64\native\krbcc64.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\runtimes\win\lib\net6.0\System.Text.Encoding.CodePages.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\runtimes\browser\lib\net6.0\System.Text.Encodings.Web.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\runtimes\win\lib\net6.0\System.Windows.Extensions.dll +D:\ForguncyCode\ImportDataToDataBaseExtensionPlugin\ImportDataToDataBaseExtensionPlugin\bin\MySqlConnector.dll diff --git a/ImportDataToDataBaseExtensionPlugin/obj/Debug/ImportDataToDataBaseExtensionPlugin.dll b/ImportDataToDataBaseExtensionPlugin/obj/Debug/ImportDataToDataBaseExtensionPlugin.dll new file mode 100644 index 0000000000000000000000000000000000000000..644b000afdf1aa964e9701d3ef35df2ca52bee4f Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/obj/Debug/ImportDataToDataBaseExtensionPlugin.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/obj/Debug/ImportDataToDataBaseExtensionPlugin.g.resources b/ImportDataToDataBaseExtensionPlugin/obj/Debug/ImportDataToDataBaseExtensionPlugin.g.resources new file mode 100644 index 0000000000000000000000000000000000000000..94b50d0f80b8397442c011e1dedd074fea8b31ef Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/obj/Debug/ImportDataToDataBaseExtensionPlugin.g.resources differ diff --git a/ImportDataToDataBaseExtensionPlugin/obj/Debug/ImportDataToDataBaseExtensionPlugin.pdb b/ImportDataToDataBaseExtensionPlugin/obj/Debug/ImportDataToDataBaseExtensionPlugin.pdb new file mode 100644 index 0000000000000000000000000000000000000000..1b7784897757e7dd75787e44532f455b38abc0ec Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/obj/Debug/ImportDataToDataBaseExtensionPlugin.pdb differ diff --git a/ImportDataToDataBaseExtensionPlugin/obj/Debug/ref/ImportDataToDataBaseExtensionPlugin.dll b/ImportDataToDataBaseExtensionPlugin/obj/Debug/ref/ImportDataToDataBaseExtensionPlugin.dll new file mode 100644 index 0000000000000000000000000000000000000000..111813acfef7c9afe0757c686cfd27a9b6e99497 Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/obj/Debug/ref/ImportDataToDataBaseExtensionPlugin.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/obj/Debug/refint/ImportDataToDataBaseExtensionPlugin.dll b/ImportDataToDataBaseExtensionPlugin/obj/Debug/refint/ImportDataToDataBaseExtensionPlugin.dll new file mode 100644 index 0000000000000000000000000000000000000000..111813acfef7c9afe0757c686cfd27a9b6e99497 Binary files /dev/null and b/ImportDataToDataBaseExtensionPlugin/obj/Debug/refint/ImportDataToDataBaseExtensionPlugin.dll differ diff --git a/ImportDataToDataBaseExtensionPlugin/obj/ImportDataToDataBaseExtensionPlugin.csproj.nuget.dgspec.json b/ImportDataToDataBaseExtensionPlugin/obj/ImportDataToDataBaseExtensionPlugin.csproj.nuget.dgspec.json index 047ddbbb8c97df807b358952464b3d86e07b1541..d49680a09570c5cfe6de68e0ca537ad66014e6eb 100644 --- a/ImportDataToDataBaseExtensionPlugin/obj/ImportDataToDataBaseExtensionPlugin.csproj.nuget.dgspec.json +++ b/ImportDataToDataBaseExtensionPlugin/obj/ImportDataToDataBaseExtensionPlugin.csproj.nuget.dgspec.json @@ -39,6 +39,24 @@ "frameworks": { "net6.0-windows7.0": { "targetAlias": "net6.0-windows", + "dependencies": { + "MySqlConnector": { + "target": "Package", + "version": "[2.1.2, )" + }, + "NPOI": { + "target": "Package", + "version": "[2.7.0, )" + }, + "System.Data.SqlClient": { + "target": "Package", + "version": "[4.8.6, )" + }, + "System.Diagnostics.DiagnosticSource": { + "target": "Package", + "version": "[8.0.1, )" + } + }, "imports": [ "net461", "net462", diff --git a/ImportDataToDataBaseExtensionPlugin/obj/project.assets.json b/ImportDataToDataBaseExtensionPlugin/obj/project.assets.json index bb46ec7d5cecdf7b8577a3b412775c61be0698f7..76b70d6c4b875b8c4f38fa3c361651c0799611ce 100644 --- a/ImportDataToDataBaseExtensionPlugin/obj/project.assets.json +++ b/ImportDataToDataBaseExtensionPlugin/obj/project.assets.json @@ -1,11 +1,1516 @@ { "version": 3, "targets": { - "net6.0-windows7.0": {} + "net6.0-windows7.0": { + "BouncyCastle.Cryptography/2.3.0": { + "type": "package", + "compile": { + "lib/net6.0/BouncyCastle.Cryptography.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/BouncyCastle.Cryptography.dll": { + "related": ".xml" + } + } + }, + "Enums.NET/4.0.1": { + "type": "package", + "compile": { + "lib/netcoreapp3.0/Enums.NET.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/Enums.NET.dll": { + "related": ".pdb;.xml" + } + } + }, + "ExtendedNumerics.BigDecimal/2023.1000.0.230": { + "type": "package", + "compile": { + "lib/net6.0/ExtendedNumerics.BigDecimal.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/ExtendedNumerics.BigDecimal.dll": { + "related": ".xml" + } + } + }, + "MathNet.Numerics.Signed/5.0.0": { + "type": "package", + "compile": { + "lib/net6.0/MathNet.Numerics.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/MathNet.Numerics.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IO.RecyclableMemoryStream/3.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": { + "related": ".xml" + } + } + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "MySqlConnector/2.1.2": { + "type": "package", + "compile": { + "lib/net6.0/MySqlConnector.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/MySqlConnector.dll": { + "related": ".xml" + } + } + }, + "NPOI/2.7.0": { + "type": "package", + "dependencies": { + "BouncyCastle.Cryptography": "2.3.0", + "Enums.NET": "4.0.1", + "ExtendedNumerics.BigDecimal": "2023.1000.0.230", + "MathNet.Numerics.Signed": "5.0.0", + "Microsoft.IO.RecyclableMemoryStream": "3.0.0", + "SharpZipLib": "1.3.3", + "SixLabors.Fonts": "1.0.1", + "SixLabors.ImageSharp": "2.1.7", + "System.Configuration.ConfigurationManager": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.3", + "System.Security.Cryptography.Xml": "6.0.1" + }, + "compile": { + "lib/net6.0/NPOI.Core.dll": { + "related": ".pdb;.xml" + }, + "lib/net6.0/NPOI.OOXML.dll": { + "related": ".pdb;.xml" + }, + "lib/net6.0/NPOI.OpenXml4Net.dll": { + "related": ".pdb;.xml" + }, + "lib/net6.0/NPOI.OpenXmlFormats.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/NPOI.Core.dll": { + "related": ".pdb;.xml" + }, + "lib/net6.0/NPOI.OOXML.dll": { + "related": ".pdb;.xml" + }, + "lib/net6.0/NPOI.OpenXml4Net.dll": { + "related": ".pdb;.xml" + }, + "lib/net6.0/NPOI.OpenXmlFormats.dll": { + "related": ".pdb;.xml" + } + } + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "type": "package", + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "assetType": "native", + "rid": "win-arm64" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "assetType": "native", + "rid": "win-x64" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "SharpZipLib/1.3.3": { + "type": "package", + "compile": { + "lib/netstandard2.1/ICSharpCode.SharpZipLib.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/ICSharpCode.SharpZipLib.dll": { + "related": ".pdb;.xml" + } + } + }, + "SixLabors.Fonts/1.0.1": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/SixLabors.Fonts.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/SixLabors.Fonts.dll": { + "related": ".xml" + } + } + }, + "SixLabors.ImageSharp/2.1.7": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "5.0.0", + "System.Text.Encoding.CodePages": "5.0.0" + }, + "compile": { + "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": { + "related": ".xml" + } + } + }, + "System.Configuration.ConfigurationManager/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Data.SqlClient/4.8.6": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "runtime.native.System.Data.SqlClient.sni": "4.7.0" + }, + "compile": { + "ref/netcoreapp2.1/System.Data.SqlClient.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.DiagnosticSource/8.0.1": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Formats.Asn1/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Formats.Asn1.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Formats.Asn1.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Pkcs/6.0.3": { + "type": "package", + "dependencies": { + "System.Formats.Asn1": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Security.Cryptography.Pkcs.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.Pkcs.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Xml/6.0.1": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.1" + }, + "compile": { + "lib/net6.0/System.Security.Cryptography.Xml.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.Xml.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding.CodePages/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + } + } + }, + "libraries": { + "BouncyCastle.Cryptography/2.3.0": { + "sha512": "IaVIiYxZLaBulveGDRUx/pBoW/Rc8QeXGF5u2E8xL8RWhVKCgfmtX9NUyGRbnSqnbFQU2zyP3MkXIdH+jUuQBw==", + "type": "package", + "path": "bouncycastle.cryptography/2.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "bouncycastle.cryptography.2.3.0.nupkg.sha512", + "bouncycastle.cryptography.nuspec", + "lib/net461/BouncyCastle.Cryptography.dll", + "lib/net461/BouncyCastle.Cryptography.xml", + "lib/net6.0/BouncyCastle.Cryptography.dll", + "lib/net6.0/BouncyCastle.Cryptography.xml", + "lib/netstandard2.0/BouncyCastle.Cryptography.dll", + "lib/netstandard2.0/BouncyCastle.Cryptography.xml", + "packageIcon.png" + ] + }, + "Enums.NET/4.0.1": { + "sha512": "OUGCd5L8zHZ61GAf436G0gf/H6yrSUkEpV5vm2CbCUuz9Rx7iLFLP5iHSSfmOtqNpuyo4vYte0CvYEmPZXRmRQ==", + "type": "package", + "path": "enums.net/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "enums.net.4.0.1.nupkg.sha512", + "enums.net.nuspec", + "lib/net45/Enums.NET.dll", + "lib/net45/Enums.NET.pdb", + "lib/net45/Enums.NET.xml", + "lib/netcoreapp3.0/Enums.NET.dll", + "lib/netcoreapp3.0/Enums.NET.pdb", + "lib/netcoreapp3.0/Enums.NET.xml", + "lib/netstandard1.0/Enums.NET.dll", + "lib/netstandard1.0/Enums.NET.pdb", + "lib/netstandard1.0/Enums.NET.xml", + "lib/netstandard1.1/Enums.NET.dll", + "lib/netstandard1.1/Enums.NET.pdb", + "lib/netstandard1.1/Enums.NET.xml", + "lib/netstandard1.3/Enums.NET.dll", + "lib/netstandard1.3/Enums.NET.pdb", + "lib/netstandard1.3/Enums.NET.xml", + "lib/netstandard2.0/Enums.NET.dll", + "lib/netstandard2.0/Enums.NET.pdb", + "lib/netstandard2.0/Enums.NET.xml", + "lib/netstandard2.1/Enums.NET.dll", + "lib/netstandard2.1/Enums.NET.pdb", + "lib/netstandard2.1/Enums.NET.xml" + ] + }, + "ExtendedNumerics.BigDecimal/2023.1000.0.230": { + "sha512": "kbEPff0V3AOgVpOidwEvB/k4d/74h6NgUbnHp3ZvPxz6QqsKXP5Zry2zUroyQUyztp3yDLtFT89XY5rfaShZAw==", + "type": "package", + "path": "extendednumerics.bigdecimal/2023.1000.0.230", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "extendednumerics.bigdecimal.2023.1000.0.230.nupkg.sha512", + "extendednumerics.bigdecimal.nuspec", + "lib/net45/ExtendedNumerics.BigDecimal.dll", + "lib/net45/ExtendedNumerics.BigDecimal.xml", + "lib/net46/ExtendedNumerics.BigDecimal.dll", + "lib/net46/ExtendedNumerics.BigDecimal.xml", + "lib/net472/ExtendedNumerics.BigDecimal.dll", + "lib/net472/ExtendedNumerics.BigDecimal.xml", + "lib/net48/ExtendedNumerics.BigDecimal.dll", + "lib/net48/ExtendedNumerics.BigDecimal.xml", + "lib/net5.0/ExtendedNumerics.BigDecimal.dll", + "lib/net5.0/ExtendedNumerics.BigDecimal.xml", + "lib/net6.0/ExtendedNumerics.BigDecimal.dll", + "lib/net6.0/ExtendedNumerics.BigDecimal.xml", + "lib/net7.0/ExtendedNumerics.BigDecimal.dll", + "lib/net7.0/ExtendedNumerics.BigDecimal.xml", + "lib/netcoreapp3.1/ExtendedNumerics.BigDecimal.dll", + "lib/netcoreapp3.1/ExtendedNumerics.BigDecimal.xml", + "lib/netstandard2.0/ExtendedNumerics.BigDecimal.dll", + "lib/netstandard2.0/ExtendedNumerics.BigDecimal.xml", + "lib/netstandard2.1/ExtendedNumerics.BigDecimal.dll", + "lib/netstandard2.1/ExtendedNumerics.BigDecimal.xml" + ] + }, + "MathNet.Numerics.Signed/5.0.0": { + "sha512": "PSrHBVMf41SjbhlnpOMnoir8YgkyEJ6/nwxvjYpH+vJCexNcx2ms6zRww5yLVqLet1xLJgZ39swtKRTLhWdnAw==", + "type": "package", + "path": "mathnet.numerics.signed/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net461/MathNet.Numerics.dll", + "lib/net461/MathNet.Numerics.xml", + "lib/net48/MathNet.Numerics.dll", + "lib/net48/MathNet.Numerics.xml", + "lib/net5.0/MathNet.Numerics.dll", + "lib/net5.0/MathNet.Numerics.xml", + "lib/net6.0/MathNet.Numerics.dll", + "lib/net6.0/MathNet.Numerics.xml", + "lib/netstandard2.0/MathNet.Numerics.dll", + "lib/netstandard2.0/MathNet.Numerics.xml", + "mathnet.numerics.signed.5.0.0.nupkg.sha512", + "mathnet.numerics.signed.nuspec" + ] + }, + "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/5.0.0": { + "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "type": "package", + "path": "microsoft.netcore.platforms/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.5.0.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.Registry/4.7.0": { + "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "type": "package", + "path": "microsoft.win32.registry/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.4.7.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/net472/Microsoft.Win32.Registry.dll", + "ref/net472/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "type": "package", + "path": "microsoft.win32.systemevents/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt" + ] + }, + "MySqlConnector/2.1.2": { + "sha512": "JVokQTUNN3WHAu9Vw8ieeq1dXTFokJiig5P0VJ4f439UxRrsPo6SaVWC8Zdm6mkPeQFhZ0/9afdWa02EY/1j/w==", + "type": "package", + "path": "mysqlconnector/2.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net45/MySqlConnector.dll", + "lib/net45/MySqlConnector.xml", + "lib/net461/MySqlConnector.dll", + "lib/net461/MySqlConnector.xml", + "lib/net471/MySqlConnector.dll", + "lib/net471/MySqlConnector.xml", + "lib/net5.0/MySqlConnector.dll", + "lib/net5.0/MySqlConnector.xml", + "lib/net6.0/MySqlConnector.dll", + "lib/net6.0/MySqlConnector.xml", + "lib/netcoreapp3.1/MySqlConnector.dll", + "lib/netcoreapp3.1/MySqlConnector.xml", + "lib/netstandard2.0/MySqlConnector.dll", + "lib/netstandard2.0/MySqlConnector.xml", + "lib/netstandard2.1/MySqlConnector.dll", + "lib/netstandard2.1/MySqlConnector.xml", + "logo.png", + "mysqlconnector.2.1.2.nupkg.sha512", + "mysqlconnector.nuspec" + ] + }, + "NPOI/2.7.0": { + "sha512": "yexXTxBKJT845yOSRDkgrgc3ciEWRnp8vMIRoZLOmUs7QJoCp5ZSi4wTPXtwYdhRg2v5Up9nC1TVKxrtkDcsYg==", + "type": "package", + "path": "npoi/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "Read Me.txt", + "lib/net472/NPOI.Core.dll", + "lib/net472/NPOI.Core.pdb", + "lib/net472/NPOI.Core.xml", + "lib/net472/NPOI.OOXML.dll", + "lib/net472/NPOI.OOXML.pdb", + "lib/net472/NPOI.OOXML.xml", + "lib/net472/NPOI.OpenXml4Net.dll", + "lib/net472/NPOI.OpenXml4Net.pdb", + "lib/net472/NPOI.OpenXml4Net.xml", + "lib/net472/NPOI.OpenXmlFormats.dll", + "lib/net472/NPOI.OpenXmlFormats.pdb", + "lib/net472/NPOI.OpenXmlFormats.xml", + "lib/net6.0/NPOI.Core.dll", + "lib/net6.0/NPOI.Core.pdb", + "lib/net6.0/NPOI.Core.xml", + "lib/net6.0/NPOI.OOXML.dll", + "lib/net6.0/NPOI.OOXML.pdb", + "lib/net6.0/NPOI.OOXML.xml", + "lib/net6.0/NPOI.OpenXml4Net.dll", + "lib/net6.0/NPOI.OpenXml4Net.pdb", + "lib/net6.0/NPOI.OpenXml4Net.xml", + "lib/net6.0/NPOI.OpenXmlFormats.dll", + "lib/net6.0/NPOI.OpenXmlFormats.pdb", + "lib/net6.0/NPOI.OpenXmlFormats.xml", + "lib/netstandard2.0/NPOI.Core.dll", + "lib/netstandard2.0/NPOI.Core.pdb", + "lib/netstandard2.0/NPOI.Core.xml", + "lib/netstandard2.0/NPOI.OOXML.dll", + "lib/netstandard2.0/NPOI.OOXML.pdb", + "lib/netstandard2.0/NPOI.OOXML.xml", + "lib/netstandard2.0/NPOI.OpenXml4Net.dll", + "lib/netstandard2.0/NPOI.OpenXml4Net.pdb", + "lib/netstandard2.0/NPOI.OpenXml4Net.xml", + "lib/netstandard2.0/NPOI.OpenXmlFormats.dll", + "lib/netstandard2.0/NPOI.OpenXmlFormats.pdb", + "lib/netstandard2.0/NPOI.OpenXmlFormats.xml", + "lib/netstandard2.1/NPOI.Core.dll", + "lib/netstandard2.1/NPOI.Core.pdb", + "lib/netstandard2.1/NPOI.Core.xml", + "lib/netstandard2.1/NPOI.OOXML.dll", + "lib/netstandard2.1/NPOI.OOXML.pdb", + "lib/netstandard2.1/NPOI.OOXML.xml", + "lib/netstandard2.1/NPOI.OpenXml4Net.dll", + "lib/netstandard2.1/NPOI.OpenXml4Net.pdb", + "lib/netstandard2.1/NPOI.OpenXml4Net.xml", + "lib/netstandard2.1/NPOI.OpenXmlFormats.dll", + "lib/netstandard2.1/NPOI.OpenXmlFormats.pdb", + "lib/netstandard2.1/NPOI.OpenXmlFormats.xml", + "logo/120_120.jpg", + "logo/240_240.png", + "logo/32_32.jpg", + "logo/60_60.jpg", + "npoi.2.7.0.nupkg.sha512", + "npoi.nuspec" + ] + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "sha512": "9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", + "type": "package", + "path": "runtime.native.system.data.sqlclient.sni/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", + "runtime.native.system.data.sqlclient.sni.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "type": "package", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-arm64/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "type": "package", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-x64/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "type": "package", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-x86/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "SharpZipLib/1.3.3": { + "sha512": "N8+hwhsKZm25tDJfWpBSW7EGhH/R7EMuiX+KJ4C4u+fCWVc1lJ5zg1u3S1RPPVYgTqhx/C3hxrqUpi6RwK5+Tg==", + "type": "package", + "path": "sharpziplib/1.3.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "images/sharpziplib-nuget-256x256.png", + "lib/net45/ICSharpCode.SharpZipLib.dll", + "lib/net45/ICSharpCode.SharpZipLib.pdb", + "lib/net45/ICSharpCode.SharpZipLib.xml", + "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll", + "lib/netstandard2.0/ICSharpCode.SharpZipLib.pdb", + "lib/netstandard2.0/ICSharpCode.SharpZipLib.xml", + "lib/netstandard2.1/ICSharpCode.SharpZipLib.dll", + "lib/netstandard2.1/ICSharpCode.SharpZipLib.pdb", + "lib/netstandard2.1/ICSharpCode.SharpZipLib.xml", + "sharpziplib.1.3.3.nupkg.sha512", + "sharpziplib.nuspec" + ] + }, + "SixLabors.Fonts/1.0.1": { + "sha512": "ljezRHWc7N0azdQViib7Aa5v+DagRVkKI2/93kEbtjVczLs+yTkSq6gtGmvOcx4IqyNbO3GjLt7SAQTpLkySNw==", + "type": "package", + "path": "sixlabors.fonts/1.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp3.1/SixLabors.Fonts.dll", + "lib/netcoreapp3.1/SixLabors.Fonts.xml", + "lib/netstandard2.0/SixLabors.Fonts.dll", + "lib/netstandard2.0/SixLabors.Fonts.xml", + "lib/netstandard2.1/SixLabors.Fonts.dll", + "lib/netstandard2.1/SixLabors.Fonts.xml", + "sixlabors.fonts.1.0.1.nupkg.sha512", + "sixlabors.fonts.128.png", + "sixlabors.fonts.nuspec" + ] + }, + "SixLabors.ImageSharp/2.1.7": { + "sha512": "CiOV86pE4v1U850lO8zTRXQMysFCo40DJnHwxX8mIJbJ/unr7I9avhHqCh3BvU0sOSDdCp/2LcIz+7zVCWjMZw==", + "type": "package", + "path": "sixlabors.imagesharp/2.1.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net472/SixLabors.ImageSharp.dll", + "lib/net472/SixLabors.ImageSharp.xml", + "lib/netcoreapp2.1/SixLabors.ImageSharp.dll", + "lib/netcoreapp2.1/SixLabors.ImageSharp.xml", + "lib/netcoreapp3.1/SixLabors.ImageSharp.dll", + "lib/netcoreapp3.1/SixLabors.ImageSharp.xml", + "lib/netstandard2.0/SixLabors.ImageSharp.dll", + "lib/netstandard2.0/SixLabors.ImageSharp.xml", + "lib/netstandard2.1/SixLabors.ImageSharp.dll", + "lib/netstandard2.1/SixLabors.ImageSharp.xml", + "sixlabors.imagesharp.128.png", + "sixlabors.imagesharp.2.1.7.nupkg.sha512", + "sixlabors.imagesharp.nuspec" + ] + }, + "System.Configuration.ConfigurationManager/6.0.0": { + "sha512": "7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==", + "type": "package", + "path": "system.configuration.configurationmanager/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/net461/System.Configuration.ConfigurationManager.xml", + "lib/net6.0/System.Configuration.ConfigurationManager.dll", + "lib/net6.0/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll", + "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.6.0.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Data.SqlClient/4.8.6": { + "sha512": "2Ij/LCaTQRyAi5lAv7UUTV9R2FobC8xN9mE0fXBZohum/xLl8IZVmE98Rq5ugQHjCgTBRKqpXRb4ORulRdA6Ig==", + "type": "package", + "path": "system.data.sqlclient/4.8.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/System.Data.SqlClient.dll", + "lib/net46/System.Data.SqlClient.dll", + "lib/net461/System.Data.SqlClient.dll", + "lib/net461/System.Data.SqlClient.xml", + "lib/netcoreapp2.1/System.Data.SqlClient.dll", + "lib/netcoreapp2.1/System.Data.SqlClient.xml", + "lib/netstandard1.2/System.Data.SqlClient.dll", + "lib/netstandard1.2/System.Data.SqlClient.xml", + "lib/netstandard1.3/System.Data.SqlClient.dll", + "lib/netstandard1.3/System.Data.SqlClient.xml", + "lib/netstandard2.0/System.Data.SqlClient.dll", + "lib/netstandard2.0/System.Data.SqlClient.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/System.Data.SqlClient.dll", + "ref/net46/System.Data.SqlClient.dll", + "ref/net461/System.Data.SqlClient.dll", + "ref/net461/System.Data.SqlClient.xml", + "ref/netcoreapp2.1/System.Data.SqlClient.dll", + "ref/netcoreapp2.1/System.Data.SqlClient.xml", + "ref/netstandard1.2/System.Data.SqlClient.dll", + "ref/netstandard1.2/System.Data.SqlClient.xml", + "ref/netstandard1.2/de/System.Data.SqlClient.xml", + "ref/netstandard1.2/es/System.Data.SqlClient.xml", + "ref/netstandard1.2/fr/System.Data.SqlClient.xml", + "ref/netstandard1.2/it/System.Data.SqlClient.xml", + "ref/netstandard1.2/ja/System.Data.SqlClient.xml", + "ref/netstandard1.2/ko/System.Data.SqlClient.xml", + "ref/netstandard1.2/ru/System.Data.SqlClient.xml", + "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml", + "ref/netstandard1.3/System.Data.SqlClient.dll", + "ref/netstandard1.3/System.Data.SqlClient.xml", + "ref/netstandard1.3/de/System.Data.SqlClient.xml", + "ref/netstandard1.3/es/System.Data.SqlClient.xml", + "ref/netstandard1.3/fr/System.Data.SqlClient.xml", + "ref/netstandard1.3/it/System.Data.SqlClient.xml", + "ref/netstandard1.3/ja/System.Data.SqlClient.xml", + "ref/netstandard1.3/ko/System.Data.SqlClient.xml", + "ref/netstandard1.3/ru/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml", + "ref/netstandard2.0/System.Data.SqlClient.dll", + "ref/netstandard2.0/System.Data.SqlClient.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.xml", + "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.xml", + "runtimes/win/lib/net451/System.Data.SqlClient.dll", + "runtimes/win/lib/net46/System.Data.SqlClient.dll", + "runtimes/win/lib/net461/System.Data.SqlClient.dll", + "runtimes/win/lib/net461/System.Data.SqlClient.xml", + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll", + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.xml", + "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.xml", + "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.dll", + "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.xml", + "system.data.sqlclient.4.8.6.nupkg.sha512", + "system.data.sqlclient.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.DiagnosticSource/8.0.1": { + "sha512": "vaoWjvkG1aenR2XdjaVivlCV9fADfgyhW5bZtXT23qaEea0lWiUljdQuze4E31vKM7ZWJaSUsbYIKE3rnzfZUg==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", + "lib/net462/System.Diagnostics.DiagnosticSource.dll", + "lib/net462/System.Diagnostics.DiagnosticSource.xml", + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net6.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net7.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net7.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net8.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Drawing.Common/6.0.0": { + "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "type": "package", + "path": "system.drawing.common/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/net461/System.Drawing.Common.xml", + "lib/net6.0/System.Drawing.Common.dll", + "lib/net6.0/System.Drawing.Common.xml", + "lib/netcoreapp3.1/System.Drawing.Common.dll", + "lib/netcoreapp3.1/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll", + "runtimes/unix/lib/net6.0/System.Drawing.Common.xml", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml", + "runtimes/win/lib/net6.0/System.Drawing.Common.dll", + "runtimes/win/lib/net6.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml", + "system.drawing.common.6.0.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Formats.Asn1/6.0.0": { + "sha512": "T6fD00dQ3NTbPDy31m4eQUwKW84s03z0N2C8HpOklyeaDgaJPa/TexP4/SkORMSOwc7WhKifnA6Ya33AkzmafA==", + "type": "package", + "path": "system.formats.asn1/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Formats.Asn1.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Formats.Asn1.dll", + "lib/net461/System.Formats.Asn1.xml", + "lib/net6.0/System.Formats.Asn1.dll", + "lib/net6.0/System.Formats.Asn1.xml", + "lib/netstandard2.0/System.Formats.Asn1.dll", + "lib/netstandard2.0/System.Formats.Asn1.xml", + "system.formats.asn1.6.0.0.nupkg.sha512", + "system.formats.asn1.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "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", + "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.AccessControl/6.0.0": { + "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "type": "package", + "path": "system.security.accesscontrol/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/net6.0/System.Security.AccessControl.dll", + "lib/net6.0/System.Security.AccessControl.xml", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll", + "runtimes/win/lib/net6.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml", + "system.security.accesscontrol.6.0.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.Pkcs/6.0.3": { + "sha512": "18UT1BdZ4TYFBHk/wuq7JzCdE3X75z81X+C2rXqIlmEnC21Pm60spGV/dKQSzbyomstqYE33EuN5hfnC86VFxA==", + "type": "package", + "path": "system.security.cryptography.pkcs/6.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Pkcs.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.Cryptography.Pkcs.dll", + "lib/net461/System.Security.Cryptography.Pkcs.xml", + "lib/net6.0/System.Security.Cryptography.Pkcs.dll", + "lib/net6.0/System.Security.Cryptography.Pkcs.xml", + "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll", + "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml", + "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", + "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/net461/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net461/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/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml", + "system.security.cryptography.pkcs.6.0.3.nupkg.sha512", + "system.security.cryptography.pkcs.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", + "type": "package", + "path": "system.security.cryptography.protecteddata/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.xml", + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.Xml/6.0.1": { + "sha512": "5e5bI28T0x73AwTsbuFP4qSRzthmU2C0Gqgg3AZ3KTxmSyA+Uhk31puA3srdaeWaacVnHhLdJywCzqOiEpbO/w==", + "type": "package", + "path": "system.security.cryptography.xml/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Xml.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.Cryptography.Xml.dll", + "lib/net461/System.Security.Cryptography.Xml.xml", + "lib/net6.0/System.Security.Cryptography.Xml.dll", + "lib/net6.0/System.Security.Cryptography.Xml.xml", + "lib/netstandard2.0/System.Security.Cryptography.Xml.dll", + "lib/netstandard2.0/System.Security.Cryptography.Xml.xml", + "runtimes/win/lib/net461/System.Security.Cryptography.Xml.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Xml.xml", + "system.security.cryptography.xml.6.0.1.nupkg.sha512", + "system.security.cryptography.xml.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Permissions/6.0.0": { + "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "type": "package", + "path": "system.security.permissions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.Permissions.dll", + "lib/net461/System.Security.Permissions.xml", + "lib/net5.0/System.Security.Permissions.dll", + "lib/net5.0/System.Security.Permissions.xml", + "lib/net6.0/System.Security.Permissions.dll", + "lib/net6.0/System.Security.Permissions.xml", + "lib/netcoreapp3.1/System.Security.Permissions.dll", + "lib/netcoreapp3.1/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "runtimes/win/lib/net461/System.Security.Permissions.dll", + "runtimes/win/lib/net461/System.Security.Permissions.xml", + "system.security.permissions.6.0.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Principal.Windows/4.7.0": { + "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "type": "package", + "path": "system.security.principal.windows/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.4.7.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding.CodePages/5.0.0": { + "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==", + "type": "package", + "path": "system.text.encoding.codepages/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.xml", + "lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "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/net461/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "system.text.encoding.codepages.5.0.0.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Windows.Extensions/6.0.0": { + "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "type": "package", + "path": "system.windows.extensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/System.Windows.Extensions.dll", + "lib/net6.0/System.Windows.Extensions.xml", + "lib/netcoreapp3.1/System.Windows.Extensions.dll", + "lib/netcoreapp3.1/System.Windows.Extensions.xml", + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net6.0/System.Windows.Extensions.xml", + "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll", + "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml", + "system.windows.extensions.6.0.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt" + ] + } }, - "libraries": {}, "projectFileDependencyGroups": { - "net6.0-windows7.0": [] + "net6.0-windows7.0": [ + "MySqlConnector >= 2.1.2", + "NPOI >= 2.7.0", + "System.Data.SqlClient >= 4.8.6", + "System.Diagnostics.DiagnosticSource >= 8.0.1" + ] }, "packageFolders": { "C:\\Users\\admin\\.nuget\\packages\\": {} @@ -45,6 +1550,24 @@ "frameworks": { "net6.0-windows7.0": { "targetAlias": "net6.0-windows", + "dependencies": { + "MySqlConnector": { + "target": "Package", + "version": "[2.1.2, )" + }, + "NPOI": { + "target": "Package", + "version": "[2.7.0, )" + }, + "System.Data.SqlClient": { + "target": "Package", + "version": "[4.8.6, )" + }, + "System.Diagnostics.DiagnosticSource": { + "target": "Package", + "version": "[8.0.1, )" + } + }, "imports": [ "net461", "net462", diff --git a/ImportDataToDataBaseExtensionPlugin/obj/project.nuget.cache b/ImportDataToDataBaseExtensionPlugin/obj/project.nuget.cache index 68edc7e0a15c99d7dc4c169eb0356f8f4c6fbb26..2a312274ecfd6ee98fe3f3a5d20d1a47ff0e1893 100644 --- a/ImportDataToDataBaseExtensionPlugin/obj/project.nuget.cache +++ b/ImportDataToDataBaseExtensionPlugin/obj/project.nuget.cache @@ -1,8 +1,40 @@ { "version": 2, - "dgSpecHash": "b8vI7lD/+ccYwADvw0MsdFflSeU1owDcgk99egeE+CCpqv0tYS9mXx9QY3/ijiqNw5/6WQ7XaDIqqsjk8MZU8A==", + "dgSpecHash": "iNUoXeaxYhqngkqIE5e6/qGCnRK5PerVs8FZV8RWKRTZxnnw71Xqr2/OVdq113RzubMHVF5snKm8Gd2HRfB//w==", "success": true, "projectFilePath": "D:\\ForguncyCode\\ImportDataToDataBaseExtensionPlugin\\ImportDataToDataBaseExtensionPlugin\\ImportDataToDataBaseExtensionPlugin.csproj", - "expectedPackageFiles": [], + "expectedPackageFiles": [ + "C:\\Users\\admin\\.nuget\\packages\\bouncycastle.cryptography\\2.3.0\\bouncycastle.cryptography.2.3.0.nupkg.sha512", + "C:\\Users\\admin\\.nuget\\packages\\enums.net\\4.0.1\\enums.net.4.0.1.nupkg.sha512", + "C:\\Users\\admin\\.nuget\\packages\\extendednumerics.bigdecimal\\2023.1000.0.230\\extendednumerics.bigdecimal.2023.1000.0.230.nupkg.sha512", + "C:\\Users\\admin\\.nuget\\packages\\mathnet.numerics.signed\\5.0.0\\mathnet.numerics.signed.5.0.0.nupkg.sha512", + "C:\\Users\\admin\\.nuget\\packages\\microsoft.io.recyclablememorystream\\3.0.0\\microsoft.io.recyclablememorystream.3.0.0.nupkg.sha512", + "C:\\Users\\admin\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512", + "C:\\Users\\admin\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", + "C:\\Users\\admin\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "C:\\Users\\admin\\.nuget\\packages\\mysqlconnector\\2.1.2\\mysqlconnector.2.1.2.nupkg.sha512", + "C:\\Users\\admin\\.nuget\\packages\\npoi\\2.7.0\\npoi.2.7.0.nupkg.sha512", + "C:\\Users\\admin\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.7.0\\runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", + "C:\\Users\\admin\\.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\\admin\\.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", + "C:\\Users\\admin\\.nuget\\packages\\runtime.win-x86.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\admin\\.nuget\\packages\\sharpziplib\\1.3.3\\sharpziplib.1.3.3.nupkg.sha512", + "C:\\Users\\admin\\.nuget\\packages\\sixlabors.fonts\\1.0.1\\sixlabors.fonts.1.0.1.nupkg.sha512", + "C:\\Users\\admin\\.nuget\\packages\\sixlabors.imagesharp\\2.1.7\\sixlabors.imagesharp.2.1.7.nupkg.sha512", + "C:\\Users\\admin\\.nuget\\packages\\system.configuration.configurationmanager\\6.0.0\\system.configuration.configurationmanager.6.0.0.nupkg.sha512", + "C:\\Users\\admin\\.nuget\\packages\\system.data.sqlclient\\4.8.6\\system.data.sqlclient.4.8.6.nupkg.sha512", + "C:\\Users\\admin\\.nuget\\packages\\system.diagnostics.diagnosticsource\\8.0.1\\system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512", + "C:\\Users\\admin\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512", + "C:\\Users\\admin\\.nuget\\packages\\system.formats.asn1\\6.0.0\\system.formats.asn1.6.0.0.nupkg.sha512", + "C:\\Users\\admin\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "C:\\Users\\admin\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", + "C:\\Users\\admin\\.nuget\\packages\\system.security.cryptography.pkcs\\6.0.3\\system.security.cryptography.pkcs.6.0.3.nupkg.sha512", + "C:\\Users\\admin\\.nuget\\packages\\system.security.cryptography.protecteddata\\6.0.0\\system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", + "C:\\Users\\admin\\.nuget\\packages\\system.security.cryptography.xml\\6.0.1\\system.security.cryptography.xml.6.0.1.nupkg.sha512", + "C:\\Users\\admin\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512", + "C:\\Users\\admin\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512", + "C:\\Users\\admin\\.nuget\\packages\\system.text.encoding.codepages\\5.0.0\\system.text.encoding.codepages.5.0.0.nupkg.sha512", + "C:\\Users\\admin\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512" + ], "logs": [] } \ No newline at end of file diff --git a/ImportDataToDataBaseExtensionPlugin/obj/project.packagespec.json b/ImportDataToDataBaseExtensionPlugin/obj/project.packagespec.json index 047a5eb811ab03d4b5d2ced5fb962c7a5a4cdfd7..2b59ff5e81e8e6e7abbe695683106f7aeb999826 100644 --- a/ImportDataToDataBaseExtensionPlugin/obj/project.packagespec.json +++ b/ImportDataToDataBaseExtensionPlugin/obj/project.packagespec.json @@ -1 +1 @@ -"restore":{"projectUniqueName":"D:\\ForguncyCode\\ImportDataToDataBaseExtensionPlugin\\ImportDataToDataBaseExtensionPlugin\\ImportDataToDataBaseExtensionPlugin.csproj","projectName":"ImportDataToDataBaseExtensionPlugin","projectPath":"D:\\ForguncyCode\\ImportDataToDataBaseExtensionPlugin\\ImportDataToDataBaseExtensionPlugin\\ImportDataToDataBaseExtensionPlugin.csproj","outputPath":"D:\\ForguncyCode\\ImportDataToDataBaseExtensionPlugin\\ImportDataToDataBaseExtensionPlugin\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net6.0-windows"],"sources":{"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net6.0-windows7.0":{"targetAlias":"net6.0-windows","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net6.0-windows7.0":{"targetAlias":"net6.0-windows","imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"},"Microsoft.WindowsDesktop.App.WPF":{"privateAssets":"none"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\6.0.419\\RuntimeIdentifierGraph.json"}} \ No newline at end of file +"restore":{"projectUniqueName":"D:\\ForguncyCode\\ImportDataToDataBaseExtensionPlugin\\ImportDataToDataBaseExtensionPlugin\\ImportDataToDataBaseExtensionPlugin.csproj","projectName":"ImportDataToDataBaseExtensionPlugin","projectPath":"D:\\ForguncyCode\\ImportDataToDataBaseExtensionPlugin\\ImportDataToDataBaseExtensionPlugin\\ImportDataToDataBaseExtensionPlugin.csproj","outputPath":"D:\\ForguncyCode\\ImportDataToDataBaseExtensionPlugin\\ImportDataToDataBaseExtensionPlugin\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net6.0-windows"],"sources":{"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net6.0-windows7.0":{"targetAlias":"net6.0-windows","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net6.0-windows7.0":{"targetAlias":"net6.0-windows","dependencies":{"MySqlConnector":{"target":"Package","version":"[2.1.2, )"},"NPOI":{"target":"Package","version":"[2.7.0, )"},"System.Data.SqlClient":{"target":"Package","version":"[4.8.6, )"},"System.Diagnostics.DiagnosticSource":{"target":"Package","version":"[8.0.1, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"},"Microsoft.WindowsDesktop.App.WPF":{"privateAssets":"none"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\6.0.419\\RuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/ImportDataToDataBaseExtensionPlugin/obj/rider.project.restore.info b/ImportDataToDataBaseExtensionPlugin/obj/rider.project.restore.info index 4e1e88b751b97e2c8a779de52d5fe73b53b4528f..a7c46c3155d982b3ef2998c18f3a34aa3abce049 100644 --- a/ImportDataToDataBaseExtensionPlugin/obj/rider.project.restore.info +++ b/ImportDataToDataBaseExtensionPlugin/obj/rider.project.restore.info @@ -1 +1 @@ -17211988129727916 \ No newline at end of file +17218982890457815 \ No newline at end of file