diff --git a/.vs/Discord_Simple-Embed-Bot/v16/.suo b/.vs/Discord_Simple-Embed-Bot/v16/.suo index 678fc5f..47f4676 100644 Binary files a/.vs/Discord_Simple-Embed-Bot/v16/.suo and b/.vs/Discord_Simple-Embed-Bot/v16/.suo differ diff --git a/Discord_Simple-Embed-Bot/CommandHandler.cs b/Discord_Simple-Embed-Bot/CommandHandler.cs index 9ba8933..a4efab2 100644 --- a/Discord_Simple-Embed-Bot/CommandHandler.cs +++ b/Discord_Simple-Embed-Bot/CommandHandler.cs @@ -83,11 +83,7 @@ namespace Discord_Simple_Embed_Bot public static string PrefixFromMessage(SocketUserMessage message) { - string prefix = "eb!"; - if (Architecture.Arm == RuntimeInformation.OSArchitecture) - return prefix; - - prefix = SqlManager.GetData((message.Channel as SocketGuildChannel).Guild.Id, 'p').Result; + string prefix = SqlManager.GetData((message.Channel as SocketGuildChannel).Guild.Id, 'p').Result; GC.Collect(); GC.WaitForPendingFinalizers(); return prefix; diff --git a/Discord_Simple-Embed-Bot/Commands.cs b/Discord_Simple-Embed-Bot/Commands.cs index 9c98da9..53d3450 100644 --- a/Discord_Simple-Embed-Bot/Commands.cs +++ b/Discord_Simple-Embed-Bot/Commands.cs @@ -55,15 +55,8 @@ namespace Discord_Simple_Embed_Bot return; } - if (Architecture.Arm != RuntimeInformation.OSArchitecture) - { - await SqlManager.SetData((message.Channel as SocketGuildChannel).Guild.Id, prefix, 'p'); - await message.Channel.SendMessageAsync($"Prefix changed to: `{prefix}`"); - } - else - { - await message.Channel.SendMessageAsync($"Command does not support ARM architecture!"); - } + await SqlManager.SetData((message.Channel as SocketGuildChannel).Guild.Id, prefix, 'p'); + await message.Channel.SendMessageAsync($"Prefix changed to: `{prefix}`"); } static public async Task CreateEmbed(SocketUserMessage message) diff --git a/Discord_Simple-Embed-Bot/Discord_Simple-Embed-Bot.csproj b/Discord_Simple-Embed-Bot/Discord_Simple-Embed-Bot.csproj index 6e9669e..99500e4 100644 --- a/Discord_Simple-Embed-Bot/Discord_Simple-Embed-Bot.csproj +++ b/Discord_Simple-Embed-Bot/Discord_Simple-Embed-Bot.csproj @@ -1,4 +1,4 @@ - + Exe @@ -8,7 +8,7 @@ - + diff --git a/Discord_Simple-Embed-Bot/SqlManager.cs b/Discord_Simple-Embed-Bot/SqlManager.cs index 1de4462..398877d 100644 --- a/Discord_Simple-Embed-Bot/SqlManager.cs +++ b/Discord_Simple-Embed-Bot/SqlManager.cs @@ -1,6 +1,6 @@ -using System; +using Microsoft.Data.Sqlite; +using System; using System.Collections.Generic; -using System.Data.SQLite; using System.IO; using System.Text; using System.Threading.Tasks; @@ -14,24 +14,20 @@ namespace Discord_Simple_Embed_Bot static SqlManager() { databasePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory + "MainDatabase.sqlite"); - sqlConnectionString = "Data Source = " + databasePath + "; Version = 3"; + sqlConnectionString = "Data Source = " + databasePath; //Create SQLite database file if (!File.Exists(databasePath)) { - SQLiteConnection.CreateFile(databasePath); + File.Create(databasePath).Close(); } - string sqlCommand1 = "CREATE TABLE IF NOT EXISTS Events (ServerId INTEGER,ChannelID INTEGER,EndDate TEXT)"; - string sqlCommand2 = "CREATE TABLE IF NOT EXISTS Settings (ServerId INTEGER PRIMARY KEY,Data TEXT)"; + string sqlCommand1 = "CREATE TABLE IF NOT EXISTS Settings (ServerId INTEGER PRIMARY KEY,Data TEXT)"; - SQLiteConnection m_dbConnection = new SQLiteConnection(sqlConnectionString); + SqliteConnection m_dbConnection = new SqliteConnection(sqlConnectionString); m_dbConnection.Open(); - SQLiteCommand command = new SQLiteCommand(m_dbConnection); - command.CommandText = sqlCommand1; - command.ExecuteNonQuery(); - command.CommandText = sqlCommand2; + SqliteCommand command = new SqliteCommand(sqlCommand1,m_dbConnection); command.ExecuteNonQuery(); m_dbConnection.Close(); @@ -41,11 +37,11 @@ namespace Discord_Simple_Embed_Bot { await Task.Run(() => { - SQLiteConnection dbConnection = new SQLiteConnection(sqlConnectionString); - SQLiteCommand command = new SQLiteCommand("INSERT OR REPLACE INTO Settings (ServerId,Data) values (@serverId, @prefix)", dbConnection); + SqliteConnection dbConnection = new SqliteConnection(sqlConnectionString); + SqliteCommand command = new SqliteCommand("INSERT OR REPLACE INTO Settings (ServerId,Data) values (@serverId, @prefix)", dbConnection); - command.Parameters.Add(new SQLiteParameter("@serverId", serverId + type)); - command.Parameters.Add(new SQLiteParameter("@prefix", data)); + command.Parameters.Add(new SqliteParameter("@serverId", serverId + type)); + command.Parameters.Add(new SqliteParameter("@prefix", data)); dbConnection.Open(); command.Connection = dbConnection; @@ -59,15 +55,15 @@ namespace Discord_Simple_Embed_Bot return await Task.Run(() => { string data = null; - using (SQLiteConnection dbConnection = new SQLiteConnection(sqlConnectionString)) + using (SqliteConnection dbConnection = new SqliteConnection(sqlConnectionString)) { - SQLiteCommand command = new SQLiteCommand($"SELECT * FROM Settings WHERE ServerId=@type", dbConnection); + SqliteCommand command = new SqliteCommand($"SELECT * FROM Settings WHERE ServerId=@type", dbConnection); - command.Parameters.Add(new SQLiteParameter("@type", serverId + type)); + command.Parameters.Add(new SqliteParameter("@type", serverId + type)); dbConnection.Open(); - SQLiteDataReader dr = command.ExecuteReader(); + SqliteDataReader dr = command.ExecuteReader(); if (dr.Read()) { data = dr.GetString(1); diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Discord_Simple-Embed-Bot.deps.json b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Discord_Simple-Embed-Bot.deps.json index 97d39e7..59698c0 100644 --- a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Discord_Simple-Embed-Bot.deps.json +++ b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Discord_Simple-Embed-Bot.deps.json @@ -9,7 +9,7 @@ "Discord_Simple-Embed-Bot/1.0.0": { "dependencies": { "Discord.Net": "2.3.0", - "System.Data.SQLite.Core": "1.0.113.7" + "Microsoft.Data.Sqlite": "5.0.3" }, "runtime": { "Discord_Simple-Embed-Bot.dll": {} @@ -83,6 +83,23 @@ } } }, + "Microsoft.Data.Sqlite/5.0.3": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "5.0.3", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4" + } + }, + "Microsoft.Data.Sqlite.Core/5.0.3": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "5.0.3.0", + "fileVersion": "5.0.321.6417" + } + } + }, "Microsoft.NETCore.Platforms/1.1.0": {}, "Microsoft.NETCore.Targets/1.1.0": {}, "Newtonsoft.Json/12.0.2": { @@ -93,33 +110,111 @@ } } }, - "Stub.System.Data.SQLite.Core.NetStandard/1.0.113.2": { - "runtime": { - "lib/netstandard2.1/System.Data.SQLite.dll": { - "assemblyVersion": "1.0.113.0", - "fileVersion": "1.0.113.0" - } + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.4", + "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4" }, + "runtime": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + }, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.core/2.0.4": { + "dependencies": { + "System.Memory": "4.5.3" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { "runtimeTargets": { - "runtimes/linux-x64/native/SQLite.Interop.dll": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "rid": "alpine-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { "rid": "linux-x64", "assetType": "native", "fileVersion": "0.0.0.0" }, - "runtimes/osx-x64/native/SQLite.Interop.dll": { + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { "rid": "osx-x64", "assetType": "native", "fileVersion": "0.0.0.0" }, - "runtimes/win-x64/native/SQLite.Interop.dll": { + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { "rid": "win-x64", "assetType": "native", - "fileVersion": "1.0.113.0" + "fileVersion": "0.0.0.0" }, - "runtimes/win-x86/native/SQLite.Interop.dll": { + "runtimes/win-x86/native/e_sqlite3.dll": { "rid": "win-x86", "assetType": "native", - "fileVersion": "1.0.113.0" + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" } } }, @@ -142,11 +237,6 @@ "System.Threading": "4.3.0" } }, - "System.Data.SQLite.Core/1.0.113.7": { - "dependencies": { - "Stub.System.Data.SQLite.Core.NetStandard": "1.0.113.2" - } - }, "System.Diagnostics.Debug/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", @@ -198,6 +288,7 @@ } } }, + "System.Memory/4.5.3": {}, "System.Reflection/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", @@ -306,6 +397,20 @@ "path": "discord.net.websocket/2.3.0", "hashPath": "discord.net.websocket.2.3.0.nupkg.sha512" }, + "Microsoft.Data.Sqlite/5.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2Udv0yEtqNaIAdhwrm1FmnxZQwyMfB9Xe5S0mYJzeNm7xCyGINjO7Dv0EC0NfvwEqeTK19tx5cYJ7ANSM3TWKQ==", + "path": "microsoft.data.sqlite/5.0.3", + "hashPath": "microsoft.data.sqlite.5.0.3.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/5.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4nfSZVXex4PqQkcVu78/W0E2p3m24mwwqwMadnTPukHWx9Mh234WKg95qG9hs/ynULVGMfMyA1eUJdYDMeKFPw==", + "path": "microsoft.data.sqlite.core/5.0.3", + "hashPath": "microsoft.data.sqlite.core.5.0.3.nupkg.sha512" + }, "Microsoft.NETCore.Platforms/1.1.0": { "type": "package", "serviceable": true, @@ -327,12 +432,33 @@ "path": "newtonsoft.json/12.0.2", "hashPath": "newtonsoft.json.12.0.2.nupkg.sha512" }, - "Stub.System.Data.SQLite.Core.NetStandard/1.0.113.2": { + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { "type": "package", "serviceable": true, - "sha512": "sha512-yGIM9xFyPHl79HluNTSQarvAOIJ68pmzmlMayVN6Nivu/7TiaHt7WqptolvwmuKdAXei8OzENh9RNdh7d6evjQ==", - "path": "stub.system.data.sqlite.core.netstandard/1.0.113.2", - "hashPath": "stub.system.data.sqlite.core.netstandard.1.0.113.2.nupkg.sha512" + "sha512": "sha512-f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==", + "path": "sqlitepclraw.core/2.0.4", + "hashPath": "sqlitepclraw.core.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==", + "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4", + "hashPath": "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512" }, "System.Collections/4.3.0": { "type": "package", @@ -348,13 +474,6 @@ "path": "system.collections.immutable/1.3.1", "hashPath": "system.collections.immutable.1.3.1.nupkg.sha512" }, - "System.Data.SQLite.Core/1.0.113.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2DKMIxfZpIVzdMfx1dj9qvTm+0m0Mx6sN6CZXMQDNytU7Sk/JKo0Ox6mvHAicfHrQgqZbUZMzMMtLXD0kwmFfg==", - "path": "system.data.sqlite.core/1.0.113.7", - "hashPath": "system.data.sqlite.core.1.0.113.7.nupkg.sha512" - }, "System.Diagnostics.Debug/4.3.0": { "type": "package", "serviceable": true, @@ -397,6 +516,13 @@ "path": "system.linq.async/4.0.0", "hashPath": "system.linq.async.4.0.0.nupkg.sha512" }, + "System.Memory/4.5.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", + "path": "system.memory/4.5.3", + "hashPath": "system.memory.4.5.3.nupkg.sha512" + }, "System.Reflection/4.3.0": { "type": "package", "serviceable": true, diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Discord_Simple-Embed-Bot.dll b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Discord_Simple-Embed-Bot.dll index 722946f..bb019e7 100644 Binary files a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Discord_Simple-Embed-Bot.dll and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Discord_Simple-Embed-Bot.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Discord_Simple-Embed-Bot.pdb b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Discord_Simple-Embed-Bot.pdb index 2fe51d7..816b48e 100644 Binary files a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Discord_Simple-Embed-Bot.pdb and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Discord_Simple-Embed-Bot.pdb differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/MainDatabase.sqlite b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/MainDatabase.sqlite index 5936797..72f8bde 100644 Binary files a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/MainDatabase.sqlite and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/MainDatabase.sqlite differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Microsoft.Data.Sqlite.dll b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Microsoft.Data.Sqlite.dll new file mode 100644 index 0000000..c705477 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Microsoft.Data.Sqlite.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/SQLitePCLRaw.batteries_v2.dll b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/SQLitePCLRaw.batteries_v2.dll new file mode 100644 index 0000000..c51a77d Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/SQLitePCLRaw.batteries_v2.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/SQLitePCLRaw.core.dll b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/SQLitePCLRaw.core.dll new file mode 100644 index 0000000..d995f27 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/SQLitePCLRaw.core.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/SQLitePCLRaw.nativelibrary.dll b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/SQLitePCLRaw.nativelibrary.dll new file mode 100644 index 0000000..7bb1b03 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/SQLitePCLRaw.nativelibrary.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/SQLitePCLRaw.provider.dynamic_cdecl.dll b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/SQLitePCLRaw.provider.dynamic_cdecl.dll new file mode 100644 index 0000000..2be5647 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/SQLitePCLRaw.provider.dynamic_cdecl.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/System.Data.SQLite.dll b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/System.Data.SQLite.dll deleted file mode 100644 index e0ce3ba..0000000 Binary files a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/System.Data.SQLite.dll and /dev/null differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/alpine-x64/native/libe_sqlite3.so b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/alpine-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..9c98d9f Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/alpine-x64/native/libe_sqlite3.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/linux-arm/native/libe_sqlite3.so b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/linux-arm/native/libe_sqlite3.so new file mode 100644 index 0000000..6b0158a Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/linux-arm/native/libe_sqlite3.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/linux-arm64/native/libe_sqlite3.so b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/linux-arm64/native/libe_sqlite3.so new file mode 100644 index 0000000..7c590b7 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/linux-arm64/native/libe_sqlite3.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/linux-armel/native/libe_sqlite3.so b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/linux-armel/native/libe_sqlite3.so new file mode 100644 index 0000000..bc22810 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/linux-armel/native/libe_sqlite3.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/linux-mips64/native/libe_sqlite3.so b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/linux-mips64/native/libe_sqlite3.so new file mode 100644 index 0000000..c82d186 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/linux-mips64/native/libe_sqlite3.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/linux-musl-x64/native/libe_sqlite3.so b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/linux-musl-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..9c98d9f Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/linux-musl-x64/native/libe_sqlite3.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/linux-x64/native/SQLite.Interop.dll b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/linux-x64/native/SQLite.Interop.dll deleted file mode 100644 index 6895e0f..0000000 Binary files a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/linux-x64/native/SQLite.Interop.dll and /dev/null differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/linux-x64/native/libe_sqlite3.so b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/linux-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..484bfc2 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/linux-x64/native/libe_sqlite3.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/linux-x86/native/libe_sqlite3.so b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/linux-x86/native/libe_sqlite3.so new file mode 100644 index 0000000..d4c96f7 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/linux-x86/native/libe_sqlite3.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/osx-x64/native/SQLite.Interop.dll b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/osx-x64/native/SQLite.Interop.dll deleted file mode 100644 index de72b88..0000000 Binary files a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/osx-x64/native/SQLite.Interop.dll and /dev/null differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/osx-x64/native/libe_sqlite3.dylib b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/osx-x64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..3b9e7a4 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/osx-x64/native/libe_sqlite3.dylib differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/win-arm/native/e_sqlite3.dll b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/win-arm/native/e_sqlite3.dll new file mode 100644 index 0000000..d019891 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/win-arm/native/e_sqlite3.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/win-arm64/native/e_sqlite3.dll b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/win-arm64/native/e_sqlite3.dll new file mode 100644 index 0000000..d8b3149 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/win-arm64/native/e_sqlite3.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/win-x64/native/SQLite.Interop.dll b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/win-x64/native/SQLite.Interop.dll deleted file mode 100644 index 9a745b7..0000000 Binary files a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/win-x64/native/SQLite.Interop.dll and /dev/null differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/win-x64/native/e_sqlite3.dll b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/win-x64/native/e_sqlite3.dll new file mode 100644 index 0000000..8d3ca0c Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/win-x64/native/e_sqlite3.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/win-x86/native/SQLite.Interop.dll b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/win-x86/native/SQLite.Interop.dll deleted file mode 100644 index 35bdfe6..0000000 Binary files a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/win-x86/native/SQLite.Interop.dll and /dev/null differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/win-x86/native/e_sqlite3.dll b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/win-x86/native/e_sqlite3.dll new file mode 100644 index 0000000..3ad1bc9 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/win-x86/native/e_sqlite3.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/Discord_Simple-Embed-Bot.deps.json b/Discord_Simple-Embed-Bot/bin/Release/net5.0/Discord_Simple-Embed-Bot.deps.json index 97d39e7..59698c0 100644 --- a/Discord_Simple-Embed-Bot/bin/Release/net5.0/Discord_Simple-Embed-Bot.deps.json +++ b/Discord_Simple-Embed-Bot/bin/Release/net5.0/Discord_Simple-Embed-Bot.deps.json @@ -9,7 +9,7 @@ "Discord_Simple-Embed-Bot/1.0.0": { "dependencies": { "Discord.Net": "2.3.0", - "System.Data.SQLite.Core": "1.0.113.7" + "Microsoft.Data.Sqlite": "5.0.3" }, "runtime": { "Discord_Simple-Embed-Bot.dll": {} @@ -83,6 +83,23 @@ } } }, + "Microsoft.Data.Sqlite/5.0.3": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "5.0.3", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4" + } + }, + "Microsoft.Data.Sqlite.Core/5.0.3": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "5.0.3.0", + "fileVersion": "5.0.321.6417" + } + } + }, "Microsoft.NETCore.Platforms/1.1.0": {}, "Microsoft.NETCore.Targets/1.1.0": {}, "Newtonsoft.Json/12.0.2": { @@ -93,33 +110,111 @@ } } }, - "Stub.System.Data.SQLite.Core.NetStandard/1.0.113.2": { - "runtime": { - "lib/netstandard2.1/System.Data.SQLite.dll": { - "assemblyVersion": "1.0.113.0", - "fileVersion": "1.0.113.0" - } + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.4", + "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4" }, + "runtime": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + }, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.core/2.0.4": { + "dependencies": { + "System.Memory": "4.5.3" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { "runtimeTargets": { - "runtimes/linux-x64/native/SQLite.Interop.dll": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "rid": "alpine-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { "rid": "linux-x64", "assetType": "native", "fileVersion": "0.0.0.0" }, - "runtimes/osx-x64/native/SQLite.Interop.dll": { + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { "rid": "osx-x64", "assetType": "native", "fileVersion": "0.0.0.0" }, - "runtimes/win-x64/native/SQLite.Interop.dll": { + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { "rid": "win-x64", "assetType": "native", - "fileVersion": "1.0.113.0" + "fileVersion": "0.0.0.0" }, - "runtimes/win-x86/native/SQLite.Interop.dll": { + "runtimes/win-x86/native/e_sqlite3.dll": { "rid": "win-x86", "assetType": "native", - "fileVersion": "1.0.113.0" + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" } } }, @@ -142,11 +237,6 @@ "System.Threading": "4.3.0" } }, - "System.Data.SQLite.Core/1.0.113.7": { - "dependencies": { - "Stub.System.Data.SQLite.Core.NetStandard": "1.0.113.2" - } - }, "System.Diagnostics.Debug/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", @@ -198,6 +288,7 @@ } } }, + "System.Memory/4.5.3": {}, "System.Reflection/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", @@ -306,6 +397,20 @@ "path": "discord.net.websocket/2.3.0", "hashPath": "discord.net.websocket.2.3.0.nupkg.sha512" }, + "Microsoft.Data.Sqlite/5.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2Udv0yEtqNaIAdhwrm1FmnxZQwyMfB9Xe5S0mYJzeNm7xCyGINjO7Dv0EC0NfvwEqeTK19tx5cYJ7ANSM3TWKQ==", + "path": "microsoft.data.sqlite/5.0.3", + "hashPath": "microsoft.data.sqlite.5.0.3.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/5.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4nfSZVXex4PqQkcVu78/W0E2p3m24mwwqwMadnTPukHWx9Mh234WKg95qG9hs/ynULVGMfMyA1eUJdYDMeKFPw==", + "path": "microsoft.data.sqlite.core/5.0.3", + "hashPath": "microsoft.data.sqlite.core.5.0.3.nupkg.sha512" + }, "Microsoft.NETCore.Platforms/1.1.0": { "type": "package", "serviceable": true, @@ -327,12 +432,33 @@ "path": "newtonsoft.json/12.0.2", "hashPath": "newtonsoft.json.12.0.2.nupkg.sha512" }, - "Stub.System.Data.SQLite.Core.NetStandard/1.0.113.2": { + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { "type": "package", "serviceable": true, - "sha512": "sha512-yGIM9xFyPHl79HluNTSQarvAOIJ68pmzmlMayVN6Nivu/7TiaHt7WqptolvwmuKdAXei8OzENh9RNdh7d6evjQ==", - "path": "stub.system.data.sqlite.core.netstandard/1.0.113.2", - "hashPath": "stub.system.data.sqlite.core.netstandard.1.0.113.2.nupkg.sha512" + "sha512": "sha512-f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==", + "path": "sqlitepclraw.core/2.0.4", + "hashPath": "sqlitepclraw.core.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==", + "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4", + "hashPath": "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512" }, "System.Collections/4.3.0": { "type": "package", @@ -348,13 +474,6 @@ "path": "system.collections.immutable/1.3.1", "hashPath": "system.collections.immutable.1.3.1.nupkg.sha512" }, - "System.Data.SQLite.Core/1.0.113.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2DKMIxfZpIVzdMfx1dj9qvTm+0m0Mx6sN6CZXMQDNytU7Sk/JKo0Ox6mvHAicfHrQgqZbUZMzMMtLXD0kwmFfg==", - "path": "system.data.sqlite.core/1.0.113.7", - "hashPath": "system.data.sqlite.core.1.0.113.7.nupkg.sha512" - }, "System.Diagnostics.Debug/4.3.0": { "type": "package", "serviceable": true, @@ -397,6 +516,13 @@ "path": "system.linq.async/4.0.0", "hashPath": "system.linq.async.4.0.0.nupkg.sha512" }, + "System.Memory/4.5.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", + "path": "system.memory/4.5.3", + "hashPath": "system.memory.4.5.3.nupkg.sha512" + }, "System.Reflection/4.3.0": { "type": "package", "serviceable": true, diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/Discord_Simple-Embed-Bot.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/Discord_Simple-Embed-Bot.dll index 57bb668..c58cc4d 100644 Binary files a/Discord_Simple-Embed-Bot/bin/Release/net5.0/Discord_Simple-Embed-Bot.dll and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/Discord_Simple-Embed-Bot.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/Discord_Simple-Embed-Bot.pdb b/Discord_Simple-Embed-Bot/bin/Release/net5.0/Discord_Simple-Embed-Bot.pdb index f057a32..9ab9a6c 100644 Binary files a/Discord_Simple-Embed-Bot/bin/Release/net5.0/Discord_Simple-Embed-Bot.pdb and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/Discord_Simple-Embed-Bot.pdb differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/Microsoft.Data.Sqlite.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/Microsoft.Data.Sqlite.dll new file mode 100644 index 0000000..c705477 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/Microsoft.Data.Sqlite.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/SQLitePCLRaw.batteries_v2.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/SQLitePCLRaw.batteries_v2.dll new file mode 100644 index 0000000..c51a77d Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/SQLitePCLRaw.batteries_v2.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/SQLitePCLRaw.core.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/SQLitePCLRaw.core.dll new file mode 100644 index 0000000..d995f27 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/SQLitePCLRaw.core.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/SQLitePCLRaw.nativelibrary.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/SQLitePCLRaw.nativelibrary.dll new file mode 100644 index 0000000..7bb1b03 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/SQLitePCLRaw.nativelibrary.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/SQLitePCLRaw.provider.dynamic_cdecl.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/SQLitePCLRaw.provider.dynamic_cdecl.dll new file mode 100644 index 0000000..2be5647 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/SQLitePCLRaw.provider.dynamic_cdecl.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/System.Data.SQLite.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/System.Data.SQLite.dll deleted file mode 100644 index e0ce3ba..0000000 Binary files a/Discord_Simple-Embed-Bot/bin/Release/net5.0/System.Data.SQLite.dll and /dev/null differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord_Simple-Embed-Bot.deps.json b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord_Simple-Embed-Bot.deps.json index ebeea0b..59698c0 100644 --- a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord_Simple-Embed-Bot.deps.json +++ b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord_Simple-Embed-Bot.deps.json @@ -1,735 +1,20 @@ { "runtimeTarget": { - "name": ".NETCoreApp,Version=v5.0/linux-arm", + "name": ".NETCoreApp,Version=v5.0", "signature": "" }, "compilationOptions": {}, "targets": { - ".NETCoreApp,Version=v5.0": {}, - ".NETCoreApp,Version=v5.0/linux-arm": { + ".NETCoreApp,Version=v5.0": { "Discord_Simple-Embed-Bot/1.0.0": { "dependencies": { "Discord.Net": "2.3.0", - "System.Data.SQLite.Core": "1.0.113.7", - "runtimepack.Microsoft.NETCore.App.Runtime.linux-arm": "5.0.0" + "Microsoft.Data.Sqlite": "5.0.3" }, "runtime": { "Discord_Simple-Embed-Bot.dll": {} } }, - "runtimepack.Microsoft.NETCore.App.Runtime.linux-arm/5.0.0": { - "runtime": { - "Microsoft.CSharp.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "Microsoft.VisualBasic.Core.dll": { - "assemblyVersion": "10.0.6.0", - "fileVersion": "11.0.20.51904" - }, - "Microsoft.VisualBasic.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "Microsoft.Win32.Primitives.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "Microsoft.Win32.Registry.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.AppContext.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Buffers.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Collections.Concurrent.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Collections.Immutable.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Collections.NonGeneric.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Collections.Specialized.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Collections.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.ComponentModel.Annotations.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.ComponentModel.DataAnnotations.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.ComponentModel.EventBasedAsync.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.ComponentModel.Primitives.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.ComponentModel.TypeConverter.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.ComponentModel.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Configuration.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Console.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Core.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Data.Common.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Data.DataSetExtensions.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Data.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Diagnostics.Contracts.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Diagnostics.Debug.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Diagnostics.DiagnosticSource.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Diagnostics.FileVersionInfo.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Diagnostics.Process.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Diagnostics.StackTrace.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Diagnostics.TextWriterTraceListener.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Diagnostics.Tools.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Diagnostics.TraceSource.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Diagnostics.Tracing.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Drawing.Primitives.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Drawing.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Dynamic.Runtime.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Formats.Asn1.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Globalization.Calendars.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Globalization.Extensions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Globalization.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.IO.Compression.Brotli.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.IO.Compression.FileSystem.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.IO.Compression.ZipFile.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.IO.Compression.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.IO.FileSystem.AccessControl.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.IO.FileSystem.DriveInfo.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.IO.FileSystem.Primitives.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.IO.FileSystem.Watcher.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.IO.FileSystem.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.IO.IsolatedStorage.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.IO.MemoryMappedFiles.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.IO.Pipes.AccessControl.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.IO.Pipes.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.IO.UnmanagedMemoryStream.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.IO.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Linq.Expressions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Linq.Parallel.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Linq.Queryable.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Linq.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Memory.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Net.Http.Json.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Net.Http.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Net.HttpListener.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Net.Mail.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Net.NameResolution.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Net.NetworkInformation.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Net.Ping.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Net.Primitives.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Net.Requests.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Net.Security.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Net.ServicePoint.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Net.Sockets.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Net.WebClient.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Net.WebHeaderCollection.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Net.WebProxy.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Net.WebSockets.Client.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Net.WebSockets.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Net.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Numerics.Vectors.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Numerics.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.ObjectModel.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Private.DataContractSerialization.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Private.Uri.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Private.Xml.Linq.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Private.Xml.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Reflection.DispatchProxy.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Reflection.Emit.ILGeneration.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Reflection.Emit.Lightweight.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Reflection.Emit.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Reflection.Extensions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Reflection.Metadata.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Reflection.Primitives.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Reflection.TypeExtensions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Reflection.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Resources.Reader.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Resources.ResourceManager.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Resources.Writer.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Runtime.CompilerServices.Unsafe.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "0.0.0.0" - }, - "System.Runtime.CompilerServices.VisualC.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Runtime.Extensions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Runtime.Handles.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Runtime.InteropServices.RuntimeInformation.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Runtime.InteropServices.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Runtime.Intrinsics.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Runtime.Loader.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Runtime.Numerics.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Runtime.Serialization.Formatters.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Runtime.Serialization.Json.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Runtime.Serialization.Primitives.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Runtime.Serialization.Xml.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Runtime.Serialization.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Runtime.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Security.AccessControl.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Security.Claims.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Security.Cryptography.Algorithms.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Security.Cryptography.Cng.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Security.Cryptography.Csp.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Security.Cryptography.Encoding.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Security.Cryptography.OpenSsl.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Security.Cryptography.Primitives.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Security.Cryptography.X509Certificates.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Security.Principal.Windows.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Security.Principal.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Security.SecureString.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Security.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.ServiceModel.Web.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.ServiceProcess.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Text.Encoding.CodePages.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Text.Encoding.Extensions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Text.Encoding.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Text.Encodings.Web.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Text.Json.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Text.RegularExpressions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Threading.Channels.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Threading.Overlapped.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Threading.Tasks.Dataflow.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Threading.Tasks.Extensions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Threading.Tasks.Parallel.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Threading.Tasks.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Threading.Thread.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Threading.ThreadPool.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Threading.Timer.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Threading.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Transactions.Local.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Transactions.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.ValueTuple.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Web.HttpUtility.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Web.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Windows.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Xml.Linq.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Xml.ReaderWriter.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Xml.Serialization.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Xml.XDocument.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Xml.XPath.XDocument.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Xml.XPath.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Xml.XmlDocument.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Xml.XmlSerializer.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Xml.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "WindowsBase.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "mscorlib.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "netstandard.dll": { - "assemblyVersion": "2.1.0.0", - "fileVersion": "5.0.20.51904" - }, - "System.Private.CoreLib.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - }, - "native": { - "createdump": { - "fileVersion": "0.0.0.0" - }, - "libSystem.IO.Compression.Native.a": { - "fileVersion": "0.0.0.0" - }, - "libSystem.IO.Compression.Native.so": { - "fileVersion": "0.0.0.0" - }, - "libSystem.Native.a": { - "fileVersion": "0.0.0.0" - }, - "libSystem.Native.so": { - "fileVersion": "0.0.0.0" - }, - "libSystem.Net.Security.Native.a": { - "fileVersion": "0.0.0.0" - }, - "libSystem.Net.Security.Native.so": { - "fileVersion": "0.0.0.0" - }, - "libSystem.Security.Cryptography.Native.OpenSsl.a": { - "fileVersion": "0.0.0.0" - }, - "libSystem.Security.Cryptography.Native.OpenSsl.so": { - "fileVersion": "0.0.0.0" - }, - "libclrjit.so": { - "fileVersion": "0.0.0.0" - }, - "libcoreclr.so": { - "fileVersion": "0.0.0.0" - }, - "libcoreclrtraceptprovider.so": { - "fileVersion": "0.0.0.0" - }, - "libdbgshim.so": { - "fileVersion": "0.0.0.0" - }, - "libhostfxr.so": { - "fileVersion": "0.0.0.0" - }, - "libhostpolicy.so": { - "fileVersion": "0.0.0.0" - }, - "libmscordaccore.so": { - "fileVersion": "0.0.0.0" - }, - "libmscordbi.so": { - "fileVersion": "0.0.0.0" - } - } - }, "Discord.Net/2.3.0": { "dependencies": { "Discord.Net.Commands": "2.3.0", @@ -798,6 +83,23 @@ } } }, + "Microsoft.Data.Sqlite/5.0.3": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "5.0.3", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4" + } + }, + "Microsoft.Data.Sqlite.Core/5.0.3": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "5.0.3.0", + "fileVersion": "5.0.321.6417" + } + } + }, "Microsoft.NETCore.Platforms/1.1.0": {}, "Microsoft.NETCore.Targets/1.1.0": {}, "Newtonsoft.Json/12.0.2": { @@ -808,75 +110,111 @@ } } }, - "runtime.any.System.Collections/4.3.0": { + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "runtime.any.System.Globalization/4.3.0": {}, - "runtime.any.System.IO/4.3.0": {}, - "runtime.any.System.Reflection/4.3.0": {}, - "runtime.any.System.Reflection.Primitives/4.3.0": {}, - "runtime.any.System.Resources.ResourceManager/4.3.0": {}, - "runtime.any.System.Runtime/4.3.0": { - "dependencies": { - "System.Private.Uri": "4.3.0" - } - }, - "runtime.any.System.Text.Encoding/4.3.0": {}, - "runtime.any.System.Threading.Tasks/4.3.0": {}, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.native.System/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "dependencies": { - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.unix.System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "runtime.native.System": "4.3.0" - } - }, - "runtime.unix.System.Private.Uri/4.3.0": { - "dependencies": { - "runtime.native.System": "4.3.0" - } - }, - "runtime.unix.System.Runtime.Extensions/4.3.0": { - "dependencies": { - "System.Private.Uri": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "Stub.System.Data.SQLite.Core.NetStandard/1.0.113.2": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.4", + "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4" + }, "runtime": { - "lib/netstandard2.1/System.Data.SQLite.dll": { - "assemblyVersion": "1.0.113.0", - "fileVersion": "1.0.113.0" + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + }, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.core/2.0.4": { + "dependencies": { + "System.Memory": "4.5.3" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "runtimeTargets": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "rid": "alpine-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" } } }, @@ -884,8 +222,7 @@ "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Collections": "4.3.0" + "System.Runtime": "4.3.0" } }, "System.Collections.Immutable/1.3.1": { @@ -900,25 +237,18 @@ "System.Threading": "4.3.0" } }, - "System.Data.SQLite.Core/1.0.113.7": { - "dependencies": { - "Stub.System.Data.SQLite.Core.NetStandard": "1.0.113.2" - } - }, "System.Diagnostics.Debug/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.unix.System.Diagnostics.Debug": "4.3.0" + "System.Runtime": "4.3.0" } }, "System.Globalization/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Globalization": "4.3.0" + "System.Runtime": "4.3.0" } }, "System.Interactive.Async/4.0.0": { @@ -938,8 +268,7 @@ "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.any.System.IO": "4.3.0" + "System.Threading.Tasks": "4.3.0" } }, "System.Linq/4.3.0": { @@ -959,29 +288,21 @@ } } }, - "System.Private.Uri/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "runtime.unix.System.Private.Uri": "4.3.0" - } - }, + "System.Memory/4.5.3": {}, "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", - "runtime.any.System.Reflection": "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", - "runtime.any.System.Reflection.Primitives": "4.3.0" + "System.Runtime": "4.3.0" } }, "System.Resources.ResourceManager/4.3.0": { @@ -990,31 +311,27 @@ "Microsoft.NETCore.Targets": "1.1.0", "System.Globalization": "4.3.0", "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Resources.ResourceManager": "4.3.0" + "System.Runtime": "4.3.0" } }, "System.Runtime/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "runtime.any.System.Runtime": "4.3.0" + "Microsoft.NETCore.Targets": "1.1.0" } }, "System.Runtime.Extensions/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.unix.System.Runtime.Extensions": "4.3.0" + "System.Runtime": "4.3.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", - "runtime.any.System.Text.Encoding": "4.3.0" + "System.Runtime": "4.3.0" } }, "System.Threading/4.3.0": { @@ -1027,8 +344,7 @@ "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Threading.Tasks": "4.3.0" + "System.Runtime": "4.3.0" } } } @@ -1039,11 +355,6 @@ "serviceable": false, "sha512": "" }, - "runtimepack.Microsoft.NETCore.App.Runtime.linux-arm/5.0.0": { - "type": "runtimepack", - "serviceable": false, - "sha512": "" - }, "Discord.Net/2.3.0": { "type": "package", "serviceable": true, @@ -1086,6 +397,20 @@ "path": "discord.net.websocket/2.3.0", "hashPath": "discord.net.websocket.2.3.0.nupkg.sha512" }, + "Microsoft.Data.Sqlite/5.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2Udv0yEtqNaIAdhwrm1FmnxZQwyMfB9Xe5S0mYJzeNm7xCyGINjO7Dv0EC0NfvwEqeTK19tx5cYJ7ANSM3TWKQ==", + "path": "microsoft.data.sqlite/5.0.3", + "hashPath": "microsoft.data.sqlite.5.0.3.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/5.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4nfSZVXex4PqQkcVu78/W0E2p3m24mwwqwMadnTPukHWx9Mh234WKg95qG9hs/ynULVGMfMyA1eUJdYDMeKFPw==", + "path": "microsoft.data.sqlite.core/5.0.3", + "hashPath": "microsoft.data.sqlite.core.5.0.3.nupkg.sha512" + }, "Microsoft.NETCore.Platforms/1.1.0": { "type": "package", "serviceable": true, @@ -1107,180 +432,33 @@ "path": "newtonsoft.json/12.0.2", "hashPath": "newtonsoft.json.12.0.2.nupkg.sha512" }, - "runtime.any.System.Collections/4.3.0": { + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { "type": "package", "serviceable": true, - "sha512": "sha512-23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==", - "path": "runtime.any.system.collections/4.3.0", - "hashPath": "runtime.any.system.collections.4.3.0.nupkg.sha512" + "sha512": "sha512-f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512" }, - "runtime.any.System.Globalization/4.3.0": { + "SQLitePCLRaw.core/2.0.4": { "type": "package", "serviceable": true, - "sha512": "sha512-sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw==", - "path": "runtime.any.system.globalization/4.3.0", - "hashPath": "runtime.any.system.globalization.4.3.0.nupkg.sha512" + "sha512": "sha512-4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==", + "path": "sqlitepclraw.core/2.0.4", + "hashPath": "sqlitepclraw.core.2.0.4.nupkg.sha512" }, - "runtime.any.System.IO/4.3.0": { + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { "type": "package", "serviceable": true, - "sha512": "sha512-SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ==", - "path": "runtime.any.system.io/4.3.0", - "hashPath": "runtime.any.system.io.4.3.0.nupkg.sha512" + "sha512": "sha512-oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512" }, - "runtime.any.System.Reflection/4.3.0": { + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { "type": "package", "serviceable": true, - "sha512": "sha512-hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ==", - "path": "runtime.any.system.reflection/4.3.0", - "hashPath": "runtime.any.system.reflection.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg==", - "path": "runtime.any.system.reflection.primitives/4.3.0", - "hashPath": "runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ==", - "path": "runtime.any.system.resources.resourcemanager/4.3.0", - "hashPath": "runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==", - "path": "runtime.any.system.runtime/4.3.0", - "hashPath": "runtime.any.system.runtime.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ==", - "path": "runtime.any.system.text.encoding/4.3.0", - "hashPath": "runtime.any.system.text.encoding.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w==", - "path": "runtime.any.system.threading.tasks/4.3.0", - "hashPath": "runtime.any.system.threading.tasks.4.3.0.nupkg.sha512" - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", - "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", - "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", - "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.native.System/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "path": "runtime.native.system/4.3.0", - "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", - "path": "runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", - "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", - "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", - "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", - "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", - "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", - "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.unix.System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WV8KLRHWVUVUDduFnvGMHt0FsEt2wK6xPl1EgDKlaMx2KnZ43A/O0GzP8wIuvAC7mq4T9V1mm90r+PXkL9FPdQ==", - "path": "runtime.unix.system.diagnostics.debug/4.3.0", - "hashPath": "runtime.unix.system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "runtime.unix.System.Private.Uri/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ooWzobr5RAq34r9uan1r/WPXJYG1XWy9KanrxNvEnBzbFdQbMG7Y3bVi4QxR7xZMNLOxLLTAyXvnSkfj5boZSg==", - "path": "runtime.unix.system.private.uri/4.3.0", - "hashPath": "runtime.unix.system.private.uri.4.3.0.nupkg.sha512" - }, - "runtime.unix.System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zQiTBVpiLftTQZW8GFsV0gjYikB1WMkEPIxF5O6RkUrSV/OgvRRTYgeFQha/0keBpuS0HYweraGRwhfhJ7dj7w==", - "path": "runtime.unix.system.runtime.extensions/4.3.0", - "hashPath": "runtime.unix.system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "Stub.System.Data.SQLite.Core.NetStandard/1.0.113.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yGIM9xFyPHl79HluNTSQarvAOIJ68pmzmlMayVN6Nivu/7TiaHt7WqptolvwmuKdAXei8OzENh9RNdh7d6evjQ==", - "path": "stub.system.data.sqlite.core.netstandard/1.0.113.2", - "hashPath": "stub.system.data.sqlite.core.netstandard.1.0.113.2.nupkg.sha512" + "sha512": "sha512-AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==", + "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4", + "hashPath": "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512" }, "System.Collections/4.3.0": { "type": "package", @@ -1296,13 +474,6 @@ "path": "system.collections.immutable/1.3.1", "hashPath": "system.collections.immutable.1.3.1.nupkg.sha512" }, - "System.Data.SQLite.Core/1.0.113.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2DKMIxfZpIVzdMfx1dj9qvTm+0m0Mx6sN6CZXMQDNytU7Sk/JKo0Ox6mvHAicfHrQgqZbUZMzMMtLXD0kwmFfg==", - "path": "system.data.sqlite.core/1.0.113.7", - "hashPath": "system.data.sqlite.core.1.0.113.7.nupkg.sha512" - }, "System.Diagnostics.Debug/4.3.0": { "type": "package", "serviceable": true, @@ -1345,12 +516,12 @@ "path": "system.linq.async/4.0.0", "hashPath": "system.linq.async.4.0.0.nupkg.sha512" }, - "System.Private.Uri/4.3.0": { + "System.Memory/4.5.3": { "type": "package", "serviceable": true, - "sha512": "sha512-I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==", - "path": "system.private.uri/4.3.0", - "hashPath": "system.private.uri.4.3.0.nupkg.sha512" + "sha512": "sha512-3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", + "path": "system.memory/4.5.3", + "hashPath": "system.memory.4.5.3.nupkg.sha512" }, "System.Reflection/4.3.0": { "type": "package", @@ -1408,608 +579,5 @@ "path": "system.threading.tasks/4.3.0", "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" } - }, - "runtimes": { - "alpine-arm": [ - "alpine", - "linux-musl-arm", - "linux-musl", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "alpine.3.10-arm": [ - "alpine.3.10", - "alpine.3.9-arm", - "alpine.3.9", - "alpine.3.8-arm", - "alpine.3.8", - "alpine.3.7-arm", - "alpine.3.7", - "alpine.3.6-arm", - "alpine.3.6", - "alpine-arm", - "alpine", - "linux-musl-arm", - "linux-musl", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "alpine.3.11-arm": [ - "alpine.3.11", - "alpine.3.10-arm", - "alpine.3.10", - "alpine.3.9-arm", - "alpine.3.9", - "alpine.3.8-arm", - "alpine.3.8", - "alpine.3.7-arm", - "alpine.3.7", - "alpine.3.6-arm", - "alpine.3.6", - "alpine-arm", - "alpine", - "linux-musl-arm", - "linux-musl", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "alpine.3.12-arm": [ - "alpine.3.12", - "alpine.3.11-arm", - "alpine.3.11", - "alpine.3.10-arm", - "alpine.3.10", - "alpine.3.9-arm", - "alpine.3.9", - "alpine.3.8-arm", - "alpine.3.8", - "alpine.3.7-arm", - "alpine.3.7", - "alpine.3.6-arm", - "alpine.3.6", - "alpine-arm", - "alpine", - "linux-musl-arm", - "linux-musl", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "alpine.3.6-arm": [ - "alpine.3.6", - "alpine-arm", - "alpine", - "linux-musl-arm", - "linux-musl", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "alpine.3.7-arm": [ - "alpine.3.7", - "alpine.3.6-arm", - "alpine.3.6", - "alpine-arm", - "alpine", - "linux-musl-arm", - "linux-musl", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "alpine.3.8-arm": [ - "alpine.3.8", - "alpine.3.7-arm", - "alpine.3.7", - "alpine.3.6-arm", - "alpine.3.6", - "alpine-arm", - "alpine", - "linux-musl-arm", - "linux-musl", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "alpine.3.9-arm": [ - "alpine.3.9", - "alpine.3.8-arm", - "alpine.3.8", - "alpine.3.7-arm", - "alpine.3.7", - "alpine.3.6-arm", - "alpine.3.6", - "alpine-arm", - "alpine", - "linux-musl-arm", - "linux-musl", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "android-arm": [ - "android", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "android.21-arm": [ - "android.21", - "android-arm", - "android", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "android.22-arm": [ - "android.22", - "android.21-arm", - "android.21", - "android-arm", - "android", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "android.23-arm": [ - "android.23", - "android.22-arm", - "android.22", - "android.21-arm", - "android.21", - "android-arm", - "android", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "android.24-arm": [ - "android.24", - "android.23-arm", - "android.23", - "android.22-arm", - "android.22", - "android.21-arm", - "android.21", - "android-arm", - "android", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "android.25-arm": [ - "android.25", - "android.24-arm", - "android.24", - "android.23-arm", - "android.23", - "android.22-arm", - "android.22", - "android.21-arm", - "android.21", - "android-arm", - "android", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "android.26-arm": [ - "android.26", - "android.25-arm", - "android.25", - "android.24-arm", - "android.24", - "android.23-arm", - "android.23", - "android.22-arm", - "android.22", - "android.21-arm", - "android.21", - "android-arm", - "android", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "android.27-arm": [ - "android.27", - "android.26-arm", - "android.26", - "android.25-arm", - "android.25", - "android.24-arm", - "android.24", - "android.23-arm", - "android.23", - "android.22-arm", - "android.22", - "android.21-arm", - "android.21", - "android-arm", - "android", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "android.28-arm": [ - "android.28", - "android.27-arm", - "android.27", - "android.26-arm", - "android.26", - "android.25-arm", - "android.25", - "android.24-arm", - "android.24", - "android.23-arm", - "android.23", - "android.22-arm", - "android.22", - "android.21-arm", - "android.21", - "android-arm", - "android", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "android.29-arm": [ - "android.29", - "android.28-arm", - "android.28", - "android.27-arm", - "android.27", - "android.26-arm", - "android.26", - "android.25-arm", - "android.25", - "android.24-arm", - "android.24", - "android.23-arm", - "android.23", - "android.22-arm", - "android.22", - "android.21-arm", - "android.21", - "android-arm", - "android", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "debian-arm": [ - "debian", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "debian.10-arm": [ - "debian.10", - "debian-arm", - "debian", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "debian.8-arm": [ - "debian.8", - "debian-arm", - "debian", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "debian.9-arm": [ - "debian.9", - "debian-arm", - "debian", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "linux-arm": [ - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "linux-musl-arm": [ - "linux-musl", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "ubuntu-arm": [ - "ubuntu", - "debian-arm", - "debian", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "ubuntu.14.04-arm": [ - "ubuntu.14.04", - "ubuntu-arm", - "ubuntu", - "debian-arm", - "debian", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "ubuntu.14.10-arm": [ - "ubuntu.14.10", - "ubuntu-arm", - "ubuntu", - "debian-arm", - "debian", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "ubuntu.15.04-arm": [ - "ubuntu.15.04", - "ubuntu-arm", - "ubuntu", - "debian-arm", - "debian", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "ubuntu.15.10-arm": [ - "ubuntu.15.10", - "ubuntu-arm", - "ubuntu", - "debian-arm", - "debian", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "ubuntu.16.04-arm": [ - "ubuntu.16.04", - "ubuntu-arm", - "ubuntu", - "debian-arm", - "debian", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "ubuntu.16.10-arm": [ - "ubuntu.16.10", - "ubuntu-arm", - "ubuntu", - "debian-arm", - "debian", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "ubuntu.17.04-arm": [ - "ubuntu.17.04", - "ubuntu-arm", - "ubuntu", - "debian-arm", - "debian", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "ubuntu.17.10-arm": [ - "ubuntu.17.10", - "ubuntu-arm", - "ubuntu", - "debian-arm", - "debian", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "ubuntu.18.04-arm": [ - "ubuntu.18.04", - "ubuntu-arm", - "ubuntu", - "debian-arm", - "debian", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "ubuntu.18.10-arm": [ - "ubuntu.18.10", - "ubuntu-arm", - "ubuntu", - "debian-arm", - "debian", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "ubuntu.19.04-arm": [ - "ubuntu.19.04", - "ubuntu-arm", - "ubuntu", - "debian-arm", - "debian", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "ubuntu.19.10-arm": [ - "ubuntu.19.10", - "ubuntu-arm", - "ubuntu", - "debian-arm", - "debian", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "ubuntu.20.04-arm": [ - "ubuntu.20.04", - "ubuntu-arm", - "ubuntu", - "debian-arm", - "debian", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "ubuntu.20.10-arm": [ - "ubuntu.20.10", - "ubuntu-arm", - "ubuntu", - "debian-arm", - "debian", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "ubuntu.21.04-arm": [ - "ubuntu.21.04", - "ubuntu-arm", - "ubuntu", - "debian-arm", - "debian", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ], - "ubuntu.21.10-arm": [ - "ubuntu.21.10", - "ubuntu-arm", - "ubuntu", - "debian-arm", - "debian", - "linux-arm", - "linux", - "unix-arm", - "unix", - "any", - "base" - ] } } \ No newline at end of file diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord_Simple-Embed-Bot.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord_Simple-Embed-Bot.dll index 13483da..c58cc4d 100644 Binary files a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord_Simple-Embed-Bot.dll and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord_Simple-Embed-Bot.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord_Simple-Embed-Bot.exe b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord_Simple-Embed-Bot.exe new file mode 100644 index 0000000..59acf2f Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord_Simple-Embed-Bot.exe differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord_Simple-Embed-Bot.pdb b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord_Simple-Embed-Bot.pdb index a4c88bc..9ab9a6c 100644 Binary files a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord_Simple-Embed-Bot.pdb and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord_Simple-Embed-Bot.pdb differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord_Simple-Embed-Bot.runtimeconfig.json b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord_Simple-Embed-Bot.runtimeconfig.json index d435d2c..a8e7e82 100644 --- a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord_Simple-Embed-Bot.runtimeconfig.json +++ b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord_Simple-Embed-Bot.runtimeconfig.json @@ -1,11 +1,9 @@ { "runtimeOptions": { "tfm": "net5.0", - "includedFrameworks": [ - { - "name": "Microsoft.NETCore.App", - "version": "5.0.0" - } - ] + "framework": { + "name": "Microsoft.NETCore.App", + "version": "5.0.0" + } } } \ No newline at end of file diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Microsoft.Data.Sqlite.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Microsoft.Data.Sqlite.dll new file mode 100644 index 0000000..c705477 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Microsoft.Data.Sqlite.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/SQLitePCLRaw.batteries_v2.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/SQLitePCLRaw.batteries_v2.dll new file mode 100644 index 0000000..c51a77d Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/SQLitePCLRaw.batteries_v2.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/SQLitePCLRaw.core.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/SQLitePCLRaw.core.dll new file mode 100644 index 0000000..d995f27 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/SQLitePCLRaw.core.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/SQLitePCLRaw.nativelibrary.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/SQLitePCLRaw.nativelibrary.dll new file mode 100644 index 0000000..7bb1b03 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/SQLitePCLRaw.nativelibrary.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/SQLitePCLRaw.provider.dynamic_cdecl.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/SQLitePCLRaw.provider.dynamic_cdecl.dll new file mode 100644 index 0000000..2be5647 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/SQLitePCLRaw.provider.dynamic_cdecl.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/alpine-x64/native/libe_sqlite3.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/alpine-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..9c98d9f Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/alpine-x64/native/libe_sqlite3.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/linux-arm/native/libe_sqlite3.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/linux-arm/native/libe_sqlite3.so new file mode 100644 index 0000000..6b0158a Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/linux-arm/native/libe_sqlite3.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/linux-arm64/native/libe_sqlite3.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/linux-arm64/native/libe_sqlite3.so new file mode 100644 index 0000000..7c590b7 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/linux-arm64/native/libe_sqlite3.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/linux-armel/native/libe_sqlite3.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/linux-armel/native/libe_sqlite3.so new file mode 100644 index 0000000..bc22810 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/linux-armel/native/libe_sqlite3.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/linux-mips64/native/libe_sqlite3.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/linux-mips64/native/libe_sqlite3.so new file mode 100644 index 0000000..c82d186 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/linux-mips64/native/libe_sqlite3.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/linux-musl-x64/native/libe_sqlite3.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/linux-musl-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..9c98d9f Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/linux-musl-x64/native/libe_sqlite3.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/linux-x64/native/libe_sqlite3.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/linux-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..484bfc2 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/linux-x64/native/libe_sqlite3.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/linux-x86/native/libe_sqlite3.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/linux-x86/native/libe_sqlite3.so new file mode 100644 index 0000000..d4c96f7 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/linux-x86/native/libe_sqlite3.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/osx-x64/native/libe_sqlite3.dylib b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/osx-x64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..3b9e7a4 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/osx-x64/native/libe_sqlite3.dylib differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/win-arm/native/e_sqlite3.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/win-arm/native/e_sqlite3.dll new file mode 100644 index 0000000..d019891 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/win-arm/native/e_sqlite3.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/win-arm64/native/e_sqlite3.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/win-arm64/native/e_sqlite3.dll new file mode 100644 index 0000000..d8b3149 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/win-arm64/native/e_sqlite3.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/win-x64/native/e_sqlite3.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/win-x64/native/e_sqlite3.dll new file mode 100644 index 0000000..8d3ca0c Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/win-x64/native/e_sqlite3.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/win-x86/native/e_sqlite3.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/win-x86/native/e_sqlite3.dll new file mode 100644 index 0000000..3ad1bc9 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/runtimes/win-x86/native/e_sqlite3.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/alpine-x64/native/libe_sqlite3.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/alpine-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..9c98d9f Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/alpine-x64/native/libe_sqlite3.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/linux-arm/native/libe_sqlite3.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/linux-arm/native/libe_sqlite3.so new file mode 100644 index 0000000..6b0158a Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/linux-arm/native/libe_sqlite3.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/linux-arm64/native/libe_sqlite3.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/linux-arm64/native/libe_sqlite3.so new file mode 100644 index 0000000..7c590b7 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/linux-arm64/native/libe_sqlite3.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/linux-armel/native/libe_sqlite3.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/linux-armel/native/libe_sqlite3.so new file mode 100644 index 0000000..bc22810 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/linux-armel/native/libe_sqlite3.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/linux-mips64/native/libe_sqlite3.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/linux-mips64/native/libe_sqlite3.so new file mode 100644 index 0000000..c82d186 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/linux-mips64/native/libe_sqlite3.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/linux-musl-x64/native/libe_sqlite3.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/linux-musl-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..9c98d9f Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/linux-musl-x64/native/libe_sqlite3.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/linux-x64/native/SQLite.Interop.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/linux-x64/native/SQLite.Interop.dll deleted file mode 100644 index 6895e0f..0000000 Binary files a/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/linux-x64/native/SQLite.Interop.dll and /dev/null differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/linux-x64/native/libe_sqlite3.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/linux-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..484bfc2 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/linux-x64/native/libe_sqlite3.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/linux-x86/native/libe_sqlite3.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/linux-x86/native/libe_sqlite3.so new file mode 100644 index 0000000..d4c96f7 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/linux-x86/native/libe_sqlite3.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/osx-x64/native/SQLite.Interop.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/osx-x64/native/SQLite.Interop.dll deleted file mode 100644 index de72b88..0000000 Binary files a/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/osx-x64/native/SQLite.Interop.dll and /dev/null differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/osx-x64/native/libe_sqlite3.dylib b/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/osx-x64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..3b9e7a4 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/osx-x64/native/libe_sqlite3.dylib differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/win-arm/native/e_sqlite3.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/win-arm/native/e_sqlite3.dll new file mode 100644 index 0000000..d019891 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/win-arm/native/e_sqlite3.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/win-arm64/native/e_sqlite3.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/win-arm64/native/e_sqlite3.dll new file mode 100644 index 0000000..d8b3149 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/win-arm64/native/e_sqlite3.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/win-x64/native/SQLite.Interop.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/win-x64/native/SQLite.Interop.dll deleted file mode 100644 index 9a745b7..0000000 Binary files a/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/win-x64/native/SQLite.Interop.dll and /dev/null differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/win-x64/native/e_sqlite3.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/win-x64/native/e_sqlite3.dll new file mode 100644 index 0000000..8d3ca0c Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/win-x64/native/e_sqlite3.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/win-x86/native/SQLite.Interop.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/win-x86/native/SQLite.Interop.dll deleted file mode 100644 index 35bdfe6..0000000 Binary files a/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/win-x86/native/SQLite.Interop.dll and /dev/null differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/win-x86/native/e_sqlite3.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/win-x86/native/e_sqlite3.dll new file mode 100644 index 0000000..3ad1bc9 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/win-x86/native/e_sqlite3.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/Discord_Simple-Embed-Bot.deps.json b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/Discord_Simple-Embed-Bot.deps.json index c771dd6..1bca032 100644 --- a/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/Discord_Simple-Embed-Bot.deps.json +++ b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/Discord_Simple-Embed-Bot.deps.json @@ -10,7 +10,7 @@ "Discord_Simple-Embed-Bot/1.0.0": { "dependencies": { "Discord.Net": "2.3.0", - "System.Data.SQLite.Core": "1.0.113.7", + "Microsoft.Data.Sqlite": "5.0.3", "runtimepack.Microsoft.NETCore.App.Runtime.linux-arm64": "5.0.0" }, "runtime": { @@ -798,6 +798,23 @@ } } }, + "Microsoft.Data.Sqlite/5.0.3": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "5.0.3", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4" + } + }, + "Microsoft.Data.Sqlite.Core/5.0.3": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "5.0.3.0", + "fileVersion": "5.0.321.6417" + } + } + }, "Microsoft.NETCore.Platforms/1.1.0": {}, "Microsoft.NETCore.Targets/1.1.0": {}, "Newtonsoft.Json/12.0.2": { @@ -872,11 +889,49 @@ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" } }, - "Stub.System.Data.SQLite.Core.NetStandard/1.0.113.2": { + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.4", + "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4" + }, "runtime": { - "lib/netstandard2.1/System.Data.SQLite.dll": { - "assemblyVersion": "1.0.113.0", - "fileVersion": "1.0.113.0" + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + }, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.core/2.0.4": { + "dependencies": { + "System.Memory": "4.5.3" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "native": { + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" } } }, @@ -900,11 +955,6 @@ "System.Threading": "4.3.0" } }, - "System.Data.SQLite.Core/1.0.113.7": { - "dependencies": { - "Stub.System.Data.SQLite.Core.NetStandard": "1.0.113.2" - } - }, "System.Diagnostics.Debug/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", @@ -959,6 +1009,7 @@ } } }, + "System.Memory/4.5.3": {}, "System.Private.Uri/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", @@ -1086,6 +1137,20 @@ "path": "discord.net.websocket/2.3.0", "hashPath": "discord.net.websocket.2.3.0.nupkg.sha512" }, + "Microsoft.Data.Sqlite/5.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2Udv0yEtqNaIAdhwrm1FmnxZQwyMfB9Xe5S0mYJzeNm7xCyGINjO7Dv0EC0NfvwEqeTK19tx5cYJ7ANSM3TWKQ==", + "path": "microsoft.data.sqlite/5.0.3", + "hashPath": "microsoft.data.sqlite.5.0.3.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/5.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4nfSZVXex4PqQkcVu78/W0E2p3m24mwwqwMadnTPukHWx9Mh234WKg95qG9hs/ynULVGMfMyA1eUJdYDMeKFPw==", + "path": "microsoft.data.sqlite.core/5.0.3", + "hashPath": "microsoft.data.sqlite.core.5.0.3.nupkg.sha512" + }, "Microsoft.NETCore.Platforms/1.1.0": { "type": "package", "serviceable": true, @@ -1275,12 +1340,33 @@ "path": "runtime.unix.system.runtime.extensions/4.3.0", "hashPath": "runtime.unix.system.runtime.extensions.4.3.0.nupkg.sha512" }, - "Stub.System.Data.SQLite.Core.NetStandard/1.0.113.2": { + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { "type": "package", "serviceable": true, - "sha512": "sha512-yGIM9xFyPHl79HluNTSQarvAOIJ68pmzmlMayVN6Nivu/7TiaHt7WqptolvwmuKdAXei8OzENh9RNdh7d6evjQ==", - "path": "stub.system.data.sqlite.core.netstandard/1.0.113.2", - "hashPath": "stub.system.data.sqlite.core.netstandard.1.0.113.2.nupkg.sha512" + "sha512": "sha512-f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==", + "path": "sqlitepclraw.core/2.0.4", + "hashPath": "sqlitepclraw.core.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==", + "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4", + "hashPath": "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512" }, "System.Collections/4.3.0": { "type": "package", @@ -1296,13 +1382,6 @@ "path": "system.collections.immutable/1.3.1", "hashPath": "system.collections.immutable.1.3.1.nupkg.sha512" }, - "System.Data.SQLite.Core/1.0.113.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2DKMIxfZpIVzdMfx1dj9qvTm+0m0Mx6sN6CZXMQDNytU7Sk/JKo0Ox6mvHAicfHrQgqZbUZMzMMtLXD0kwmFfg==", - "path": "system.data.sqlite.core/1.0.113.7", - "hashPath": "system.data.sqlite.core.1.0.113.7.nupkg.sha512" - }, "System.Diagnostics.Debug/4.3.0": { "type": "package", "serviceable": true, @@ -1345,6 +1424,13 @@ "path": "system.linq.async/4.0.0", "hashPath": "system.linq.async.4.0.0.nupkg.sha512" }, + "System.Memory/4.5.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", + "path": "system.memory/4.5.3", + "hashPath": "system.memory.4.5.3.nupkg.sha512" + }, "System.Private.Uri/4.3.0": { "type": "package", "serviceable": true, diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/Discord_Simple-Embed-Bot.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/Discord_Simple-Embed-Bot.dll index c78c30e..2d64f1d 100644 Binary files a/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/Discord_Simple-Embed-Bot.dll and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/Discord_Simple-Embed-Bot.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/Discord_Simple-Embed-Bot.pdb b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/Discord_Simple-Embed-Bot.pdb index c949643..745282c 100644 Binary files a/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/Discord_Simple-Embed-Bot.pdb and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/Discord_Simple-Embed-Bot.pdb differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/Microsoft.Data.Sqlite.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/Microsoft.Data.Sqlite.dll new file mode 100644 index 0000000..c705477 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/Microsoft.Data.Sqlite.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/SQLitePCLRaw.batteries_v2.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/SQLitePCLRaw.batteries_v2.dll new file mode 100644 index 0000000..c51a77d Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/SQLitePCLRaw.batteries_v2.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/SQLitePCLRaw.core.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/SQLitePCLRaw.core.dll new file mode 100644 index 0000000..d995f27 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/SQLitePCLRaw.core.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/SQLitePCLRaw.nativelibrary.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/SQLitePCLRaw.nativelibrary.dll new file mode 100644 index 0000000..7bb1b03 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/SQLitePCLRaw.nativelibrary.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/SQLitePCLRaw.provider.dynamic_cdecl.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/SQLitePCLRaw.provider.dynamic_cdecl.dll new file mode 100644 index 0000000..2be5647 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/SQLitePCLRaw.provider.dynamic_cdecl.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/System.Data.SQLite.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/System.Data.SQLite.dll deleted file mode 100644 index e0ce3ba..0000000 Binary files a/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/System.Data.SQLite.dll and /dev/null differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/libe_sqlite3.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/libe_sqlite3.so new file mode 100644 index 0000000..7c590b7 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/libe_sqlite3.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/publish/Discord_Simple-Embed-Bot.deps.json b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/publish/Discord_Simple-Embed-Bot.deps.json index c771dd6..1bca032 100644 --- a/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/publish/Discord_Simple-Embed-Bot.deps.json +++ b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/publish/Discord_Simple-Embed-Bot.deps.json @@ -10,7 +10,7 @@ "Discord_Simple-Embed-Bot/1.0.0": { "dependencies": { "Discord.Net": "2.3.0", - "System.Data.SQLite.Core": "1.0.113.7", + "Microsoft.Data.Sqlite": "5.0.3", "runtimepack.Microsoft.NETCore.App.Runtime.linux-arm64": "5.0.0" }, "runtime": { @@ -798,6 +798,23 @@ } } }, + "Microsoft.Data.Sqlite/5.0.3": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "5.0.3", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4" + } + }, + "Microsoft.Data.Sqlite.Core/5.0.3": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "5.0.3.0", + "fileVersion": "5.0.321.6417" + } + } + }, "Microsoft.NETCore.Platforms/1.1.0": {}, "Microsoft.NETCore.Targets/1.1.0": {}, "Newtonsoft.Json/12.0.2": { @@ -872,11 +889,49 @@ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" } }, - "Stub.System.Data.SQLite.Core.NetStandard/1.0.113.2": { + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.4", + "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4" + }, "runtime": { - "lib/netstandard2.1/System.Data.SQLite.dll": { - "assemblyVersion": "1.0.113.0", - "fileVersion": "1.0.113.0" + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + }, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.core/2.0.4": { + "dependencies": { + "System.Memory": "4.5.3" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "native": { + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" } } }, @@ -900,11 +955,6 @@ "System.Threading": "4.3.0" } }, - "System.Data.SQLite.Core/1.0.113.7": { - "dependencies": { - "Stub.System.Data.SQLite.Core.NetStandard": "1.0.113.2" - } - }, "System.Diagnostics.Debug/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", @@ -959,6 +1009,7 @@ } } }, + "System.Memory/4.5.3": {}, "System.Private.Uri/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", @@ -1086,6 +1137,20 @@ "path": "discord.net.websocket/2.3.0", "hashPath": "discord.net.websocket.2.3.0.nupkg.sha512" }, + "Microsoft.Data.Sqlite/5.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2Udv0yEtqNaIAdhwrm1FmnxZQwyMfB9Xe5S0mYJzeNm7xCyGINjO7Dv0EC0NfvwEqeTK19tx5cYJ7ANSM3TWKQ==", + "path": "microsoft.data.sqlite/5.0.3", + "hashPath": "microsoft.data.sqlite.5.0.3.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/5.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4nfSZVXex4PqQkcVu78/W0E2p3m24mwwqwMadnTPukHWx9Mh234WKg95qG9hs/ynULVGMfMyA1eUJdYDMeKFPw==", + "path": "microsoft.data.sqlite.core/5.0.3", + "hashPath": "microsoft.data.sqlite.core.5.0.3.nupkg.sha512" + }, "Microsoft.NETCore.Platforms/1.1.0": { "type": "package", "serviceable": true, @@ -1275,12 +1340,33 @@ "path": "runtime.unix.system.runtime.extensions/4.3.0", "hashPath": "runtime.unix.system.runtime.extensions.4.3.0.nupkg.sha512" }, - "Stub.System.Data.SQLite.Core.NetStandard/1.0.113.2": { + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { "type": "package", "serviceable": true, - "sha512": "sha512-yGIM9xFyPHl79HluNTSQarvAOIJ68pmzmlMayVN6Nivu/7TiaHt7WqptolvwmuKdAXei8OzENh9RNdh7d6evjQ==", - "path": "stub.system.data.sqlite.core.netstandard/1.0.113.2", - "hashPath": "stub.system.data.sqlite.core.netstandard.1.0.113.2.nupkg.sha512" + "sha512": "sha512-f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==", + "path": "sqlitepclraw.core/2.0.4", + "hashPath": "sqlitepclraw.core.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==", + "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4", + "hashPath": "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512" }, "System.Collections/4.3.0": { "type": "package", @@ -1296,13 +1382,6 @@ "path": "system.collections.immutable/1.3.1", "hashPath": "system.collections.immutable.1.3.1.nupkg.sha512" }, - "System.Data.SQLite.Core/1.0.113.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2DKMIxfZpIVzdMfx1dj9qvTm+0m0Mx6sN6CZXMQDNytU7Sk/JKo0Ox6mvHAicfHrQgqZbUZMzMMtLXD0kwmFfg==", - "path": "system.data.sqlite.core/1.0.113.7", - "hashPath": "system.data.sqlite.core.1.0.113.7.nupkg.sha512" - }, "System.Diagnostics.Debug/4.3.0": { "type": "package", "serviceable": true, @@ -1345,6 +1424,13 @@ "path": "system.linq.async/4.0.0", "hashPath": "system.linq.async.4.0.0.nupkg.sha512" }, + "System.Memory/4.5.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", + "path": "system.memory/4.5.3", + "hashPath": "system.memory.4.5.3.nupkg.sha512" + }, "System.Private.Uri/4.3.0": { "type": "package", "serviceable": true, diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/publish/Discord_Simple-Embed-Bot.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/publish/Discord_Simple-Embed-Bot.dll index c78c30e..2d64f1d 100644 Binary files a/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/publish/Discord_Simple-Embed-Bot.dll and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/publish/Discord_Simple-Embed-Bot.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/publish/Discord_Simple-Embed-Bot.pdb b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/publish/Discord_Simple-Embed-Bot.pdb index c949643..745282c 100644 Binary files a/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/publish/Discord_Simple-Embed-Bot.pdb and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/publish/Discord_Simple-Embed-Bot.pdb differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/publish/Microsoft.Data.Sqlite.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/publish/Microsoft.Data.Sqlite.dll new file mode 100644 index 0000000..c705477 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/publish/Microsoft.Data.Sqlite.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/publish/SQLitePCLRaw.batteries_v2.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/publish/SQLitePCLRaw.batteries_v2.dll new file mode 100644 index 0000000..c51a77d Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/publish/SQLitePCLRaw.batteries_v2.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/publish/SQLitePCLRaw.core.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/publish/SQLitePCLRaw.core.dll new file mode 100644 index 0000000..d995f27 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/publish/SQLitePCLRaw.core.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/publish/SQLitePCLRaw.nativelibrary.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/publish/SQLitePCLRaw.nativelibrary.dll new file mode 100644 index 0000000..7bb1b03 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/publish/SQLitePCLRaw.nativelibrary.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/publish/SQLitePCLRaw.provider.dynamic_cdecl.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/publish/SQLitePCLRaw.provider.dynamic_cdecl.dll new file mode 100644 index 0000000..2be5647 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/publish/SQLitePCLRaw.provider.dynamic_cdecl.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/publish/System.Data.SQLite.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/publish/System.Data.SQLite.dll deleted file mode 100644 index e0ce3ba..0000000 Binary files a/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/publish/System.Data.SQLite.dll and /dev/null differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/publish/libe_sqlite3.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/publish/libe_sqlite3.so new file mode 100644 index 0000000..7c590b7 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/publish/libe_sqlite3.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/ref/Discord_Simple-Embed-Bot.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/ref/Discord_Simple-Embed-Bot.dll index 9e2709d..2d79f97 100644 Binary files a/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/ref/Discord_Simple-Embed-Bot.dll and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ubuntu-arm64/ref/Discord_Simple-Embed-Bot.dll differ diff --git a/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.assets.cache b/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.assets.cache index 1e674e3..f3a3968 100644 Binary files a/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.assets.cache and b/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.assets.cache differ diff --git a/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.csproj.CoreCompileInputs.cache b/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.csproj.CoreCompileInputs.cache index 68c3d7d..a9dad1a 100644 --- a/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.csproj.CoreCompileInputs.cache +++ b/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -fce56c50dd4c34795ae563c97b2bd30baf9ffcb4 +9ad311ffe2f01ea4cfd52c142a069a1b89638143 diff --git a/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.csproj.FileListAbsolute.txt b/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.csproj.FileListAbsolute.txt index b13de2e..ed6822a 100644 --- a/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.csproj.FileListAbsolute.txt +++ b/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.csproj.FileListAbsolute.txt @@ -16,15 +16,28 @@ C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simpl C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\Discord.Net.Webhook.dll C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\Discord.Net.WebSocket.dll C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\Newtonsoft.Json.dll -C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\System.Data.SQLite.dll C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\System.Interactive.Async.dll C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\System.Linq.Async.dll -C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\runtimes\linux-x64\native\SQLite.Interop.dll -C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\runtimes\osx-x64\native\SQLite.Interop.dll -C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\runtimes\win-x64\native\SQLite.Interop.dll -C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\runtimes\win-x86\native\SQLite.Interop.dll C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\obj\Debug\net5.0\Discord_Simple-Embed-Bot.csproj.CopyComplete C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\obj\Debug\net5.0\Discord_Simple-Embed-Bot.dll C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\obj\Debug\net5.0\ref\Discord_Simple-Embed-Bot.dll C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\obj\Debug\net5.0\Discord_Simple-Embed-Bot.pdb C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\obj\Debug\net5.0\Discord_Simple-Embed-Bot.genruntimeconfig.cache +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\Microsoft.Data.Sqlite.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\SQLitePCLRaw.core.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\SQLitePCLRaw.batteries_v2.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\SQLitePCLRaw.nativelibrary.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\SQLitePCLRaw.provider.dynamic_cdecl.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\runtimes\alpine-x64\native\libe_sqlite3.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\runtimes\linux-arm\native\libe_sqlite3.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\runtimes\linux-arm64\native\libe_sqlite3.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\runtimes\linux-armel\native\libe_sqlite3.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\runtimes\linux-mips64\native\libe_sqlite3.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\runtimes\linux-musl-x64\native\libe_sqlite3.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\runtimes\linux-x64\native\libe_sqlite3.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\runtimes\linux-x86\native\libe_sqlite3.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\runtimes\osx-x64\native\libe_sqlite3.dylib +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\runtimes\win-arm\native\e_sqlite3.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\runtimes\win-arm64\native\e_sqlite3.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\runtimes\win-x64\native\e_sqlite3.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\runtimes\win-x86\native\e_sqlite3.dll diff --git a/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.csprojAssemblyReference.cache b/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.csprojAssemblyReference.cache index 5c13cb4..f44056e 100644 Binary files a/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.csprojAssemblyReference.cache and b/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.csprojAssemblyReference.cache differ diff --git a/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.dll b/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.dll index 722946f..bb019e7 100644 Binary files a/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.dll and b/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.dll differ diff --git a/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.pdb b/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.pdb index 2fe51d7..816b48e 100644 Binary files a/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.pdb and b/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.pdb differ diff --git a/Discord_Simple-Embed-Bot/obj/Discord_Simple-Embed-Bot.csproj.nuget.dgspec.json b/Discord_Simple-Embed-Bot/obj/Discord_Simple-Embed-Bot.csproj.nuget.dgspec.json index 7a27c11..f5f4e03 100644 --- a/Discord_Simple-Embed-Bot/obj/Discord_Simple-Embed-Bot.csproj.nuget.dgspec.json +++ b/Discord_Simple-Embed-Bot/obj/Discord_Simple-Embed-Bot.csproj.nuget.dgspec.json @@ -50,9 +50,9 @@ "target": "Package", "version": "[2.3.0, )" }, - "System.Data.SQLite.Core": { + "Microsoft.Data.Sqlite": { "target": "Package", - "version": "[1.0.113.7, )" + "version": "[5.0.3, )" } }, "imports": [ diff --git a/Discord_Simple-Embed-Bot/obj/Discord_Simple-Embed-Bot.csproj.nuget.g.props b/Discord_Simple-Embed-Bot/obj/Discord_Simple-Embed-Bot.csproj.nuget.g.props index 8229cc7..dcc4aba 100644 --- a/Discord_Simple-Embed-Bot/obj/Discord_Simple-Embed-Bot.csproj.nuget.g.props +++ b/Discord_Simple-Embed-Bot/obj/Discord_Simple-Embed-Bot.csproj.nuget.g.props @@ -7,7 +7,7 @@ $(UserProfile)\.nuget\packages\ C:\Users\David\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Microsoft\Xamarin\NuGet\ PackageReference - 5.8.0 + 5.9.0 diff --git a/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.assets.cache b/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.assets.cache index a1e48d5..f809c4e 100644 Binary files a/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.assets.cache and b/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.assets.cache differ diff --git a/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.csproj.CoreCompileInputs.cache b/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.csproj.CoreCompileInputs.cache index 1545c28..32439a2 100644 --- a/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.csproj.CoreCompileInputs.cache +++ b/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -ab35251034900f2dd2013cd042748a0dc687901e +0270827e8ce430d4e15a602383fee2f4eabe52b9 diff --git a/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.csproj.FileListAbsolute.txt b/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.csproj.FileListAbsolute.txt index 41f97ef..d710bb2 100644 --- a/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.csproj.FileListAbsolute.txt +++ b/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.csproj.FileListAbsolute.txt @@ -11,13 +11,8 @@ C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simpl C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\Discord.Net.Webhook.dll C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\Discord.Net.WebSocket.dll C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\Newtonsoft.Json.dll -C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\System.Data.SQLite.dll C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\System.Interactive.Async.dll C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\System.Linq.Async.dll -C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\runtimes\linux-x64\native\SQLite.Interop.dll -C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\runtimes\osx-x64\native\SQLite.Interop.dll -C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\runtimes\win-x64\native\SQLite.Interop.dll -C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\runtimes\win-x86\native\SQLite.Interop.dll C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\obj\Release\net5.0\Discord_Simple-Embed-Bot.csprojAssemblyReference.cache C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\obj\Release\net5.0\Discord_Simple-Embed-Bot.GeneratedMSBuildEditorConfig.editorconfig C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\obj\Release\net5.0\Discord_Simple-Embed-Bot.AssemblyInfoInputs.cache @@ -28,3 +23,21 @@ C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simpl C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\obj\Release\net5.0\ref\Discord_Simple-Embed-Bot.dll C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\obj\Release\net5.0\Discord_Simple-Embed-Bot.pdb C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\obj\Release\net5.0\Discord_Simple-Embed-Bot.genruntimeconfig.cache +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\Microsoft.Data.Sqlite.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\SQLitePCLRaw.batteries_v2.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\SQLitePCLRaw.nativelibrary.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\SQLitePCLRaw.core.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\SQLitePCLRaw.provider.dynamic_cdecl.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\runtimes\alpine-x64\native\libe_sqlite3.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\runtimes\linux-arm\native\libe_sqlite3.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\runtimes\linux-arm64\native\libe_sqlite3.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\runtimes\linux-armel\native\libe_sqlite3.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\runtimes\linux-mips64\native\libe_sqlite3.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\runtimes\linux-musl-x64\native\libe_sqlite3.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\runtimes\linux-x64\native\libe_sqlite3.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\runtimes\linux-x86\native\libe_sqlite3.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\runtimes\osx-x64\native\libe_sqlite3.dylib +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\runtimes\win-arm\native\e_sqlite3.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\runtimes\win-arm64\native\e_sqlite3.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\runtimes\win-x64\native\e_sqlite3.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\runtimes\win-x86\native\e_sqlite3.dll diff --git a/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.csprojAssemblyReference.cache b/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.csprojAssemblyReference.cache index 6b3202c..20017cf 100644 Binary files a/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.csprojAssemblyReference.cache and b/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.csprojAssemblyReference.cache differ diff --git a/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.dll b/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.dll index 57bb668..c58cc4d 100644 Binary files a/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.dll and b/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.dll differ diff --git a/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.pdb b/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.pdb index f057a32..9ab9a6c 100644 Binary files a/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.pdb and b/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.pdb differ diff --git a/Discord_Simple-Embed-Bot/obj/Release/net5.0/PublishOutputs.085b731a02.txt b/Discord_Simple-Embed-Bot/obj/Release/net5.0/PublishOutputs.085b731a02.txt new file mode 100644 index 0000000..7b5fe8c --- /dev/null +++ b/Discord_Simple-Embed-Bot/obj/Release/net5.0/PublishOutputs.085b731a02.txt @@ -0,0 +1,31 @@ +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\Discord_Simple-Embed-Bot.exe +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\Discord_Simple-Embed-Bot.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\Discord_Simple-Embed-Bot.deps.json +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\Discord_Simple-Embed-Bot.runtimeconfig.json +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\Discord_Simple-Embed-Bot.pdb +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\Discord.Net.Commands.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\Discord.Net.Core.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\Discord.Net.Rest.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\Discord.Net.Webhook.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\Discord.Net.WebSocket.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\Microsoft.Data.Sqlite.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\Newtonsoft.Json.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\SQLitePCLRaw.batteries_v2.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\SQLitePCLRaw.nativelibrary.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\SQLitePCLRaw.core.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\SQLitePCLRaw.provider.dynamic_cdecl.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Interactive.Async.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Linq.Async.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\runtimes\alpine-x64\native\libe_sqlite3.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\runtimes\linux-arm\native\libe_sqlite3.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\runtimes\linux-arm64\native\libe_sqlite3.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\runtimes\linux-armel\native\libe_sqlite3.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\runtimes\linux-mips64\native\libe_sqlite3.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\runtimes\linux-musl-x64\native\libe_sqlite3.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\runtimes\linux-x64\native\libe_sqlite3.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\runtimes\linux-x86\native\libe_sqlite3.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\runtimes\osx-x64\native\libe_sqlite3.dylib +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\runtimes\win-arm\native\e_sqlite3.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\runtimes\win-arm64\native\e_sqlite3.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\runtimes\win-x64\native\e_sqlite3.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\runtimes\win-x86\native\e_sqlite3.dll diff --git a/Discord_Simple-Embed-Bot/obj/Release/net5.0/ubuntu-arm64/Discord_Simple-Embed-Bot.assets.cache b/Discord_Simple-Embed-Bot/obj/Release/net5.0/ubuntu-arm64/Discord_Simple-Embed-Bot.assets.cache index 212846a..72e800a 100644 Binary files a/Discord_Simple-Embed-Bot/obj/Release/net5.0/ubuntu-arm64/Discord_Simple-Embed-Bot.assets.cache and b/Discord_Simple-Embed-Bot/obj/Release/net5.0/ubuntu-arm64/Discord_Simple-Embed-Bot.assets.cache differ diff --git a/Discord_Simple-Embed-Bot/obj/Release/net5.0/ubuntu-arm64/Discord_Simple-Embed-Bot.csproj.CoreCompileInputs.cache b/Discord_Simple-Embed-Bot/obj/Release/net5.0/ubuntu-arm64/Discord_Simple-Embed-Bot.csproj.CoreCompileInputs.cache index c73a8bf..0f1b007 100644 --- a/Discord_Simple-Embed-Bot/obj/Release/net5.0/ubuntu-arm64/Discord_Simple-Embed-Bot.csproj.CoreCompileInputs.cache +++ b/Discord_Simple-Embed-Bot/obj/Release/net5.0/ubuntu-arm64/Discord_Simple-Embed-Bot.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -14291015536a48d83bfa60609a4373b96c618a14 +a2f537243bfd1528da8c534d2cb3f80e7992dc33 diff --git a/Discord_Simple-Embed-Bot/obj/Release/net5.0/ubuntu-arm64/Discord_Simple-Embed-Bot.csproj.FileListAbsolute.txt b/Discord_Simple-Embed-Bot/obj/Release/net5.0/ubuntu-arm64/Discord_Simple-Embed-Bot.csproj.FileListAbsolute.txt index fe1a59f..34f6ce5 100644 --- a/Discord_Simple-Embed-Bot/obj/Release/net5.0/ubuntu-arm64/Discord_Simple-Embed-Bot.csproj.FileListAbsolute.txt +++ b/Discord_Simple-Embed-Bot/obj/Release/net5.0/ubuntu-arm64/Discord_Simple-Embed-Bot.csproj.FileListAbsolute.txt @@ -11,7 +11,6 @@ C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simpl C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\ubuntu-arm64\Discord.Net.Webhook.dll C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\ubuntu-arm64\Discord.Net.WebSocket.dll C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\ubuntu-arm64\Newtonsoft.Json.dll -C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\ubuntu-arm64\System.Data.SQLite.dll C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\ubuntu-arm64\System.Interactive.Async.dll C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\ubuntu-arm64\System.Linq.Async.dll C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\ubuntu-arm64\Microsoft.CSharp.dll @@ -205,3 +204,9 @@ C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simpl C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\obj\Release\net5.0\ubuntu-arm64\ref\Discord_Simple-Embed-Bot.dll C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\obj\Release\net5.0\ubuntu-arm64\Discord_Simple-Embed-Bot.pdb C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\obj\Release\net5.0\ubuntu-arm64\Discord_Simple-Embed-Bot.genruntimeconfig.cache +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\ubuntu-arm64\Microsoft.Data.Sqlite.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\ubuntu-arm64\SQLitePCLRaw.batteries_v2.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\ubuntu-arm64\SQLitePCLRaw.nativelibrary.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\ubuntu-arm64\SQLitePCLRaw.core.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\ubuntu-arm64\SQLitePCLRaw.provider.dynamic_cdecl.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\ubuntu-arm64\libe_sqlite3.so diff --git a/Discord_Simple-Embed-Bot/obj/Release/net5.0/ubuntu-arm64/Discord_Simple-Embed-Bot.csprojAssemblyReference.cache b/Discord_Simple-Embed-Bot/obj/Release/net5.0/ubuntu-arm64/Discord_Simple-Embed-Bot.csprojAssemblyReference.cache index 62ebe24..550611b 100644 Binary files a/Discord_Simple-Embed-Bot/obj/Release/net5.0/ubuntu-arm64/Discord_Simple-Embed-Bot.csprojAssemblyReference.cache and b/Discord_Simple-Embed-Bot/obj/Release/net5.0/ubuntu-arm64/Discord_Simple-Embed-Bot.csprojAssemblyReference.cache differ diff --git a/Discord_Simple-Embed-Bot/obj/Release/net5.0/ubuntu-arm64/Discord_Simple-Embed-Bot.dll b/Discord_Simple-Embed-Bot/obj/Release/net5.0/ubuntu-arm64/Discord_Simple-Embed-Bot.dll index c78c30e..2d64f1d 100644 Binary files a/Discord_Simple-Embed-Bot/obj/Release/net5.0/ubuntu-arm64/Discord_Simple-Embed-Bot.dll and b/Discord_Simple-Embed-Bot/obj/Release/net5.0/ubuntu-arm64/Discord_Simple-Embed-Bot.dll differ diff --git a/Discord_Simple-Embed-Bot/obj/Release/net5.0/ubuntu-arm64/Discord_Simple-Embed-Bot.pdb b/Discord_Simple-Embed-Bot/obj/Release/net5.0/ubuntu-arm64/Discord_Simple-Embed-Bot.pdb index c949643..745282c 100644 Binary files a/Discord_Simple-Embed-Bot/obj/Release/net5.0/ubuntu-arm64/Discord_Simple-Embed-Bot.pdb and b/Discord_Simple-Embed-Bot/obj/Release/net5.0/ubuntu-arm64/Discord_Simple-Embed-Bot.pdb differ diff --git a/Discord_Simple-Embed-Bot/obj/Release/net5.0/ubuntu-arm64/PublishOutputs.72dbc629a2.txt b/Discord_Simple-Embed-Bot/obj/Release/net5.0/ubuntu-arm64/PublishOutputs.72dbc629a2.txt index a80a159..60aaee4 100644 --- a/Discord_Simple-Embed-Bot/obj/Release/net5.0/ubuntu-arm64/PublishOutputs.72dbc629a2.txt +++ b/Discord_Simple-Embed-Bot/obj/Release/net5.0/ubuntu-arm64/PublishOutputs.72dbc629a2.txt @@ -189,7 +189,12 @@ C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simpl C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\ubuntu-arm64\publish\Discord.Net.Rest.dll C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\ubuntu-arm64\publish\Discord.Net.Webhook.dll C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\ubuntu-arm64\publish\Discord.Net.WebSocket.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\ubuntu-arm64\publish\Microsoft.Data.Sqlite.dll C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\ubuntu-arm64\publish\Newtonsoft.Json.dll -C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\ubuntu-arm64\publish\System.Data.SQLite.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\ubuntu-arm64\publish\SQLitePCLRaw.batteries_v2.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\ubuntu-arm64\publish\SQLitePCLRaw.nativelibrary.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\ubuntu-arm64\publish\SQLitePCLRaw.core.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\ubuntu-arm64\publish\SQLitePCLRaw.provider.dynamic_cdecl.dll C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\ubuntu-arm64\publish\System.Interactive.Async.dll C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\ubuntu-arm64\publish\System.Linq.Async.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\ubuntu-arm64\publish\libe_sqlite3.so diff --git a/Discord_Simple-Embed-Bot/obj/Release/net5.0/ubuntu-arm64/ref/Discord_Simple-Embed-Bot.dll b/Discord_Simple-Embed-Bot/obj/Release/net5.0/ubuntu-arm64/ref/Discord_Simple-Embed-Bot.dll index 9e2709d..2d79f97 100644 Binary files a/Discord_Simple-Embed-Bot/obj/Release/net5.0/ubuntu-arm64/ref/Discord_Simple-Embed-Bot.dll and b/Discord_Simple-Embed-Bot/obj/Release/net5.0/ubuntu-arm64/ref/Discord_Simple-Embed-Bot.dll differ diff --git a/Discord_Simple-Embed-Bot/obj/project.assets.json b/Discord_Simple-Embed-Bot/obj/project.assets.json index 2597527..df7a063 100644 --- a/Discord_Simple-Embed-Bot/obj/project.assets.json +++ b/Discord_Simple-Embed-Bot/obj/project.assets.json @@ -76,6 +76,31 @@ "lib/netstandard2.1/Discord.Net.WebSocket.dll": {} } }, + "Microsoft.Data.Sqlite/5.0.3": { + "type": "package", + "dependencies": { + "Microsoft.Data.Sqlite.Core": "5.0.3", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4" + }, + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "Microsoft.Data.Sqlite.Core/5.0.3": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {} + } + }, "Microsoft.NETCore.Platforms/1.1.0": { "type": "package", "compile": { @@ -103,33 +128,109 @@ "lib/netstandard2.0/Newtonsoft.Json.dll": {} } }, - "Stub.System.Data.SQLite.Core.NetStandard/1.0.113.2": { + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.4", + "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4" + }, "compile": { - "lib/netstandard2.1/System.Data.SQLite.dll": {} + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": {}, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": {} }, "runtime": { - "lib/netstandard2.1/System.Data.SQLite.dll": {} + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": {}, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": {} + } + }, + "SQLitePCLRaw.core/2.0.4": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.3" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} }, "runtimeTargets": { - "runtimes/linux-x64/native/SQLite.Interop.dll": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "alpine-x64" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-armel" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-mips64" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { "assetType": "native", "rid": "linux-x64" }, - "runtimes/osx-x64/native/SQLite.Interop.dll": { + "runtimes/linux-x86/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x86" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { "assetType": "native", "rid": "osx-x64" }, - "runtimes/win-x64/native/SQLite.Interop.dll": { + "runtimes/win-arm/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { "assetType": "native", "rid": "win-x64" }, - "runtimes/win-x86/native/SQLite.Interop.dll": { + "runtimes/win-x86/native/e_sqlite3.dll": { "assetType": "native", "rid": "win-x86" } } }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": {} + } + }, "System.Collections/4.3.0": { "type": "package", "dependencies": { @@ -160,12 +261,6 @@ "lib/netstandard1.0/System.Collections.Immutable.dll": {} } }, - "System.Data.SQLite.Core/1.0.113.7": { - "type": "package", - "dependencies": { - "Stub.System.Data.SQLite.Core.NetStandard": "1.0.113.2" - } - }, "System.Diagnostics.Debug/4.3.0": { "type": "package", "dependencies": { @@ -238,6 +333,15 @@ "lib/netcoreapp3.0/System.Linq.Async.dll": {} } }, + "System.Memory/4.5.3": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, "System.Reflection/4.3.0": { "type": "package", "dependencies": { @@ -428,6 +532,33 @@ "lib/netstandard2.1/Discord.Net.WebSocket.xml" ] }, + "Microsoft.Data.Sqlite/5.0.3": { + "sha512": "2Udv0yEtqNaIAdhwrm1FmnxZQwyMfB9Xe5S0mYJzeNm7xCyGINjO7Dv0EC0NfvwEqeTK19tx5cYJ7ANSM3TWKQ==", + "type": "package", + "path": "microsoft.data.sqlite/5.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/_._", + "microsoft.data.sqlite.5.0.3.nupkg.sha512", + "microsoft.data.sqlite.nuspec" + ] + }, + "Microsoft.Data.Sqlite.Core/5.0.3": { + "sha512": "4nfSZVXex4PqQkcVu78/W0E2p3m24mwwqwMadnTPukHWx9Mh234WKg95qG9hs/ynULVGMfMyA1eUJdYDMeKFPw==", + "type": "package", + "path": "microsoft.data.sqlite.core/5.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll", + "lib/netstandard2.0/Microsoft.Data.Sqlite.xml", + "microsoft.data.sqlite.core.5.0.3.nupkg.sha512", + "microsoft.data.sqlite.core.nuspec" + ] + }, "Microsoft.NETCore.Platforms/1.1.0": { "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", "type": "package", @@ -488,25 +619,77 @@ "newtonsoft.json.nuspec" ] }, - "Stub.System.Data.SQLite.Core.NetStandard/1.0.113.2": { - "sha512": "yGIM9xFyPHl79HluNTSQarvAOIJ68pmzmlMayVN6Nivu/7TiaHt7WqptolvwmuKdAXei8OzENh9RNdh7d6evjQ==", + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "sha512": "f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==", "type": "package", - "path": "stub.system.data.sqlite.core.netstandard/1.0.113.2", + "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4", "files": [ ".nupkg.metadata", ".signature.p7s", - "lib/netstandard2.0/System.Data.SQLite.dll", - "lib/netstandard2.0/System.Data.SQLite.dll.altconfig", - "lib/netstandard2.0/System.Data.SQLite.xml", - "lib/netstandard2.1/System.Data.SQLite.dll", - "lib/netstandard2.1/System.Data.SQLite.dll.altconfig", - "lib/netstandard2.1/System.Data.SQLite.xml", - "runtimes/linux-x64/native/SQLite.Interop.dll", - "runtimes/osx-x64/native/SQLite.Interop.dll", - "runtimes/win-x64/native/SQLite.Interop.dll", - "runtimes/win-x86/native/SQLite.Interop.dll", - "stub.system.data.sqlite.core.netstandard.1.0.113.2.nupkg.sha512", - "stub.system.data.sqlite.core.netstandard.nuspec" + "lib/Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll", + "lib/Xamarin.tvOS10/SQLitePCLRaw.batteries_v2.dll", + "lib/net461/SQLitePCLRaw.batteries_v2.dll", + "lib/net461/SQLitePCLRaw.nativelibrary.dll", + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll", + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll", + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll", + "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512", + "sqlitepclraw.bundle_e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.core/2.0.4": { + "sha512": "4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==", + "type": "package", + "path": "sqlitepclraw.core/2.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/SQLitePCLRaw.core.dll", + "sqlitepclraw.core.2.0.4.nupkg.sha512", + "sqlitepclraw.core.nuspec" + ] + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "sha512": "oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==", + "type": "package", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/net461/SQLitePCLRaw.lib.e_sqlite3.targets", + "lib/net461/_._", + "lib/netstandard2.0/_._", + "runtimes/alpine-x64/native/libe_sqlite3.so", + "runtimes/linux-arm/native/libe_sqlite3.so", + "runtimes/linux-arm64/native/libe_sqlite3.so", + "runtimes/linux-armel/native/libe_sqlite3.so", + "runtimes/linux-mips64/native/libe_sqlite3.so", + "runtimes/linux-musl-x64/native/libe_sqlite3.so", + "runtimes/linux-x64/native/libe_sqlite3.so", + "runtimes/linux-x86/native/libe_sqlite3.so", + "runtimes/osx-x64/native/libe_sqlite3.dylib", + "runtimes/win-arm/native/e_sqlite3.dll", + "runtimes/win-arm64/native/e_sqlite3.dll", + "runtimes/win-x64/native/e_sqlite3.dll", + "runtimes/win-x86/native/e_sqlite3.dll", + "runtimes/win10-arm/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-arm64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x86/nativeassets/uap10.0/e_sqlite3.dll", + "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512", + "sqlitepclraw.lib.e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "sha512": "AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==", + "type": "package", + "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll", + "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512", + "sqlitepclraw.provider.dynamic_cdecl.nuspec" ] }, "System.Collections/4.3.0": { @@ -594,17 +777,6 @@ "system.collections.immutable.nuspec" ] }, - "System.Data.SQLite.Core/1.0.113.7": { - "sha512": "2DKMIxfZpIVzdMfx1dj9qvTm+0m0Mx6sN6CZXMQDNytU7Sk/JKo0Ox6mvHAicfHrQgqZbUZMzMMtLXD0kwmFfg==", - "type": "package", - "path": "system.data.sqlite.core/1.0.113.7", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "system.data.sqlite.core.1.0.113.7.nupkg.sha512", - "system.data.sqlite.core.nuspec" - ] - }, "System.Diagnostics.Debug/4.3.0": { "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", "type": "package", @@ -940,6 +1112,27 @@ "system.linq.async.nuspec" ] }, + "System.Memory/4.5.3": { + "sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", + "type": "package", + "path": "system.memory/4.5.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.3.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, "System.Reflection/4.3.0": { "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", "type": "package", @@ -1519,7 +1712,7 @@ "projectFileDependencyGroups": { "net5.0": [ "Discord.Net >= 2.3.0", - "System.Data.SQLite.Core >= 1.0.113.7" + "Microsoft.Data.Sqlite >= 5.0.3" ] }, "packageFolders": { @@ -1573,9 +1766,9 @@ "target": "Package", "version": "[2.3.0, )" }, - "System.Data.SQLite.Core": { + "Microsoft.Data.Sqlite": { "target": "Package", - "version": "[1.0.113.7, )" + "version": "[5.0.3, )" } }, "imports": [ diff --git a/Discord_Simple-Embed-Bot/obj/project.nuget.cache b/Discord_Simple-Embed-Bot/obj/project.nuget.cache index 245b647..5aad7fc 100644 --- a/Discord_Simple-Embed-Bot/obj/project.nuget.cache +++ b/Discord_Simple-Embed-Bot/obj/project.nuget.cache @@ -1,6 +1,6 @@ { "version": 2, - "dgSpecHash": "j1bkCxpzGYF9Iu+hJrcX7xvgLVt7/uF/bBtsoXToXT0I2bPOPQj3/abWc8Ys5K4uCuDLJzc/CNXxT4T5ipecxw==", + "dgSpecHash": "Y8BjRMo/s3568exjdhLgeUXHdS66pxAXUN7tZpjgUEAnKGEcVERMsXbA1v01zmaxGfyviTm+dSHSX3uEwySzQw==", "success": true, "projectFilePath": "C:\\Users\\David\\Google Drive\\Programmieren\\Discord_Simple-Embed-Bot\\Discord_Simple-Embed-Bot\\Discord_Simple-Embed-Bot.csproj", "expectedPackageFiles": [ @@ -10,19 +10,24 @@ "C:\\Users\\David\\.nuget\\packages\\discord.net.rest\\2.3.0\\discord.net.rest.2.3.0.nupkg.sha512", "C:\\Users\\David\\.nuget\\packages\\discord.net.webhook\\2.3.0\\discord.net.webhook.2.3.0.nupkg.sha512", "C:\\Users\\David\\.nuget\\packages\\discord.net.websocket\\2.3.0\\discord.net.websocket.2.3.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\microsoft.data.sqlite\\5.0.3\\microsoft.data.sqlite.5.0.3.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\microsoft.data.sqlite.core\\5.0.3\\microsoft.data.sqlite.core.5.0.3.nupkg.sha512", "C:\\Users\\David\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512", "C:\\Users\\David\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", "C:\\Users\\David\\.nuget\\packages\\newtonsoft.json\\12.0.2\\newtonsoft.json.12.0.2.nupkg.sha512", - "C:\\Users\\David\\.nuget\\packages\\stub.system.data.sqlite.core.netstandard\\1.0.113.2\\stub.system.data.sqlite.core.netstandard.1.0.113.2.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\sqlitepclraw.bundle_e_sqlite3\\2.0.4\\sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\sqlitepclraw.core\\2.0.4\\sqlitepclraw.core.2.0.4.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3\\2.0.4\\sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\sqlitepclraw.provider.dynamic_cdecl\\2.0.4\\sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512", "C:\\Users\\David\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", "C:\\Users\\David\\.nuget\\packages\\system.collections.immutable\\1.3.1\\system.collections.immutable.1.3.1.nupkg.sha512", - "C:\\Users\\David\\.nuget\\packages\\system.data.sqlite.core\\1.0.113.7\\system.data.sqlite.core.1.0.113.7.nupkg.sha512", "C:\\Users\\David\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", "C:\\Users\\David\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", "C:\\Users\\David\\.nuget\\packages\\system.interactive.async\\4.0.0\\system.interactive.async.4.0.0.nupkg.sha512", "C:\\Users\\David\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", "C:\\Users\\David\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", "C:\\Users\\David\\.nuget\\packages\\system.linq.async\\4.0.0\\system.linq.async.4.0.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\system.memory\\4.5.3\\system.memory.4.5.3.nupkg.sha512", "C:\\Users\\David\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", "C:\\Users\\David\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", "C:\\Users\\David\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512",