mirror of
https://github.com/Stone-Red-Code/Discord_Simple-Embed-Bot.git
synced 2026-09-07 15:56:19 +02:00
changed sqlite libary
System.Data.SQLite.Core to Microsoft.Data.Sqlite
This commit is contained in:
Binary file not shown.
@@ -83,11 +83,7 @@ namespace Discord_Simple_Embed_Bot
|
|||||||
|
|
||||||
public static string PrefixFromMessage(SocketUserMessage message)
|
public static string PrefixFromMessage(SocketUserMessage message)
|
||||||
{
|
{
|
||||||
string prefix = "eb!";
|
string prefix = SqlManager.GetData((message.Channel as SocketGuildChannel).Guild.Id, 'p').Result;
|
||||||
if (Architecture.Arm == RuntimeInformation.OSArchitecture)
|
|
||||||
return prefix;
|
|
||||||
|
|
||||||
prefix = SqlManager.GetData((message.Channel as SocketGuildChannel).Guild.Id, 'p').Result;
|
|
||||||
GC.Collect();
|
GC.Collect();
|
||||||
GC.WaitForPendingFinalizers();
|
GC.WaitForPendingFinalizers();
|
||||||
return prefix;
|
return prefix;
|
||||||
|
|||||||
@@ -55,15 +55,8 @@ namespace Discord_Simple_Embed_Bot
|
|||||||
return;
|
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}`");
|
||||||
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!");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static public async Task CreateEmbed(SocketUserMessage message)
|
static public async Task CreateEmbed(SocketUserMessage message)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
@@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Discord.Net" Version="2.3.0" />
|
<PackageReference Include="Discord.Net" Version="2.3.0" />
|
||||||
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.113.7" />
|
<PackageReference Include="Microsoft.Data.Sqlite" Version="5.0.3" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
using System;
|
using Microsoft.Data.Sqlite;
|
||||||
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Data.SQLite;
|
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
@@ -14,24 +14,20 @@ namespace Discord_Simple_Embed_Bot
|
|||||||
static SqlManager()
|
static SqlManager()
|
||||||
{
|
{
|
||||||
databasePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory + "MainDatabase.sqlite");
|
databasePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory + "MainDatabase.sqlite");
|
||||||
sqlConnectionString = "Data Source = " + databasePath + "; Version = 3";
|
sqlConnectionString = "Data Source = " + databasePath;
|
||||||
|
|
||||||
//Create SQLite database file
|
//Create SQLite database file
|
||||||
if (!File.Exists(databasePath))
|
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 sqlCommand1 = "CREATE TABLE IF NOT EXISTS Settings (ServerId INTEGER PRIMARY KEY,Data TEXT)";
|
||||||
string sqlCommand2 = "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();
|
m_dbConnection.Open();
|
||||||
|
|
||||||
SQLiteCommand command = new SQLiteCommand(m_dbConnection);
|
SqliteCommand command = new SqliteCommand(sqlCommand1,m_dbConnection);
|
||||||
command.CommandText = sqlCommand1;
|
|
||||||
command.ExecuteNonQuery();
|
|
||||||
command.CommandText = sqlCommand2;
|
|
||||||
command.ExecuteNonQuery();
|
command.ExecuteNonQuery();
|
||||||
|
|
||||||
m_dbConnection.Close();
|
m_dbConnection.Close();
|
||||||
@@ -41,11 +37,11 @@ namespace Discord_Simple_Embed_Bot
|
|||||||
{
|
{
|
||||||
await Task.Run(() =>
|
await Task.Run(() =>
|
||||||
{
|
{
|
||||||
SQLiteConnection dbConnection = new SQLiteConnection(sqlConnectionString);
|
SqliteConnection dbConnection = new SqliteConnection(sqlConnectionString);
|
||||||
SQLiteCommand command = new SQLiteCommand("INSERT OR REPLACE INTO Settings (ServerId,Data) values (@serverId, @prefix)", dbConnection);
|
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("@serverId", serverId + type));
|
||||||
command.Parameters.Add(new SQLiteParameter("@prefix", data));
|
command.Parameters.Add(new SqliteParameter("@prefix", data));
|
||||||
|
|
||||||
dbConnection.Open();
|
dbConnection.Open();
|
||||||
command.Connection = dbConnection;
|
command.Connection = dbConnection;
|
||||||
@@ -59,15 +55,15 @@ namespace Discord_Simple_Embed_Bot
|
|||||||
return await Task<string>.Run(() =>
|
return await Task<string>.Run(() =>
|
||||||
{
|
{
|
||||||
string data = null;
|
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();
|
dbConnection.Open();
|
||||||
SQLiteDataReader dr = command.ExecuteReader();
|
SqliteDataReader dr = command.ExecuteReader();
|
||||||
if (dr.Read())
|
if (dr.Read())
|
||||||
{
|
{
|
||||||
data = dr.GetString(1);
|
data = dr.GetString(1);
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"Discord_Simple-Embed-Bot/1.0.0": {
|
"Discord_Simple-Embed-Bot/1.0.0": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Discord.Net": "2.3.0",
|
"Discord.Net": "2.3.0",
|
||||||
"System.Data.SQLite.Core": "1.0.113.7"
|
"Microsoft.Data.Sqlite": "5.0.3"
|
||||||
},
|
},
|
||||||
"runtime": {
|
"runtime": {
|
||||||
"Discord_Simple-Embed-Bot.dll": {}
|
"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.Platforms/1.1.0": {},
|
||||||
"Microsoft.NETCore.Targets/1.1.0": {},
|
"Microsoft.NETCore.Targets/1.1.0": {},
|
||||||
"Newtonsoft.Json/12.0.2": {
|
"Newtonsoft.Json/12.0.2": {
|
||||||
@@ -93,33 +110,111 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Stub.System.Data.SQLite.Core.NetStandard/1.0.113.2": {
|
"SQLitePCLRaw.bundle_e_sqlite3/2.0.4": {
|
||||||
"runtime": {
|
"dependencies": {
|
||||||
"lib/netstandard2.1/System.Data.SQLite.dll": {
|
"SQLitePCLRaw.core": "2.0.4",
|
||||||
"assemblyVersion": "1.0.113.0",
|
"SQLitePCLRaw.lib.e_sqlite3": "2.0.4",
|
||||||
"fileVersion": "1.0.113.0"
|
"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": {
|
"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",
|
"rid": "linux-x64",
|
||||||
"assetType": "native",
|
"assetType": "native",
|
||||||
"fileVersion": "0.0.0.0"
|
"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",
|
"rid": "osx-x64",
|
||||||
"assetType": "native",
|
"assetType": "native",
|
||||||
"fileVersion": "0.0.0.0"
|
"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",
|
"rid": "win-x64",
|
||||||
"assetType": "native",
|
"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",
|
"rid": "win-x86",
|
||||||
"assetType": "native",
|
"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.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": {
|
"System.Diagnostics.Debug/4.3.0": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.NETCore.Platforms": "1.1.0",
|
"Microsoft.NETCore.Platforms": "1.1.0",
|
||||||
@@ -198,6 +288,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"System.Memory/4.5.3": {},
|
||||||
"System.Reflection/4.3.0": {
|
"System.Reflection/4.3.0": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.NETCore.Platforms": "1.1.0",
|
"Microsoft.NETCore.Platforms": "1.1.0",
|
||||||
@@ -306,6 +397,20 @@
|
|||||||
"path": "discord.net.websocket/2.3.0",
|
"path": "discord.net.websocket/2.3.0",
|
||||||
"hashPath": "discord.net.websocket.2.3.0.nupkg.sha512"
|
"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": {
|
"Microsoft.NETCore.Platforms/1.1.0": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
@@ -327,12 +432,33 @@
|
|||||||
"path": "newtonsoft.json/12.0.2",
|
"path": "newtonsoft.json/12.0.2",
|
||||||
"hashPath": "newtonsoft.json.12.0.2.nupkg.sha512"
|
"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",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
"sha512": "sha512-yGIM9xFyPHl79HluNTSQarvAOIJ68pmzmlMayVN6Nivu/7TiaHt7WqptolvwmuKdAXei8OzENh9RNdh7d6evjQ==",
|
"sha512": "sha512-f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==",
|
||||||
"path": "stub.system.data.sqlite.core.netstandard/1.0.113.2",
|
"path": "sqlitepclraw.bundle_e_sqlite3/2.0.4",
|
||||||
"hashPath": "stub.system.data.sqlite.core.netstandard.1.0.113.2.nupkg.sha512"
|
"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": {
|
"System.Collections/4.3.0": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
@@ -348,13 +474,6 @@
|
|||||||
"path": "system.collections.immutable/1.3.1",
|
"path": "system.collections.immutable/1.3.1",
|
||||||
"hashPath": "system.collections.immutable.1.3.1.nupkg.sha512"
|
"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": {
|
"System.Diagnostics.Debug/4.3.0": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
@@ -397,6 +516,13 @@
|
|||||||
"path": "system.linq.async/4.0.0",
|
"path": "system.linq.async/4.0.0",
|
||||||
"hashPath": "system.linq.async.4.0.0.nupkg.sha512"
|
"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": {
|
"System.Reflection/4.3.0": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -9,7 +9,7 @@
|
|||||||
"Discord_Simple-Embed-Bot/1.0.0": {
|
"Discord_Simple-Embed-Bot/1.0.0": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Discord.Net": "2.3.0",
|
"Discord.Net": "2.3.0",
|
||||||
"System.Data.SQLite.Core": "1.0.113.7"
|
"Microsoft.Data.Sqlite": "5.0.3"
|
||||||
},
|
},
|
||||||
"runtime": {
|
"runtime": {
|
||||||
"Discord_Simple-Embed-Bot.dll": {}
|
"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.Platforms/1.1.0": {},
|
||||||
"Microsoft.NETCore.Targets/1.1.0": {},
|
"Microsoft.NETCore.Targets/1.1.0": {},
|
||||||
"Newtonsoft.Json/12.0.2": {
|
"Newtonsoft.Json/12.0.2": {
|
||||||
@@ -93,33 +110,111 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Stub.System.Data.SQLite.Core.NetStandard/1.0.113.2": {
|
"SQLitePCLRaw.bundle_e_sqlite3/2.0.4": {
|
||||||
"runtime": {
|
"dependencies": {
|
||||||
"lib/netstandard2.1/System.Data.SQLite.dll": {
|
"SQLitePCLRaw.core": "2.0.4",
|
||||||
"assemblyVersion": "1.0.113.0",
|
"SQLitePCLRaw.lib.e_sqlite3": "2.0.4",
|
||||||
"fileVersion": "1.0.113.0"
|
"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": {
|
"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",
|
"rid": "linux-x64",
|
||||||
"assetType": "native",
|
"assetType": "native",
|
||||||
"fileVersion": "0.0.0.0"
|
"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",
|
"rid": "osx-x64",
|
||||||
"assetType": "native",
|
"assetType": "native",
|
||||||
"fileVersion": "0.0.0.0"
|
"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",
|
"rid": "win-x64",
|
||||||
"assetType": "native",
|
"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",
|
"rid": "win-x86",
|
||||||
"assetType": "native",
|
"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.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": {
|
"System.Diagnostics.Debug/4.3.0": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.NETCore.Platforms": "1.1.0",
|
"Microsoft.NETCore.Platforms": "1.1.0",
|
||||||
@@ -198,6 +288,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"System.Memory/4.5.3": {},
|
||||||
"System.Reflection/4.3.0": {
|
"System.Reflection/4.3.0": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.NETCore.Platforms": "1.1.0",
|
"Microsoft.NETCore.Platforms": "1.1.0",
|
||||||
@@ -306,6 +397,20 @@
|
|||||||
"path": "discord.net.websocket/2.3.0",
|
"path": "discord.net.websocket/2.3.0",
|
||||||
"hashPath": "discord.net.websocket.2.3.0.nupkg.sha512"
|
"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": {
|
"Microsoft.NETCore.Platforms/1.1.0": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
@@ -327,12 +432,33 @@
|
|||||||
"path": "newtonsoft.json/12.0.2",
|
"path": "newtonsoft.json/12.0.2",
|
||||||
"hashPath": "newtonsoft.json.12.0.2.nupkg.sha512"
|
"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",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
"sha512": "sha512-yGIM9xFyPHl79HluNTSQarvAOIJ68pmzmlMayVN6Nivu/7TiaHt7WqptolvwmuKdAXei8OzENh9RNdh7d6evjQ==",
|
"sha512": "sha512-f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==",
|
||||||
"path": "stub.system.data.sqlite.core.netstandard/1.0.113.2",
|
"path": "sqlitepclraw.bundle_e_sqlite3/2.0.4",
|
||||||
"hashPath": "stub.system.data.sqlite.core.netstandard.1.0.113.2.nupkg.sha512"
|
"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": {
|
"System.Collections/4.3.0": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
@@ -348,13 +474,6 @@
|
|||||||
"path": "system.collections.immutable/1.3.1",
|
"path": "system.collections.immutable/1.3.1",
|
||||||
"hashPath": "system.collections.immutable.1.3.1.nupkg.sha512"
|
"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": {
|
"System.Diagnostics.Debug/4.3.0": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
@@ -397,6 +516,13 @@
|
|||||||
"path": "system.linq.async/4.0.0",
|
"path": "system.linq.async/4.0.0",
|
||||||
"hashPath": "system.linq.async.4.0.0.nupkg.sha512"
|
"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": {
|
"System.Reflection/4.3.0": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+169
-1601
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
+4
-6
@@ -1,11 +1,9 @@
|
|||||||
{
|
{
|
||||||
"runtimeOptions": {
|
"runtimeOptions": {
|
||||||
"tfm": "net5.0",
|
"tfm": "net5.0",
|
||||||
"includedFrameworks": [
|
"framework": {
|
||||||
{
|
"name": "Microsoft.NETCore.App",
|
||||||
"name": "Microsoft.NETCore.App",
|
"version": "5.0.0"
|
||||||
"version": "5.0.0"
|
}
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
+107
-21
@@ -10,7 +10,7 @@
|
|||||||
"Discord_Simple-Embed-Bot/1.0.0": {
|
"Discord_Simple-Embed-Bot/1.0.0": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Discord.Net": "2.3.0",
|
"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"
|
"runtimepack.Microsoft.NETCore.App.Runtime.linux-arm64": "5.0.0"
|
||||||
},
|
},
|
||||||
"runtime": {
|
"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.Platforms/1.1.0": {},
|
||||||
"Microsoft.NETCore.Targets/1.1.0": {},
|
"Microsoft.NETCore.Targets/1.1.0": {},
|
||||||
"Newtonsoft.Json/12.0.2": {
|
"Newtonsoft.Json/12.0.2": {
|
||||||
@@ -872,11 +889,49 @@
|
|||||||
"runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
|
"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": {
|
"runtime": {
|
||||||
"lib/netstandard2.1/System.Data.SQLite.dll": {
|
"lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": {
|
||||||
"assemblyVersion": "1.0.113.0",
|
"assemblyVersion": "2.0.4.976",
|
||||||
"fileVersion": "1.0.113.0"
|
"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.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": {
|
"System.Diagnostics.Debug/4.3.0": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.NETCore.Platforms": "1.1.0",
|
"Microsoft.NETCore.Platforms": "1.1.0",
|
||||||
@@ -959,6 +1009,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"System.Memory/4.5.3": {},
|
||||||
"System.Private.Uri/4.3.0": {
|
"System.Private.Uri/4.3.0": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.NETCore.Platforms": "1.1.0",
|
"Microsoft.NETCore.Platforms": "1.1.0",
|
||||||
@@ -1086,6 +1137,20 @@
|
|||||||
"path": "discord.net.websocket/2.3.0",
|
"path": "discord.net.websocket/2.3.0",
|
||||||
"hashPath": "discord.net.websocket.2.3.0.nupkg.sha512"
|
"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": {
|
"Microsoft.NETCore.Platforms/1.1.0": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
@@ -1275,12 +1340,33 @@
|
|||||||
"path": "runtime.unix.system.runtime.extensions/4.3.0",
|
"path": "runtime.unix.system.runtime.extensions/4.3.0",
|
||||||
"hashPath": "runtime.unix.system.runtime.extensions.4.3.0.nupkg.sha512"
|
"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",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
"sha512": "sha512-yGIM9xFyPHl79HluNTSQarvAOIJ68pmzmlMayVN6Nivu/7TiaHt7WqptolvwmuKdAXei8OzENh9RNdh7d6evjQ==",
|
"sha512": "sha512-f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==",
|
||||||
"path": "stub.system.data.sqlite.core.netstandard/1.0.113.2",
|
"path": "sqlitepclraw.bundle_e_sqlite3/2.0.4",
|
||||||
"hashPath": "stub.system.data.sqlite.core.netstandard.1.0.113.2.nupkg.sha512"
|
"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": {
|
"System.Collections/4.3.0": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
@@ -1296,13 +1382,6 @@
|
|||||||
"path": "system.collections.immutable/1.3.1",
|
"path": "system.collections.immutable/1.3.1",
|
||||||
"hashPath": "system.collections.immutable.1.3.1.nupkg.sha512"
|
"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": {
|
"System.Diagnostics.Debug/4.3.0": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
@@ -1345,6 +1424,13 @@
|
|||||||
"path": "system.linq.async/4.0.0",
|
"path": "system.linq.async/4.0.0",
|
||||||
"hashPath": "system.linq.async.4.0.0.nupkg.sha512"
|
"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": {
|
"System.Private.Uri/4.3.0": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
+107
-21
@@ -10,7 +10,7 @@
|
|||||||
"Discord_Simple-Embed-Bot/1.0.0": {
|
"Discord_Simple-Embed-Bot/1.0.0": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Discord.Net": "2.3.0",
|
"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"
|
"runtimepack.Microsoft.NETCore.App.Runtime.linux-arm64": "5.0.0"
|
||||||
},
|
},
|
||||||
"runtime": {
|
"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.Platforms/1.1.0": {},
|
||||||
"Microsoft.NETCore.Targets/1.1.0": {},
|
"Microsoft.NETCore.Targets/1.1.0": {},
|
||||||
"Newtonsoft.Json/12.0.2": {
|
"Newtonsoft.Json/12.0.2": {
|
||||||
@@ -872,11 +889,49 @@
|
|||||||
"runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
|
"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": {
|
"runtime": {
|
||||||
"lib/netstandard2.1/System.Data.SQLite.dll": {
|
"lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": {
|
||||||
"assemblyVersion": "1.0.113.0",
|
"assemblyVersion": "2.0.4.976",
|
||||||
"fileVersion": "1.0.113.0"
|
"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.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": {
|
"System.Diagnostics.Debug/4.3.0": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.NETCore.Platforms": "1.1.0",
|
"Microsoft.NETCore.Platforms": "1.1.0",
|
||||||
@@ -959,6 +1009,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"System.Memory/4.5.3": {},
|
||||||
"System.Private.Uri/4.3.0": {
|
"System.Private.Uri/4.3.0": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.NETCore.Platforms": "1.1.0",
|
"Microsoft.NETCore.Platforms": "1.1.0",
|
||||||
@@ -1086,6 +1137,20 @@
|
|||||||
"path": "discord.net.websocket/2.3.0",
|
"path": "discord.net.websocket/2.3.0",
|
||||||
"hashPath": "discord.net.websocket.2.3.0.nupkg.sha512"
|
"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": {
|
"Microsoft.NETCore.Platforms/1.1.0": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
@@ -1275,12 +1340,33 @@
|
|||||||
"path": "runtime.unix.system.runtime.extensions/4.3.0",
|
"path": "runtime.unix.system.runtime.extensions/4.3.0",
|
||||||
"hashPath": "runtime.unix.system.runtime.extensions.4.3.0.nupkg.sha512"
|
"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",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
"sha512": "sha512-yGIM9xFyPHl79HluNTSQarvAOIJ68pmzmlMayVN6Nivu/7TiaHt7WqptolvwmuKdAXei8OzENh9RNdh7d6evjQ==",
|
"sha512": "sha512-f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==",
|
||||||
"path": "stub.system.data.sqlite.core.netstandard/1.0.113.2",
|
"path": "sqlitepclraw.bundle_e_sqlite3/2.0.4",
|
||||||
"hashPath": "stub.system.data.sqlite.core.netstandard.1.0.113.2.nupkg.sha512"
|
"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": {
|
"System.Collections/4.3.0": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
@@ -1296,13 +1382,6 @@
|
|||||||
"path": "system.collections.immutable/1.3.1",
|
"path": "system.collections.immutable/1.3.1",
|
||||||
"hashPath": "system.collections.immutable.1.3.1.nupkg.sha512"
|
"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": {
|
"System.Diagnostics.Debug/4.3.0": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
@@ -1345,6 +1424,13 @@
|
|||||||
"path": "system.linq.async/4.0.0",
|
"path": "system.linq.async/4.0.0",
|
||||||
"hashPath": "system.linq.async.4.0.0.nupkg.sha512"
|
"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": {
|
"System.Private.Uri/4.3.0": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
|
|||||||
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user