commit 1c76a6de40855dce80887cb33c3346761bca1431 Author: Stone-Red-Code <56473591+StoneRed5@users.noreply.github.com> Date: Fri Feb 12 17:52:38 2021 +0100 Initial commit diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..dfe0770 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Auto detect text files and perform LF normalization +* text=auto diff --git a/.vs/Discord_Simple-Embed-Bot/DesignTimeBuild/.dtbcache.v2 b/.vs/Discord_Simple-Embed-Bot/DesignTimeBuild/.dtbcache.v2 new file mode 100644 index 0000000..cfc473e Binary files /dev/null and b/.vs/Discord_Simple-Embed-Bot/DesignTimeBuild/.dtbcache.v2 differ diff --git a/.vs/Discord_Simple-Embed-Bot/v16/.suo b/.vs/Discord_Simple-Embed-Bot/v16/.suo new file mode 100644 index 0000000..74be9d0 Binary files /dev/null and b/.vs/Discord_Simple-Embed-Bot/v16/.suo differ diff --git a/Discord_Simple-Embed-Bot.sln b/Discord_Simple-Embed-Bot.sln new file mode 100644 index 0000000..f94fc44 --- /dev/null +++ b/Discord_Simple-Embed-Bot.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.30804.86 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Discord_Simple-Embed-Bot", "Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot.csproj", "{E23531DA-6349-4305-A046-252A4DB66496}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {E23531DA-6349-4305-A046-252A4DB66496}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E23531DA-6349-4305-A046-252A4DB66496}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E23531DA-6349-4305-A046-252A4DB66496}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E23531DA-6349-4305-A046-252A4DB66496}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {F35914C2-E9DA-43A5-8F7D-2E6A512E224C} + EndGlobalSection +EndGlobal diff --git a/Discord_Simple-Embed-Bot/CommandHandler.cs b/Discord_Simple-Embed-Bot/CommandHandler.cs new file mode 100644 index 0000000..7de233a --- /dev/null +++ b/Discord_Simple-Embed-Bot/CommandHandler.cs @@ -0,0 +1,241 @@ +using Discord; +using Discord.Commands; +using Discord.WebSocket; +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Reflection; +using System.Threading.Tasks; + +namespace Discord_Simple_Embed_Bot +{ + public static class CommandHandler + { + public static DiscordSocketClient Client; + private static readonly SqlManager sqlManager = new SqlManager(); + + static readonly Dictionary _commands = new() + { + { "help", new Command { Fun = Help, Desc = "Lists all commands", Usage = "" } }, + { "prefix", new Command { Fun = ChangePrefix, Desc = "Changes prefix", Usage = "" } }, + { + "new", + new Command + { + Fun = CreateEmbed, + Desc = "Creats new embed", + Usage = "\n<hex color>\n<description>\n<field>", + Example = "Title" + + "\n#FFFFFF" + + "\nDescription" + + "\n++Field name" + + "\nField content" + + "\n--Inline field name" + + "\nInline field content" + } + }, + }; + + + + public static async Task HandleCommand(SocketMessage messageParam) + { + SocketUserMessage message = messageParam as SocketUserMessage; + if (message == null) return; + + int argPos = 0; + string prefix = PrefixFromMessage(message); + if (message.MentionedUsers.Any(x => x.Discriminator == Client.CurrentUser.Discriminator)) + { + EmbedBuilder eb = new EmbedBuilder(); + eb.Color = Color.Blue; + eb.Description = $"Use `{prefix} help` to list all commands."; + await message.Channel.SendMessageAsync("", false, eb.Build()); + return; + } + + if (!(message.HasStringPrefix(prefix, ref argPos)) || message.HasMentionPrefix(Client.CurrentUser, ref argPos) || message.Author.IsBot) + { + return; + } + + + string command = message.Content[prefix.Length..].Trim().ToLower(); + if (command.Contains(" ")) + command = command.Substring(0, command.IndexOf(" ")); + + if (_commands.ContainsKey(command)) + { + SocketGuildUser socketGuildUser = message.Author as SocketGuildUser; + if (socketGuildUser.GuildPermissions.Administrator) + { + await _commands[command].Fun(message); + } + } + else + { + await message.Channel.SendMessageAsync($"Command not found! Use `{PrefixFromMessage(message)} help` to list all commands."); + } + } + + static string PrefixFromMessage(SocketUserMessage message) + { + + string prefix = sqlManager.GetData((message.Channel as SocketGuildChannel).Guild.Id, 'p').Result; + GC.Collect(); + GC.WaitForPendingFinalizers(); + return prefix; + + } + + static string[] CheckCommandArgs(string content, int min, int max, string prefix) + { + content = content.Trim(); + content = content.Remove(0, prefix.Length).Trim(); + if (!content.Contains(" ")) + { + return null; + } + + List<string> args = content.Split(" ", StringSplitOptions.RemoveEmptyEntries).ToList(); + args.RemoveAt(0); + if (args.Count >= min && args.Count <= max) + { + return args.ToArray(); + } + return null; + } + + static public async Task Help(SocketUserMessage message) + { + EmbedBuilder eb = new EmbedBuilder(); + eb.Color = Color.Blue; + string[] args = CheckCommandArgs(message.Content, 0, 1, PrefixFromMessage(message)); + if (args == null) + { + eb.Title = "Commands:"; + + foreach (var item in _commands) + { + eb.AddField(item.Key, item.Value.Desc); + } + } + else if (args.Length > 0) + { + if (_commands.ContainsKey(args[0].ToLower())) + { + eb.Title = args[0].ToLower(); + eb.AddField("Parameters", _commands[args[0].ToLower()].Usage); + if (!string.IsNullOrWhiteSpace(_commands[args[0].ToLower()].Example)) + { + eb.AddField("Example", $"```{PrefixFromMessage(message)} {args[0].ToLower()} {_commands[args[0].ToLower()].Example}```"); + } + } + else + { + eb.WithDescription("Command not found!"); + } + } + await message.Channel.SendMessageAsync("", false, eb.Build()); + } + + static public async Task ChangePrefix(SocketUserMessage message) + { + string prefix = ""; + if (message.Content.Contains(" ")) + prefix = message.Content[message.Content.LastIndexOf(" ")..].Trim(); + if (prefix.Length <= 0) + { + await message.Channel.SendMessageAsync($"Prefix not valid!"); + return; + } + + 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) + { + string prefix = PrefixFromMessage(message); + string content = message.Content[prefix.Length..].Trim()[3..]; + string[] lines = content.Split("\n"); + + await message.DeleteAsync(); + + EmbedBuilder eb = new EmbedBuilder(); + + + eb.Title = lines[0]; + + if (lines.Length > 1) + { + try + { + if (!lines[1].Contains("#")) + lines[1] = "#" + lines[1]; + System.Drawing.Color col = (System.Drawing.Color)new System.Drawing.ColorConverter().ConvertFromString(lines[1]); + eb.Color = new Color(col.R, col.G, col.B); + } + catch { } + } + if (lines.Length > 2) + { + eb.Description = lines[2]; + } + + EmbedFieldBuilder efb = null; + foreach (string line in lines.Skip(3)) + { + if (line.StartsWith("++")) + { + if (efb is not null) + eb.AddField(efb); + efb = new EmbedFieldBuilder(); + efb.IsInline = false; + efb.Name = line.Remove(0, 2); + } + else if (line.StartsWith("--")) + { + if (efb is not null) + eb.AddField(efb); + efb = new EmbedFieldBuilder(); + efb.IsInline = true; + efb.Name = line.Remove(0, 2); + } + else if (efb is not null && !string.IsNullOrWhiteSpace(line)) + { + efb.Value += line + "\n"; + } + } + + if (eb is not null) + eb.AddField(efb); + + for (int i = 0; i < eb.Fields.Count; i++) + { + if (string.IsNullOrWhiteSpace(eb.Fields[i].Value as string)) + { + eb.Fields[i].Value = "-"; + } + } + + try + { + await message.Channel.SendMessageAsync("", false, eb.Build()); + } + catch (Exception ex) + { + await Logging.Log(new LogMessage(LogSeverity.Debug, "CMD Handler", "", ex)); + } + } + + class Command + { + public string Desc { get; set; } + public string Usage { get; set; } + public string Example { get; set; } + public Func<SocketUserMessage, Task> Fun { get; set; } + } + } +} \ No newline at end of file diff --git a/Discord_Simple-Embed-Bot/Discord_Simple-Embed-Bot.csproj b/Discord_Simple-Embed-Bot/Discord_Simple-Embed-Bot.csproj new file mode 100644 index 0000000..6e9669e --- /dev/null +++ b/Discord_Simple-Embed-Bot/Discord_Simple-Embed-Bot.csproj @@ -0,0 +1,14 @@ +<Project Sdk="Microsoft.NET.Sdk"> + + <PropertyGroup> + <OutputType>Exe</OutputType> + <TargetFramework>net5.0</TargetFramework> + <RootNamespace>Discord_Simple_Embed_Bot</RootNamespace> + </PropertyGroup> + + <ItemGroup> + <PackageReference Include="Discord.Net" Version="2.3.0" /> + <PackageReference Include="System.Data.SQLite.Core" Version="1.0.113.7" /> + </ItemGroup> + +</Project> diff --git a/Discord_Simple-Embed-Bot/Discord_Simple-Embed-Bot.csproj.user b/Discord_Simple-Embed-Bot/Discord_Simple-Embed-Bot.csproj.user new file mode 100644 index 0000000..271f175 --- /dev/null +++ b/Discord_Simple-Embed-Bot/Discord_Simple-Embed-Bot.csproj.user @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <_LastSelectedProfileId>C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\Properties\PublishProfiles\FolderProfile.pubxml</_LastSelectedProfileId> + </PropertyGroup> +</Project> \ No newline at end of file diff --git a/Discord_Simple-Embed-Bot/Program.cs b/Discord_Simple-Embed-Bot/Program.cs new file mode 100644 index 0000000..571e9b8 --- /dev/null +++ b/Discord_Simple-Embed-Bot/Program.cs @@ -0,0 +1,57 @@ +using Discord; +using Discord.WebSocket; +using Discord.Net; +using System; +using System.Threading.Tasks; + +namespace Discord_Simple_Embed_Bot +{ + public class Program + { + public static void Main() + => new Program().MainAsync().GetAwaiter().GetResult(); + + public async Task MainAsync() + { + DiscordSocketClient _client = new DiscordSocketClient(); + _client.Log += Logging.Log; + _client.MessageReceived += Client_MessageReceived; + await _client.LoginAsync(TokenType.Bot, "ODA4ODMwNzQxNTQ2MDA4NTc3.YCMQVA.kRe6ZL45NYS8DiuoQv0yx0NEHnE", false); + await _client.StartAsync(); + CommandHandler.Client = _client; + + //Block this task until the program is closed. + await Task.Delay(-1); + + + } + + private async Task Client_MessageReceived(SocketMessage messageParam) + { + await CommandHandler.HandleCommand(messageParam); + } + } + + static class Logging + { + public static Task Log(LogMessage msg) + { + Console.ForegroundColor = GetColor(msg.Severity); + Console.WriteLine(msg.ToString()); + Console.ResetColor(); + return Task.CompletedTask; + } + + private static ConsoleColor GetColor(LogSeverity logSeverity) + { + switch (logSeverity) + { + case LogSeverity.Critical: return ConsoleColor.DarkRed; + case LogSeverity.Error: return ConsoleColor.Red; + case LogSeverity.Warning: return ConsoleColor.DarkYellow; + case LogSeverity.Info: return ConsoleColor.Green; + default: return ConsoleColor.White; + } + } + } +} diff --git a/Discord_Simple-Embed-Bot/Properties/PublishProfiles/FolderProfile.pubxml b/Discord_Simple-Embed-Bot/Properties/PublishProfiles/FolderProfile.pubxml new file mode 100644 index 0000000..4878ada --- /dev/null +++ b/Discord_Simple-Embed-Bot/Properties/PublishProfiles/FolderProfile.pubxml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +https://go.microsoft.com/fwlink/?LinkID=208121. +--> +<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <Configuration>Release</Configuration> + <Platform>Any CPU</Platform> + <PublishDir>bin\Release\net5.0\publish\</PublishDir> + <PublishProtocol>FileSystem</PublishProtocol> + <TargetFramework>net5.0</TargetFramework> + <RuntimeIdentifier>linux-x64</RuntimeIdentifier> + <SelfContained>true</SelfContained> + <PublishSingleFile>False</PublishSingleFile> + <PublishTrimmed>False</PublishTrimmed> + </PropertyGroup> +</Project> \ No newline at end of file diff --git a/Discord_Simple-Embed-Bot/Properties/PublishProfiles/FolderProfile.pubxml.user b/Discord_Simple-Embed-Bot/Properties/PublishProfiles/FolderProfile.pubxml.user new file mode 100644 index 0000000..312c6e3 --- /dev/null +++ b/Discord_Simple-Embed-Bot/Properties/PublishProfiles/FolderProfile.pubxml.user @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +https://go.microsoft.com/fwlink/?LinkID=208121. +--> +<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> +</Project> \ No newline at end of file diff --git a/Discord_Simple-Embed-Bot/SqlManager.cs b/Discord_Simple-Embed-Bot/SqlManager.cs new file mode 100644 index 0000000..b22351a --- /dev/null +++ b/Discord_Simple-Embed-Bot/SqlManager.cs @@ -0,0 +1,88 @@ +using System; +using System.Collections.Generic; +using System.Data.SQLite; +using System.IO; +using System.Text; +using System.Threading.Tasks; + +namespace Discord_Simple_Embed_Bot +{ + class SqlManager { + readonly string sqlConnectionString; + readonly string databasePath; + public SqlManager() + { + databasePath = AppDomain.CurrentDomain.BaseDirectory + "\\MainDatabase.sqlite"; + sqlConnectionString = "Data Source = " + databasePath + "; Version = 3"; + + //Create SQLite database file + if (!File.Exists(databasePath)) + { + SQLiteConnection.CreateFile(databasePath); + } + + 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)"; + + SQLiteConnection m_dbConnection = new SQLiteConnection(sqlConnectionString); + m_dbConnection.Open(); + + SQLiteCommand command = new SQLiteCommand(m_dbConnection); + command.CommandText = sqlCommand1; + command.ExecuteNonQuery(); + command.CommandText = sqlCommand2; + command.ExecuteNonQuery(); + + m_dbConnection.Close(); + } + + public async Task SetData(ulong serverId, string data, char type) + { + await Task.Run(() => + { + SQLiteConnection dbConnection = new SQLiteConnection(sqlConnectionString); + SQLiteCommand command = new SQLiteCommand(); + + command.CommandText = "INSERT OR REPLACE INTO Settings (ServerId,Data) values (@serverId, @prefix)"; + + command.Parameters.Add(new SQLiteParameter("@serverId", serverId + type)); + command.Parameters.Add(new SQLiteParameter("@prefix", data)); + + + dbConnection.Open(); + command.Connection = dbConnection; + command.ExecuteNonQuery(); + dbConnection.Close(); + }); + } + + public async Task<string> GetData(ulong serverId, char type) + { + return await Task<string>.Run(() => + { + string data = null; + using (SQLiteConnection dbConnection = new SQLiteConnection(sqlConnectionString)) + { + dbConnection.Open(); + SQLiteCommand command = new SQLiteCommand($"SELECT * FROM Settings WHERE ServerId=@type", dbConnection); + command.Parameters.Add(new SQLiteParameter("@type", serverId + type)); + SQLiteDataReader dr = command.ExecuteReader(); + if (dr.Read()) + { + data = dr.GetString(1); + } + + dbConnection.Close(); + } + if (data == null) + { + switch (type) + { + case 'p': return "eb!"; + } + } + return data; + }); + } +} +} diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Discord.Net.Commands.dll b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Discord.Net.Commands.dll new file mode 100644 index 0000000..f2cff9c Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Discord.Net.Commands.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Discord.Net.Core.dll b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Discord.Net.Core.dll new file mode 100644 index 0000000..5c4ca5a Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Discord.Net.Core.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Discord.Net.Rest.dll b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Discord.Net.Rest.dll new file mode 100644 index 0000000..8b87f59 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Discord.Net.Rest.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Discord.Net.WebSocket.dll b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Discord.Net.WebSocket.dll new file mode 100644 index 0000000..fa3a1ea Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Discord.Net.WebSocket.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Discord.Net.Webhook.dll b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Discord.Net.Webhook.dll new file mode 100644 index 0000000..d85f6c7 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Discord.Net.Webhook.dll differ 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 new file mode 100644 index 0000000..97d39e7 --- /dev/null +++ b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Discord_Simple-Embed-Bot.deps.json @@ -0,0 +1,457 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v5.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".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" + }, + "runtime": { + "Discord_Simple-Embed-Bot.dll": {} + } + }, + "Discord.Net/2.3.0": { + "dependencies": { + "Discord.Net.Commands": "2.3.0", + "Discord.Net.Core": "2.3.0", + "Discord.Net.Rest": "2.3.0", + "Discord.Net.WebSocket": "2.3.0", + "Discord.Net.Webhook": "2.3.0" + } + }, + "Discord.Net.Commands/2.3.0": { + "dependencies": { + "Discord.Net.Core": "2.3.0" + }, + "runtime": { + "lib/netstandard2.1/Discord.Net.Commands.dll": { + "assemblyVersion": "2.3.0.0", + "fileVersion": "2.3.0.0" + } + } + }, + "Discord.Net.Core/2.3.0": { + "dependencies": { + "Newtonsoft.Json": "12.0.2", + "System.Collections.Immutable": "1.3.1", + "System.Interactive.Async": "4.0.0" + }, + "runtime": { + "lib/netstandard2.1/Discord.Net.Core.dll": { + "assemblyVersion": "2.3.0.0", + "fileVersion": "2.3.0.0" + } + } + }, + "Discord.Net.Rest/2.3.0": { + "dependencies": { + "Discord.Net.Core": "2.3.0" + }, + "runtime": { + "lib/netstandard2.1/Discord.Net.Rest.dll": { + "assemblyVersion": "2.3.0.0", + "fileVersion": "2.3.0.0" + } + } + }, + "Discord.Net.Webhook/2.3.0": { + "dependencies": { + "Discord.Net.Core": "2.3.0", + "Discord.Net.Rest": "2.3.0" + }, + "runtime": { + "lib/netstandard2.1/Discord.Net.Webhook.dll": { + "assemblyVersion": "2.3.0.0", + "fileVersion": "2.3.0.0" + } + } + }, + "Discord.Net.WebSocket/2.3.0": { + "dependencies": { + "Discord.Net.Core": "2.3.0", + "Discord.Net.Rest": "2.3.0" + }, + "runtime": { + "lib/netstandard2.1/Discord.Net.WebSocket.dll": { + "assemblyVersion": "2.3.0.0", + "fileVersion": "2.3.0.0" + } + } + }, + "Microsoft.NETCore.Platforms/1.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Newtonsoft.Json/12.0.2": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "12.0.0.0", + "fileVersion": "12.0.2.23222" + } + } + }, + "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" + } + }, + "runtimeTargets": { + "runtimes/linux-x64/native/SQLite.Interop.dll": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/SQLite.Interop.dll": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/SQLite.Interop.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "1.0.113.0" + }, + "runtimes/win-x86/native/SQLite.Interop.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "1.0.113.0" + } + } + }, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Immutable/1.3.1": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "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": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.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" + } + }, + "System.Interactive.Async/4.0.0": { + "dependencies": { + "System.Linq.Async": "4.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Interactive.Async.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.2" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Linq.Async/4.0.0": { + "runtime": { + "lib/netcoreapp3.0/System.Linq.Async.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.2" + } + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "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" + } + }, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + } + } + }, + "libraries": { + "Discord_Simple-Embed-Bot/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Discord.Net/2.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YILjBwqYdvich6v1rfO/OhdBrdhPQB/AKEohYISdOJ+LiwfMPCafAo3YN/VutmeAGpvmrdv1fP/D0T3rHo2JrQ==", + "path": "discord.net/2.3.0", + "hashPath": "discord.net.2.3.0.nupkg.sha512" + }, + "Discord.Net.Commands/2.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-D7/kpseW53Hmni0/Vr22VElIoitFFUa0XDaIiU+HwijObBf6+rfgquWNYF9hePV+xVyY0+eQ8FOtRmBMG7Cy4A==", + "path": "discord.net.commands/2.3.0", + "hashPath": "discord.net.commands.2.3.0.nupkg.sha512" + }, + "Discord.Net.Core/2.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W5mmQ7fzlQMPmKW/sJx9CrBjdSnC/V2Ao/OukpEr4L42NgyYJUjjs5wRoxKoOLU/b6hj3Q8g0FJ5IYrmt6KSnQ==", + "path": "discord.net.core/2.3.0", + "hashPath": "discord.net.core.2.3.0.nupkg.sha512" + }, + "Discord.Net.Rest/2.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5m2nV4A9QIBtRsc7yIu9rQpc4Q7GpL6AaZ+xeAFdPx9dkUhikHIVZ0l1qqmn+pFSAUZ9e9fTsKzMfr7Loqz4aQ==", + "path": "discord.net.rest/2.3.0", + "hashPath": "discord.net.rest.2.3.0.nupkg.sha512" + }, + "Discord.Net.Webhook/2.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6DSRbYVLPDUbD7wBmMesaUbHkYud+WKxt8OeWTkifR6iR1DzSZX5i1GubmWaPsVjGYr1TA8usTepshla7Fiu9w==", + "path": "discord.net.webhook/2.3.0", + "hashPath": "discord.net.webhook.2.3.0.nupkg.sha512" + }, + "Discord.Net.WebSocket/2.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mktzQvXy9oKF3j7F8/f3v9xcUmYxXb8oMBGD4czZRn0P/BOM4cz0OdmCHr5wVyMb0W7q0VxmnfKYNsN0kGzFNA==", + "path": "discord.net.websocket/2.3.0", + "hashPath": "discord.net.websocket.2.3.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "path": "microsoft.netcore.platforms/1.1.0", + "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Newtonsoft.Json/12.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rTK0s2EKlfHsQsH6Yx2smvcTCeyoDNgCW7FEYyV01drPlh2T243PR2DiDXqtC5N4GDm4Ma/lkxfW5a/4793vbA==", + "path": "newtonsoft.json/12.0.2", + "hashPath": "newtonsoft.json.12.0.2.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" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Immutable/1.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-n+AGX7zmiZumW9aggOkXaHzUeAS3EfeTErnkKCusyONUozbTv+kMb8VE36m+ldV6kF9g57G2c641KCdgH9E0pg==", + "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, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Interactive.Async/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tYEzSDQ3rn0G7sGgjcNB91C3dDRJc8m8Lavvu88dwt8FEwKPGZdp/tFs+lQTdqHDV9UItkGIwI8Aa6gGTvzLoQ==", + "path": "system.interactive.async/4.0.0", + "hashPath": "system.interactive.async.4.0.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Async/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WbiYEedFZeM+psmMyoCt1AKbZppAZg8Eq1ZTQ+521fGNeXqlgJj0tZYV5n1LsKRO5osQuitYxGNuzPTy3213sg==", + "path": "system.linq.async/4.0.0", + "hashPath": "system.linq.async.4.0.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + } + } +} \ No newline at end of file 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 new file mode 100644 index 0000000..01b7f2d Binary files /dev/null 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.exe b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Discord_Simple-Embed-Bot.exe new file mode 100644 index 0000000..59acf2f Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Discord_Simple-Embed-Bot.exe 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 new file mode 100644 index 0000000..49e4b2e Binary files /dev/null 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/Discord_Simple-Embed-Bot.runtimeconfig.dev.json b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Discord_Simple-Embed-Bot.runtimeconfig.dev.json new file mode 100644 index 0000000..7761eb8 --- /dev/null +++ b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Discord_Simple-Embed-Bot.runtimeconfig.dev.json @@ -0,0 +1,10 @@ +{ + "runtimeOptions": { + "additionalProbingPaths": [ + "C:\\Users\\David\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\David\\.nuget\\packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Microsoft\\Xamarin\\NuGet" + ] + } +} \ No newline at end of file diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Discord_Simple-Embed-Bot.runtimeconfig.json b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Discord_Simple-Embed-Bot.runtimeconfig.json new file mode 100644 index 0000000..a8e7e82 --- /dev/null +++ b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Discord_Simple-Embed-Bot.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net5.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "5.0.0" + } + } +} \ No newline at end of file diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/MainDatabase.sqlite b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/MainDatabase.sqlite new file mode 100644 index 0000000..d3560ff Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/MainDatabase.sqlite differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Newtonsoft.Json.dll b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Newtonsoft.Json.dll new file mode 100644 index 0000000..b8ea6e0 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/Newtonsoft.Json.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 new file mode 100644 index 0000000..e0ce3ba Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/System.Data.SQLite.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/System.Interactive.Async.dll b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/System.Interactive.Async.dll new file mode 100644 index 0000000..55a35f5 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/System.Interactive.Async.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/System.Linq.Async.dll b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/System.Linq.Async.dll new file mode 100644 index 0000000..165b555 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/System.Linq.Async.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/net5.0/ref/Discord_Simple-Embed-Bot.dll b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/ref/Discord_Simple-Embed-Bot.dll new file mode 100644 index 0000000..e4596d6 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/ref/Discord_Simple-Embed-Bot.dll 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 new file mode 100644 index 0000000..6895e0f Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/linux-x64/native/SQLite.Interop.dll 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 new file mode 100644 index 0000000..de72b88 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/osx-x64/native/SQLite.Interop.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 new file mode 100644 index 0000000..9a745b7 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/win-x64/native/SQLite.Interop.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 new file mode 100644 index 0000000..35bdfe6 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/net5.0/runtimes/win-x86/native/SQLite.Interop.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/netcoreapp3.1/Discord.Net.Commands.dll b/Discord_Simple-Embed-Bot/bin/Debug/netcoreapp3.1/Discord.Net.Commands.dll new file mode 100644 index 0000000..f2cff9c Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/netcoreapp3.1/Discord.Net.Commands.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/netcoreapp3.1/Discord.Net.Core.dll b/Discord_Simple-Embed-Bot/bin/Debug/netcoreapp3.1/Discord.Net.Core.dll new file mode 100644 index 0000000..5c4ca5a Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/netcoreapp3.1/Discord.Net.Core.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/netcoreapp3.1/Discord.Net.Rest.dll b/Discord_Simple-Embed-Bot/bin/Debug/netcoreapp3.1/Discord.Net.Rest.dll new file mode 100644 index 0000000..8b87f59 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/netcoreapp3.1/Discord.Net.Rest.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/netcoreapp3.1/Discord.Net.WebSocket.dll b/Discord_Simple-Embed-Bot/bin/Debug/netcoreapp3.1/Discord.Net.WebSocket.dll new file mode 100644 index 0000000..fa3a1ea Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/netcoreapp3.1/Discord.Net.WebSocket.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/netcoreapp3.1/Discord.Net.Webhook.dll b/Discord_Simple-Embed-Bot/bin/Debug/netcoreapp3.1/Discord.Net.Webhook.dll new file mode 100644 index 0000000..d85f6c7 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/netcoreapp3.1/Discord.Net.Webhook.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll b/Discord_Simple-Embed-Bot/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll new file mode 100644 index 0000000..b8ea6e0 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/netcoreapp3.1/System.Interactive.Async.dll b/Discord_Simple-Embed-Bot/bin/Debug/netcoreapp3.1/System.Interactive.Async.dll new file mode 100644 index 0000000..55a35f5 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/netcoreapp3.1/System.Interactive.Async.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Debug/netcoreapp3.1/System.Linq.Async.dll b/Discord_Simple-Embed-Bot/bin/Debug/netcoreapp3.1/System.Linq.Async.dll new file mode 100644 index 0000000..165b555 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Debug/netcoreapp3.1/System.Linq.Async.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/Discord.Net.Commands.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/Discord.Net.Commands.dll new file mode 100644 index 0000000..f2cff9c Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/Discord.Net.Commands.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/Discord.Net.Core.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/Discord.Net.Core.dll new file mode 100644 index 0000000..5c4ca5a Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/Discord.Net.Core.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/Discord.Net.Rest.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/Discord.Net.Rest.dll new file mode 100644 index 0000000..8b87f59 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/Discord.Net.Rest.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/Discord.Net.WebSocket.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/Discord.Net.WebSocket.dll new file mode 100644 index 0000000..fa3a1ea Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/Discord.Net.WebSocket.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/Discord.Net.Webhook.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/Discord.Net.Webhook.dll new file mode 100644 index 0000000..d85f6c7 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/Discord.Net.Webhook.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 new file mode 100644 index 0000000..97d39e7 --- /dev/null +++ b/Discord_Simple-Embed-Bot/bin/Release/net5.0/Discord_Simple-Embed-Bot.deps.json @@ -0,0 +1,457 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v5.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".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" + }, + "runtime": { + "Discord_Simple-Embed-Bot.dll": {} + } + }, + "Discord.Net/2.3.0": { + "dependencies": { + "Discord.Net.Commands": "2.3.0", + "Discord.Net.Core": "2.3.0", + "Discord.Net.Rest": "2.3.0", + "Discord.Net.WebSocket": "2.3.0", + "Discord.Net.Webhook": "2.3.0" + } + }, + "Discord.Net.Commands/2.3.0": { + "dependencies": { + "Discord.Net.Core": "2.3.0" + }, + "runtime": { + "lib/netstandard2.1/Discord.Net.Commands.dll": { + "assemblyVersion": "2.3.0.0", + "fileVersion": "2.3.0.0" + } + } + }, + "Discord.Net.Core/2.3.0": { + "dependencies": { + "Newtonsoft.Json": "12.0.2", + "System.Collections.Immutable": "1.3.1", + "System.Interactive.Async": "4.0.0" + }, + "runtime": { + "lib/netstandard2.1/Discord.Net.Core.dll": { + "assemblyVersion": "2.3.0.0", + "fileVersion": "2.3.0.0" + } + } + }, + "Discord.Net.Rest/2.3.0": { + "dependencies": { + "Discord.Net.Core": "2.3.0" + }, + "runtime": { + "lib/netstandard2.1/Discord.Net.Rest.dll": { + "assemblyVersion": "2.3.0.0", + "fileVersion": "2.3.0.0" + } + } + }, + "Discord.Net.Webhook/2.3.0": { + "dependencies": { + "Discord.Net.Core": "2.3.0", + "Discord.Net.Rest": "2.3.0" + }, + "runtime": { + "lib/netstandard2.1/Discord.Net.Webhook.dll": { + "assemblyVersion": "2.3.0.0", + "fileVersion": "2.3.0.0" + } + } + }, + "Discord.Net.WebSocket/2.3.0": { + "dependencies": { + "Discord.Net.Core": "2.3.0", + "Discord.Net.Rest": "2.3.0" + }, + "runtime": { + "lib/netstandard2.1/Discord.Net.WebSocket.dll": { + "assemblyVersion": "2.3.0.0", + "fileVersion": "2.3.0.0" + } + } + }, + "Microsoft.NETCore.Platforms/1.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Newtonsoft.Json/12.0.2": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "12.0.0.0", + "fileVersion": "12.0.2.23222" + } + } + }, + "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" + } + }, + "runtimeTargets": { + "runtimes/linux-x64/native/SQLite.Interop.dll": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/SQLite.Interop.dll": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/SQLite.Interop.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "1.0.113.0" + }, + "runtimes/win-x86/native/SQLite.Interop.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "1.0.113.0" + } + } + }, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Immutable/1.3.1": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "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": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.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" + } + }, + "System.Interactive.Async/4.0.0": { + "dependencies": { + "System.Linq.Async": "4.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Interactive.Async.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.2" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Linq.Async/4.0.0": { + "runtime": { + "lib/netcoreapp3.0/System.Linq.Async.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.2" + } + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "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" + } + }, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + } + } + }, + "libraries": { + "Discord_Simple-Embed-Bot/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Discord.Net/2.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YILjBwqYdvich6v1rfO/OhdBrdhPQB/AKEohYISdOJ+LiwfMPCafAo3YN/VutmeAGpvmrdv1fP/D0T3rHo2JrQ==", + "path": "discord.net/2.3.0", + "hashPath": "discord.net.2.3.0.nupkg.sha512" + }, + "Discord.Net.Commands/2.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-D7/kpseW53Hmni0/Vr22VElIoitFFUa0XDaIiU+HwijObBf6+rfgquWNYF9hePV+xVyY0+eQ8FOtRmBMG7Cy4A==", + "path": "discord.net.commands/2.3.0", + "hashPath": "discord.net.commands.2.3.0.nupkg.sha512" + }, + "Discord.Net.Core/2.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W5mmQ7fzlQMPmKW/sJx9CrBjdSnC/V2Ao/OukpEr4L42NgyYJUjjs5wRoxKoOLU/b6hj3Q8g0FJ5IYrmt6KSnQ==", + "path": "discord.net.core/2.3.0", + "hashPath": "discord.net.core.2.3.0.nupkg.sha512" + }, + "Discord.Net.Rest/2.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5m2nV4A9QIBtRsc7yIu9rQpc4Q7GpL6AaZ+xeAFdPx9dkUhikHIVZ0l1qqmn+pFSAUZ9e9fTsKzMfr7Loqz4aQ==", + "path": "discord.net.rest/2.3.0", + "hashPath": "discord.net.rest.2.3.0.nupkg.sha512" + }, + "Discord.Net.Webhook/2.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6DSRbYVLPDUbD7wBmMesaUbHkYud+WKxt8OeWTkifR6iR1DzSZX5i1GubmWaPsVjGYr1TA8usTepshla7Fiu9w==", + "path": "discord.net.webhook/2.3.0", + "hashPath": "discord.net.webhook.2.3.0.nupkg.sha512" + }, + "Discord.Net.WebSocket/2.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mktzQvXy9oKF3j7F8/f3v9xcUmYxXb8oMBGD4czZRn0P/BOM4cz0OdmCHr5wVyMb0W7q0VxmnfKYNsN0kGzFNA==", + "path": "discord.net.websocket/2.3.0", + "hashPath": "discord.net.websocket.2.3.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "path": "microsoft.netcore.platforms/1.1.0", + "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Newtonsoft.Json/12.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rTK0s2EKlfHsQsH6Yx2smvcTCeyoDNgCW7FEYyV01drPlh2T243PR2DiDXqtC5N4GDm4Ma/lkxfW5a/4793vbA==", + "path": "newtonsoft.json/12.0.2", + "hashPath": "newtonsoft.json.12.0.2.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" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Immutable/1.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-n+AGX7zmiZumW9aggOkXaHzUeAS3EfeTErnkKCusyONUozbTv+kMb8VE36m+ldV6kF9g57G2c641KCdgH9E0pg==", + "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, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Interactive.Async/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tYEzSDQ3rn0G7sGgjcNB91C3dDRJc8m8Lavvu88dwt8FEwKPGZdp/tFs+lQTdqHDV9UItkGIwI8Aa6gGTvzLoQ==", + "path": "system.interactive.async/4.0.0", + "hashPath": "system.interactive.async.4.0.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Async/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WbiYEedFZeM+psmMyoCt1AKbZppAZg8Eq1ZTQ+521fGNeXqlgJj0tZYV5n1LsKRO5osQuitYxGNuzPTy3213sg==", + "path": "system.linq.async/4.0.0", + "hashPath": "system.linq.async.4.0.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + } + } +} \ No newline at end of file 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 new file mode 100644 index 0000000..3fc2d9c Binary files /dev/null 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.exe b/Discord_Simple-Embed-Bot/bin/Release/net5.0/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/Discord_Simple-Embed-Bot.exe 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 new file mode 100644 index 0000000..22c914a Binary files /dev/null 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/Discord_Simple-Embed-Bot.runtimeconfig.dev.json b/Discord_Simple-Embed-Bot/bin/Release/net5.0/Discord_Simple-Embed-Bot.runtimeconfig.dev.json new file mode 100644 index 0000000..7761eb8 --- /dev/null +++ b/Discord_Simple-Embed-Bot/bin/Release/net5.0/Discord_Simple-Embed-Bot.runtimeconfig.dev.json @@ -0,0 +1,10 @@ +{ + "runtimeOptions": { + "additionalProbingPaths": [ + "C:\\Users\\David\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\David\\.nuget\\packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Microsoft\\Xamarin\\NuGet" + ] + } +} \ No newline at end of file diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/Discord_Simple-Embed-Bot.runtimeconfig.json b/Discord_Simple-Embed-Bot/bin/Release/net5.0/Discord_Simple-Embed-Bot.runtimeconfig.json new file mode 100644 index 0000000..a8e7e82 --- /dev/null +++ b/Discord_Simple-Embed-Bot/bin/Release/net5.0/Discord_Simple-Embed-Bot.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net5.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/Newtonsoft.Json.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/Newtonsoft.Json.dll new file mode 100644 index 0000000..b8ea6e0 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/Newtonsoft.Json.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 new file mode 100644 index 0000000..e0ce3ba Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/System.Data.SQLite.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/System.Interactive.Async.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/System.Interactive.Async.dll new file mode 100644 index 0000000..55a35f5 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/System.Interactive.Async.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/System.Linq.Async.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/System.Linq.Async.dll new file mode 100644 index 0000000..165b555 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/System.Linq.Async.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Discord.Net.Commands.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Discord.Net.Commands.dll new file mode 100644 index 0000000..f2cff9c Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Discord.Net.Commands.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Discord.Net.Core.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Discord.Net.Core.dll new file mode 100644 index 0000000..5c4ca5a Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Discord.Net.Core.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Discord.Net.Rest.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Discord.Net.Rest.dll new file mode 100644 index 0000000..8b87f59 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Discord.Net.Rest.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Discord.Net.WebSocket.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Discord.Net.WebSocket.dll new file mode 100644 index 0000000..fa3a1ea Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Discord.Net.WebSocket.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Discord.Net.Webhook.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Discord.Net.Webhook.dll new file mode 100644 index 0000000..d85f6c7 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Discord.Net.Webhook.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot new file mode 100644 index 0000000..44410c0 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.deps.json b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.deps.json new file mode 100644 index 0000000..e67ebf1 --- /dev/null +++ b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.deps.json @@ -0,0 +1,3124 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v5.0/linux-x64", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v5.0": {}, + ".NETCoreApp,Version=v5.0/linux-x64": { + "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-x64": "5.0.0" + }, + "runtime": { + "Discord_Simple-Embed-Bot.dll": {} + } + }, + "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/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", + "Discord.Net.Core": "2.3.0", + "Discord.Net.Rest": "2.3.0", + "Discord.Net.WebSocket": "2.3.0", + "Discord.Net.Webhook": "2.3.0" + } + }, + "Discord.Net.Commands/2.3.0": { + "dependencies": { + "Discord.Net.Core": "2.3.0" + }, + "runtime": { + "lib/netstandard2.1/Discord.Net.Commands.dll": { + "assemblyVersion": "2.3.0.0", + "fileVersion": "2.3.0.0" + } + } + }, + "Discord.Net.Core/2.3.0": { + "dependencies": { + "Newtonsoft.Json": "12.0.2", + "System.Collections.Immutable": "1.3.1", + "System.Interactive.Async": "4.0.0" + }, + "runtime": { + "lib/netstandard2.1/Discord.Net.Core.dll": { + "assemblyVersion": "2.3.0.0", + "fileVersion": "2.3.0.0" + } + } + }, + "Discord.Net.Rest/2.3.0": { + "dependencies": { + "Discord.Net.Core": "2.3.0" + }, + "runtime": { + "lib/netstandard2.1/Discord.Net.Rest.dll": { + "assemblyVersion": "2.3.0.0", + "fileVersion": "2.3.0.0" + } + } + }, + "Discord.Net.Webhook/2.3.0": { + "dependencies": { + "Discord.Net.Core": "2.3.0", + "Discord.Net.Rest": "2.3.0" + }, + "runtime": { + "lib/netstandard2.1/Discord.Net.Webhook.dll": { + "assemblyVersion": "2.3.0.0", + "fileVersion": "2.3.0.0" + } + } + }, + "Discord.Net.WebSocket/2.3.0": { + "dependencies": { + "Discord.Net.Core": "2.3.0", + "Discord.Net.Rest": "2.3.0" + }, + "runtime": { + "lib/netstandard2.1/Discord.Net.WebSocket.dll": { + "assemblyVersion": "2.3.0.0", + "fileVersion": "2.3.0.0" + } + } + }, + "Microsoft.NETCore.Platforms/1.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Newtonsoft.Json/12.0.2": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "12.0.0.0", + "fileVersion": "12.0.2.23222" + } + } + }, + "runtime.any.System.Collections/4.3.0": { + "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": { + "runtime": { + "lib/netstandard2.1/System.Data.SQLite.dll": { + "assemblyVersion": "1.0.113.0", + "fileVersion": "1.0.113.0" + } + }, + "native": { + "runtimes/linux-x64/native/SQLite.Interop.dll": { + "fileVersion": "0.0.0.0" + } + } + }, + "System.Collections/4.3.0": { + "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.Collections.Immutable/1.3.1": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "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": { + "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.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.Interactive.Async/4.0.0": { + "dependencies": { + "System.Linq.Async": "4.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Interactive.Async.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.2" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.any.System.IO": "4.3.0" + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Linq.Async/4.0.0": { + "runtime": { + "lib/netcoreapp3.0/System.Linq.Async.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.2" + } + } + }, + "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.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.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.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "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": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "runtime.any.System.Runtime": "4.3.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.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.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "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" + } + } + } + }, + "libraries": { + "Discord_Simple-Embed-Bot/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/5.0.0": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "Discord.Net/2.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YILjBwqYdvich6v1rfO/OhdBrdhPQB/AKEohYISdOJ+LiwfMPCafAo3YN/VutmeAGpvmrdv1fP/D0T3rHo2JrQ==", + "path": "discord.net/2.3.0", + "hashPath": "discord.net.2.3.0.nupkg.sha512" + }, + "Discord.Net.Commands/2.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-D7/kpseW53Hmni0/Vr22VElIoitFFUa0XDaIiU+HwijObBf6+rfgquWNYF9hePV+xVyY0+eQ8FOtRmBMG7Cy4A==", + "path": "discord.net.commands/2.3.0", + "hashPath": "discord.net.commands.2.3.0.nupkg.sha512" + }, + "Discord.Net.Core/2.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W5mmQ7fzlQMPmKW/sJx9CrBjdSnC/V2Ao/OukpEr4L42NgyYJUjjs5wRoxKoOLU/b6hj3Q8g0FJ5IYrmt6KSnQ==", + "path": "discord.net.core/2.3.0", + "hashPath": "discord.net.core.2.3.0.nupkg.sha512" + }, + "Discord.Net.Rest/2.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5m2nV4A9QIBtRsc7yIu9rQpc4Q7GpL6AaZ+xeAFdPx9dkUhikHIVZ0l1qqmn+pFSAUZ9e9fTsKzMfr7Loqz4aQ==", + "path": "discord.net.rest/2.3.0", + "hashPath": "discord.net.rest.2.3.0.nupkg.sha512" + }, + "Discord.Net.Webhook/2.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6DSRbYVLPDUbD7wBmMesaUbHkYud+WKxt8OeWTkifR6iR1DzSZX5i1GubmWaPsVjGYr1TA8usTepshla7Fiu9w==", + "path": "discord.net.webhook/2.3.0", + "hashPath": "discord.net.webhook.2.3.0.nupkg.sha512" + }, + "Discord.Net.WebSocket/2.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mktzQvXy9oKF3j7F8/f3v9xcUmYxXb8oMBGD4czZRn0P/BOM4cz0OdmCHr5wVyMb0W7q0VxmnfKYNsN0kGzFNA==", + "path": "discord.net.websocket/2.3.0", + "hashPath": "discord.net.websocket.2.3.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "path": "microsoft.netcore.platforms/1.1.0", + "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Newtonsoft.Json/12.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rTK0s2EKlfHsQsH6Yx2smvcTCeyoDNgCW7FEYyV01drPlh2T243PR2DiDXqtC5N4GDm4Ma/lkxfW5a/4793vbA==", + "path": "newtonsoft.json/12.0.2", + "hashPath": "newtonsoft.json.12.0.2.nupkg.sha512" + }, + "runtime.any.System.Collections/4.3.0": { + "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" + }, + "runtime.any.System.Globalization/4.3.0": { + "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" + }, + "runtime.any.System.IO/4.3.0": { + "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" + }, + "runtime.any.System.Reflection/4.3.0": { + "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" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Immutable/1.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-n+AGX7zmiZumW9aggOkXaHzUeAS3EfeTErnkKCusyONUozbTv+kMb8VE36m+ldV6kF9g57G2c641KCdgH9E0pg==", + "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, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Interactive.Async/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tYEzSDQ3rn0G7sGgjcNB91C3dDRJc8m8Lavvu88dwt8FEwKPGZdp/tFs+lQTdqHDV9UItkGIwI8Aa6gGTvzLoQ==", + "path": "system.interactive.async/4.0.0", + "hashPath": "system.interactive.async.4.0.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Async/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WbiYEedFZeM+psmMyoCt1AKbZppAZg8Eq1ZTQ+521fGNeXqlgJj0tZYV5n1LsKRO5osQuitYxGNuzPTy3213sg==", + "path": "system.linq.async/4.0.0", + "hashPath": "system.linq.async.4.0.0.nupkg.sha512" + }, + "System.Private.Uri/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==", + "path": "system.private.uri/4.3.0", + "hashPath": "system.private.uri.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + } + }, + "runtimes": { + "alpine-x64": [ + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.10-x64": [ + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.11-x64": [ + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.12-x64": [ + "alpine.3.12", + "alpine.3.11-x64", + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.6-x64": [ + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.7-x64": [ + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.8-x64": [ + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.9-x64": [ + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android-x64": [ + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.21-x64": [ + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.22-x64": [ + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.23-x64": [ + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.24-x64": [ + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.25-x64": [ + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.26-x64": [ + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.27-x64": [ + "android.27", + "android.26-x64", + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.28-x64": [ + "android.28", + "android.27-x64", + "android.27", + "android.26-x64", + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.29-x64": [ + "android.29", + "android.28-x64", + "android.28", + "android.27-x64", + "android.27", + "android.26-x64", + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "arch-x64": [ + "arch", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "centos-x64": [ + "centos", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "centos.7-x64": [ + "centos.7", + "centos-x64", + "rhel.7-x64", + "centos", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "centos.8-x64": [ + "centos.8", + "centos-x64", + "rhel.8-x64", + "centos", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "centos.9-x64": [ + "centos.9", + "centos-x64", + "rhel.9-x64", + "centos", + "rhel.9", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian-x64": [ + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian.10-x64": [ + "debian.10", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian.8-x64": [ + "debian.8", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian.9-x64": [ + "debian.9", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora-x64": [ + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.23-x64": [ + "fedora.23", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.24-x64": [ + "fedora.24", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.25-x64": [ + "fedora.25", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.26-x64": [ + "fedora.26", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.27-x64": [ + "fedora.27", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.28-x64": [ + "fedora.28", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.29-x64": [ + "fedora.29", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.30-x64": [ + "fedora.30", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.31-x64": [ + "fedora.31", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.32-x64": [ + "fedora.32", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.33-x64": [ + "fedora.33", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.34-x64": [ + "fedora.34", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "gentoo-x64": [ + "gentoo", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linux-musl-x64": [ + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linux-x64": [ + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.17-x64": [ + "linuxmint.17", + "ubuntu.14.04-x64", + "ubuntu.14.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.17.1-x64": [ + "linuxmint.17.1", + "linuxmint.17-x64", + "linuxmint.17", + "ubuntu.14.04-x64", + "ubuntu.14.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.17.2-x64": [ + "linuxmint.17.2", + "linuxmint.17.1-x64", + "linuxmint.17.1", + "linuxmint.17-x64", + "linuxmint.17", + "ubuntu.14.04-x64", + "ubuntu.14.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.17.3-x64": [ + "linuxmint.17.3", + "linuxmint.17.2-x64", + "linuxmint.17.2", + "linuxmint.17.1-x64", + "linuxmint.17.1", + "linuxmint.17-x64", + "linuxmint.17", + "ubuntu.14.04-x64", + "ubuntu.14.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.18-x64": [ + "linuxmint.18", + "ubuntu.16.04-x64", + "ubuntu.16.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.18.1-x64": [ + "linuxmint.18.1", + "linuxmint.18-x64", + "linuxmint.18", + "ubuntu.16.04-x64", + "ubuntu.16.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.18.2-x64": [ + "linuxmint.18.2", + "linuxmint.18.1-x64", + "linuxmint.18.1", + "linuxmint.18-x64", + "linuxmint.18", + "ubuntu.16.04-x64", + "ubuntu.16.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.18.3-x64": [ + "linuxmint.18.3", + "linuxmint.18.2-x64", + "linuxmint.18.2", + "linuxmint.18.1-x64", + "linuxmint.18.1", + "linuxmint.18-x64", + "linuxmint.18", + "ubuntu.16.04-x64", + "ubuntu.16.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.19-x64": [ + "linuxmint.19", + "ubuntu.18.04-x64", + "ubuntu.18.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.19.1-x64": [ + "linuxmint.19.1", + "linuxmint.19-x64", + "linuxmint.19", + "ubuntu.18.04-x64", + "ubuntu.18.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.19.2-x64": [ + "linuxmint.19.2", + "linuxmint.19.1-x64", + "linuxmint.19.1", + "linuxmint.19-x64", + "linuxmint.19", + "ubuntu.18.04-x64", + "ubuntu.18.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol-x64": [ + "ol", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7-x64": [ + "ol.7", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.0-x64": [ + "ol.7.0", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.1-x64": [ + "ol.7.1", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.2-x64": [ + "ol.7.2", + "ol.7.1-x64", + "rhel.7.2-x64", + "ol.7.1", + "rhel.7.2", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.3-x64": [ + "ol.7.3", + "ol.7.2-x64", + "rhel.7.3-x64", + "ol.7.2", + "rhel.7.3", + "ol.7.1-x64", + "rhel.7.2-x64", + "ol.7.1", + "rhel.7.2", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.4-x64": [ + "ol.7.4", + "ol.7.3-x64", + "rhel.7.4-x64", + "ol.7.3", + "rhel.7.4", + "ol.7.2-x64", + "rhel.7.3-x64", + "ol.7.2", + "rhel.7.3", + "ol.7.1-x64", + "rhel.7.2-x64", + "ol.7.1", + "rhel.7.2", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.5-x64": [ + "ol.7.5", + "ol.7.4-x64", + "rhel.7.5-x64", + "ol.7.4", + "rhel.7.5", + "ol.7.3-x64", + "rhel.7.4-x64", + "ol.7.3", + "rhel.7.4", + "ol.7.2-x64", + "rhel.7.3-x64", + "ol.7.2", + "rhel.7.3", + "ol.7.1-x64", + "rhel.7.2-x64", + "ol.7.1", + "rhel.7.2", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.6-x64": [ + "ol.7.6", + "ol.7.5-x64", + "rhel.7.6-x64", + "ol.7.5", + "rhel.7.6", + "ol.7.4-x64", + "rhel.7.5-x64", + "ol.7.4", + "rhel.7.5", + "ol.7.3-x64", + "rhel.7.4-x64", + "ol.7.3", + "rhel.7.4", + "ol.7.2-x64", + "rhel.7.3-x64", + "ol.7.2", + "rhel.7.3", + "ol.7.1-x64", + "rhel.7.2-x64", + "ol.7.1", + "rhel.7.2", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.8-x64": [ + "ol.8", + "ol-x64", + "rhel.8-x64", + "ol", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.8.0-x64": [ + "ol.8.0", + "ol.8-x64", + "rhel.8.0-x64", + "ol.8", + "rhel.8.0", + "ol-x64", + "rhel.8-x64", + "ol", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse-x64": [ + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.13.2-x64": [ + "opensuse.13.2", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.15.0-x64": [ + "opensuse.15.0", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.15.1-x64": [ + "opensuse.15.1", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.42.1-x64": [ + "opensuse.42.1", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.42.2-x64": [ + "opensuse.42.2", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.42.3-x64": [ + "opensuse.42.3", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel-x64": [ + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.6-x64": [ + "rhel.6", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7-x64": [ + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.0-x64": [ + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.1-x64": [ + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.2-x64": [ + "rhel.7.2", + "rhel.7.1-x64", + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.3-x64": [ + "rhel.7.3", + "rhel.7.2-x64", + "rhel.7.2", + "rhel.7.1-x64", + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.4-x64": [ + "rhel.7.4", + "rhel.7.3-x64", + "rhel.7.3", + "rhel.7.2-x64", + "rhel.7.2", + "rhel.7.1-x64", + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.5-x64": [ + "rhel.7.5", + "rhel.7.4-x64", + "rhel.7.4", + "rhel.7.3-x64", + "rhel.7.3", + "rhel.7.2-x64", + "rhel.7.2", + "rhel.7.1-x64", + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.6-x64": [ + "rhel.7.6", + "rhel.7.5-x64", + "rhel.7.5", + "rhel.7.4-x64", + "rhel.7.4", + "rhel.7.3-x64", + "rhel.7.3", + "rhel.7.2-x64", + "rhel.7.2", + "rhel.7.1-x64", + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.8-x64": [ + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.8.0-x64": [ + "rhel.8.0", + "rhel.8-x64", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.8.1-x64": [ + "rhel.8.1", + "rhel.8.0-x64", + "rhel.8.0", + "rhel.8-x64", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.9-x64": [ + "rhel.9", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles-x64": [ + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.12-x64": [ + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.12.1-x64": [ + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.12.2-x64": [ + "sles.12.2", + "sles.12.1-x64", + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.12.3-x64": [ + "sles.12.3", + "sles.12.2-x64", + "sles.12.2", + "sles.12.1-x64", + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.12.4-x64": [ + "sles.12.4", + "sles.12.3-x64", + "sles.12.3", + "sles.12.2-x64", + "sles.12.2", + "sles.12.1-x64", + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.15-x64": [ + "sles.15", + "sles.12.4-x64", + "sles.12.4", + "sles.12.3-x64", + "sles.12.3", + "sles.12.2-x64", + "sles.12.2", + "sles.12.1-x64", + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.15.1-x64": [ + "sles.15.1", + "sles.15-x64", + "sles.15", + "sles.12.4-x64", + "sles.12.4", + "sles.12.3-x64", + "sles.12.3", + "sles.12.2-x64", + "sles.12.2", + "sles.12.1-x64", + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu-x64": [ + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.14.04-x64": [ + "ubuntu.14.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.14.10-x64": [ + "ubuntu.14.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.15.04-x64": [ + "ubuntu.15.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.15.10-x64": [ + "ubuntu.15.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.16.04-x64": [ + "ubuntu.16.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.16.10-x64": [ + "ubuntu.16.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.17.04-x64": [ + "ubuntu.17.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.17.10-x64": [ + "ubuntu.17.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.18.04-x64": [ + "ubuntu.18.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.18.10-x64": [ + "ubuntu.18.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.19.04-x64": [ + "ubuntu.19.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.19.10-x64": [ + "ubuntu.19.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.20.04-x64": [ + "ubuntu.20.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.20.10-x64": [ + "ubuntu.20.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.21.04-x64": [ + "ubuntu.21.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.21.10-x64": [ + "ubuntu.21.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ] + } +} \ No newline at end of file diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.dll new file mode 100644 index 0000000..d8694ff Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.pdb b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.pdb new file mode 100644 index 0000000..3bd3bc8 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.pdb differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.runtimeconfig.dev.json b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.runtimeconfig.dev.json new file mode 100644 index 0000000..7761eb8 --- /dev/null +++ b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.runtimeconfig.dev.json @@ -0,0 +1,10 @@ +{ + "runtimeOptions": { + "additionalProbingPaths": [ + "C:\\Users\\David\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\David\\.nuget\\packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Microsoft\\Xamarin\\NuGet" + ] + } +} \ No newline at end of file diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.runtimeconfig.json b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.runtimeconfig.json new file mode 100644 index 0000000..d435d2c --- /dev/null +++ b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.runtimeconfig.json @@ -0,0 +1,11 @@ +{ + "runtimeOptions": { + "tfm": "net5.0", + "includedFrameworks": [ + { + "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/linux-x64/Microsoft.CSharp.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Microsoft.CSharp.dll new file mode 100644 index 0000000..3675158 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Microsoft.CSharp.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Microsoft.VisualBasic.Core.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Microsoft.VisualBasic.Core.dll new file mode 100644 index 0000000..27a2362 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Microsoft.VisualBasic.Core.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Microsoft.VisualBasic.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Microsoft.VisualBasic.dll new file mode 100644 index 0000000..68e01fd Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Microsoft.VisualBasic.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Microsoft.Win32.Primitives.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Microsoft.Win32.Primitives.dll new file mode 100644 index 0000000..bdbd4d0 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Microsoft.Win32.Primitives.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Microsoft.Win32.Registry.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Microsoft.Win32.Registry.dll new file mode 100644 index 0000000..e2dabbd Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Microsoft.Win32.Registry.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Newtonsoft.Json.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Newtonsoft.Json.dll new file mode 100644 index 0000000..b8ea6e0 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/Newtonsoft.Json.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/SQLite.Interop.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/SQLite.Interop.dll new file mode 100644 index 0000000..6895e0f Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/SQLite.Interop.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.AppContext.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.AppContext.dll new file mode 100644 index 0000000..794cf86 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.AppContext.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Buffers.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Buffers.dll new file mode 100644 index 0000000..3f2f47f Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Buffers.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Collections.Concurrent.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Collections.Concurrent.dll new file mode 100644 index 0000000..07775e8 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Collections.Concurrent.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Collections.Immutable.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Collections.Immutable.dll new file mode 100644 index 0000000..be6b241 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Collections.Immutable.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Collections.NonGeneric.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Collections.NonGeneric.dll new file mode 100644 index 0000000..c394350 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Collections.NonGeneric.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Collections.Specialized.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Collections.Specialized.dll new file mode 100644 index 0000000..4eaa681 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Collections.Specialized.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Collections.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Collections.dll new file mode 100644 index 0000000..a8d425b Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Collections.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.ComponentModel.Annotations.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.ComponentModel.Annotations.dll new file mode 100644 index 0000000..bb9cffa Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.ComponentModel.Annotations.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.ComponentModel.DataAnnotations.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.ComponentModel.DataAnnotations.dll new file mode 100644 index 0000000..b7683fc Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.ComponentModel.DataAnnotations.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.ComponentModel.EventBasedAsync.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.ComponentModel.EventBasedAsync.dll new file mode 100644 index 0000000..c078923 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.ComponentModel.EventBasedAsync.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.ComponentModel.Primitives.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.ComponentModel.Primitives.dll new file mode 100644 index 0000000..c9cc71f Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.ComponentModel.Primitives.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.ComponentModel.TypeConverter.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.ComponentModel.TypeConverter.dll new file mode 100644 index 0000000..e000128 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.ComponentModel.TypeConverter.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.ComponentModel.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.ComponentModel.dll new file mode 100644 index 0000000..8c24975 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.ComponentModel.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Configuration.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Configuration.dll new file mode 100644 index 0000000..d41c187 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Configuration.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Console.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Console.dll new file mode 100644 index 0000000..561bb17 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Console.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Core.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Core.dll new file mode 100644 index 0000000..411aad5 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Core.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Data.Common.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Data.Common.dll new file mode 100644 index 0000000..8d20ce8 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Data.Common.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Data.DataSetExtensions.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Data.DataSetExtensions.dll new file mode 100644 index 0000000..26fa379 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Data.DataSetExtensions.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Data.SQLite.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Data.SQLite.dll new file mode 100644 index 0000000..e0ce3ba Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Data.SQLite.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Data.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Data.dll new file mode 100644 index 0000000..e6a3df1 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Data.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Diagnostics.Contracts.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Diagnostics.Contracts.dll new file mode 100644 index 0000000..42f666b Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Diagnostics.Contracts.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Diagnostics.Debug.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Diagnostics.Debug.dll new file mode 100644 index 0000000..c1e6455 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Diagnostics.Debug.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Diagnostics.DiagnosticSource.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000..7413120 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Diagnostics.DiagnosticSource.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Diagnostics.FileVersionInfo.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Diagnostics.FileVersionInfo.dll new file mode 100644 index 0000000..d0826d4 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Diagnostics.FileVersionInfo.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Diagnostics.Process.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Diagnostics.Process.dll new file mode 100644 index 0000000..88867a4 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Diagnostics.Process.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Diagnostics.StackTrace.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Diagnostics.StackTrace.dll new file mode 100644 index 0000000..82b947f Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Diagnostics.StackTrace.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Diagnostics.TextWriterTraceListener.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Diagnostics.TextWriterTraceListener.dll new file mode 100644 index 0000000..b4738a8 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Diagnostics.Tools.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Diagnostics.Tools.dll new file mode 100644 index 0000000..657aaa2 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Diagnostics.Tools.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Diagnostics.TraceSource.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Diagnostics.TraceSource.dll new file mode 100644 index 0000000..f5b7269 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Diagnostics.TraceSource.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Diagnostics.Tracing.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Diagnostics.Tracing.dll new file mode 100644 index 0000000..1d35654 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Diagnostics.Tracing.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Drawing.Primitives.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Drawing.Primitives.dll new file mode 100644 index 0000000..2c240ca Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Drawing.Primitives.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Drawing.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Drawing.dll new file mode 100644 index 0000000..24073b3 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Drawing.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Dynamic.Runtime.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Dynamic.Runtime.dll new file mode 100644 index 0000000..59a2ee2 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Dynamic.Runtime.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Formats.Asn1.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Formats.Asn1.dll new file mode 100644 index 0000000..04b8fa5 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Formats.Asn1.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Globalization.Calendars.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Globalization.Calendars.dll new file mode 100644 index 0000000..80fd8e4 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Globalization.Calendars.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Globalization.Extensions.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Globalization.Extensions.dll new file mode 100644 index 0000000..a4307c4 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Globalization.Extensions.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Globalization.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Globalization.dll new file mode 100644 index 0000000..010d02b Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Globalization.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.Compression.Brotli.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.Compression.Brotli.dll new file mode 100644 index 0000000..f0ffae2 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.Compression.Brotli.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.Compression.FileSystem.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.Compression.FileSystem.dll new file mode 100644 index 0000000..39e1523 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.Compression.FileSystem.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.Compression.ZipFile.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.Compression.ZipFile.dll new file mode 100644 index 0000000..2592d83 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.Compression.ZipFile.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.Compression.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.Compression.dll new file mode 100644 index 0000000..4915045 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.Compression.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.FileSystem.AccessControl.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.FileSystem.AccessControl.dll new file mode 100644 index 0000000..abf6291 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.FileSystem.AccessControl.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.FileSystem.DriveInfo.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.FileSystem.DriveInfo.dll new file mode 100644 index 0000000..893b022 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.FileSystem.DriveInfo.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.FileSystem.Primitives.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.FileSystem.Primitives.dll new file mode 100644 index 0000000..5105835 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.FileSystem.Primitives.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.FileSystem.Watcher.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.FileSystem.Watcher.dll new file mode 100644 index 0000000..0231361 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.FileSystem.Watcher.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.FileSystem.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.FileSystem.dll new file mode 100644 index 0000000..63a0489 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.FileSystem.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.IsolatedStorage.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.IsolatedStorage.dll new file mode 100644 index 0000000..90ae1de Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.IsolatedStorage.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.MemoryMappedFiles.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.MemoryMappedFiles.dll new file mode 100644 index 0000000..ef71cd5 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.MemoryMappedFiles.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.Pipes.AccessControl.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.Pipes.AccessControl.dll new file mode 100644 index 0000000..3c30b1f Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.Pipes.AccessControl.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.Pipes.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.Pipes.dll new file mode 100644 index 0000000..1df2936 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.Pipes.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.UnmanagedMemoryStream.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.UnmanagedMemoryStream.dll new file mode 100644 index 0000000..06b7bb7 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.UnmanagedMemoryStream.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.dll new file mode 100644 index 0000000..2e0a5f0 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.IO.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Interactive.Async.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Interactive.Async.dll new file mode 100644 index 0000000..55a35f5 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Interactive.Async.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Linq.Async.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Linq.Async.dll new file mode 100644 index 0000000..165b555 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Linq.Async.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Linq.Expressions.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Linq.Expressions.dll new file mode 100644 index 0000000..db85794 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Linq.Expressions.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Linq.Parallel.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Linq.Parallel.dll new file mode 100644 index 0000000..c601d0e Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Linq.Parallel.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Linq.Queryable.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Linq.Queryable.dll new file mode 100644 index 0000000..6eda159 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Linq.Queryable.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Linq.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Linq.dll new file mode 100644 index 0000000..62012c4 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Linq.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Memory.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Memory.dll new file mode 100644 index 0000000..1942710 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Memory.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.Http.Json.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.Http.Json.dll new file mode 100644 index 0000000..0d24a42 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.Http.Json.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.Http.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.Http.dll new file mode 100644 index 0000000..1729647 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.Http.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.HttpListener.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.HttpListener.dll new file mode 100644 index 0000000..d87c5e8 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.HttpListener.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.Mail.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.Mail.dll new file mode 100644 index 0000000..c744805 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.Mail.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.NameResolution.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.NameResolution.dll new file mode 100644 index 0000000..e664634 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.NameResolution.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.NetworkInformation.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.NetworkInformation.dll new file mode 100644 index 0000000..473507f Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.NetworkInformation.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.Ping.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.Ping.dll new file mode 100644 index 0000000..07e23d5 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.Ping.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.Primitives.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.Primitives.dll new file mode 100644 index 0000000..44eb483 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.Primitives.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.Requests.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.Requests.dll new file mode 100644 index 0000000..d8c316f Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.Requests.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.Security.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.Security.dll new file mode 100644 index 0000000..be71e7a Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.Security.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.ServicePoint.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.ServicePoint.dll new file mode 100644 index 0000000..8dd4f19 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.ServicePoint.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.Sockets.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.Sockets.dll new file mode 100644 index 0000000..d464585 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.Sockets.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.WebClient.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.WebClient.dll new file mode 100644 index 0000000..c633b97 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.WebClient.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.WebHeaderCollection.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.WebHeaderCollection.dll new file mode 100644 index 0000000..2e3edfd Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.WebHeaderCollection.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.WebProxy.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.WebProxy.dll new file mode 100644 index 0000000..b3c99d6 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.WebProxy.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.WebSockets.Client.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.WebSockets.Client.dll new file mode 100644 index 0000000..8fe6ad4 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.WebSockets.Client.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.WebSockets.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.WebSockets.dll new file mode 100644 index 0000000..a59b2ad Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.WebSockets.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.dll new file mode 100644 index 0000000..ed8bf2f Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Net.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Numerics.Vectors.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Numerics.Vectors.dll new file mode 100644 index 0000000..3d9eeeb Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Numerics.Vectors.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Numerics.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Numerics.dll new file mode 100644 index 0000000..1bfaaf3 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Numerics.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.ObjectModel.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.ObjectModel.dll new file mode 100644 index 0000000..566991a Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.ObjectModel.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Private.CoreLib.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Private.CoreLib.dll new file mode 100644 index 0000000..d47ed52 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Private.CoreLib.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Private.DataContractSerialization.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Private.DataContractSerialization.dll new file mode 100644 index 0000000..b12d9fc Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Private.DataContractSerialization.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Private.Uri.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Private.Uri.dll new file mode 100644 index 0000000..db350d2 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Private.Uri.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Private.Xml.Linq.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Private.Xml.Linq.dll new file mode 100644 index 0000000..5c2209b Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Private.Xml.Linq.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Private.Xml.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Private.Xml.dll new file mode 100644 index 0000000..526110d Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Private.Xml.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Reflection.DispatchProxy.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Reflection.DispatchProxy.dll new file mode 100644 index 0000000..a3703e1 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Reflection.DispatchProxy.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Reflection.Emit.ILGeneration.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Reflection.Emit.ILGeneration.dll new file mode 100644 index 0000000..0436980 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Reflection.Emit.ILGeneration.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Reflection.Emit.Lightweight.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Reflection.Emit.Lightweight.dll new file mode 100644 index 0000000..1924b16 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Reflection.Emit.Lightweight.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Reflection.Emit.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Reflection.Emit.dll new file mode 100644 index 0000000..8b5d480 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Reflection.Emit.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Reflection.Extensions.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Reflection.Extensions.dll new file mode 100644 index 0000000..e1ed5b2 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Reflection.Extensions.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Reflection.Metadata.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Reflection.Metadata.dll new file mode 100644 index 0000000..2f40106 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Reflection.Metadata.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Reflection.Primitives.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Reflection.Primitives.dll new file mode 100644 index 0000000..33e2a8b Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Reflection.Primitives.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Reflection.TypeExtensions.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Reflection.TypeExtensions.dll new file mode 100644 index 0000000..f40a5b0 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Reflection.TypeExtensions.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Reflection.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Reflection.dll new file mode 100644 index 0000000..f0b96e5 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Reflection.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Resources.Reader.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Resources.Reader.dll new file mode 100644 index 0000000..30bb961 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Resources.Reader.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Resources.ResourceManager.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Resources.ResourceManager.dll new file mode 100644 index 0000000..e6d9d35 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Resources.ResourceManager.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Resources.Writer.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Resources.Writer.dll new file mode 100644 index 0000000..21ab4a5 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Resources.Writer.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.CompilerServices.Unsafe.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.CompilerServices.Unsafe.dll new file mode 100644 index 0000000..2e859b5 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.CompilerServices.VisualC.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.CompilerServices.VisualC.dll new file mode 100644 index 0000000..7b85355 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.Extensions.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.Extensions.dll new file mode 100644 index 0000000..b47a903 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.Extensions.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.Handles.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.Handles.dll new file mode 100644 index 0000000..159094f Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.Handles.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.InteropServices.RuntimeInformation.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100644 index 0000000..d1820d6 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.InteropServices.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.InteropServices.dll new file mode 100644 index 0000000..65825e7 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.InteropServices.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.Intrinsics.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.Intrinsics.dll new file mode 100644 index 0000000..a33be44 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.Intrinsics.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.Loader.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.Loader.dll new file mode 100644 index 0000000..46e97aa Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.Loader.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.Numerics.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.Numerics.dll new file mode 100644 index 0000000..36d5d65 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.Numerics.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.Serialization.Formatters.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.Serialization.Formatters.dll new file mode 100644 index 0000000..01f0b2d Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.Serialization.Formatters.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.Serialization.Json.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.Serialization.Json.dll new file mode 100644 index 0000000..3abb6e8 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.Serialization.Json.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.Serialization.Primitives.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 0000000..fb6d042 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.Serialization.Primitives.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.Serialization.Xml.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.Serialization.Xml.dll new file mode 100644 index 0000000..c79af85 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.Serialization.Xml.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.Serialization.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.Serialization.dll new file mode 100644 index 0000000..db4a823 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.Serialization.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.dll new file mode 100644 index 0000000..945b58e Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Runtime.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.AccessControl.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.AccessControl.dll new file mode 100644 index 0000000..d3f373b Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.AccessControl.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.Claims.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.Claims.dll new file mode 100644 index 0000000..ab6edf3 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.Claims.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.Cryptography.Algorithms.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 0000000..0226bf1 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.Cryptography.Algorithms.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.Cryptography.Cng.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.Cryptography.Cng.dll new file mode 100644 index 0000000..367ed17 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.Cryptography.Cng.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.Cryptography.Csp.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.Cryptography.Csp.dll new file mode 100644 index 0000000..e604ed8 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.Cryptography.Csp.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.Cryptography.Encoding.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.Cryptography.Encoding.dll new file mode 100644 index 0000000..feada2d Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.Cryptography.Encoding.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.Cryptography.OpenSsl.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.Cryptography.OpenSsl.dll new file mode 100644 index 0000000..165ed73 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.Cryptography.OpenSsl.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.Cryptography.Primitives.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.Cryptography.Primitives.dll new file mode 100644 index 0000000..617a35a Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.Cryptography.Primitives.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.Cryptography.X509Certificates.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.Cryptography.X509Certificates.dll new file mode 100644 index 0000000..d67f7ec Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.Cryptography.X509Certificates.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.Principal.Windows.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.Principal.Windows.dll new file mode 100644 index 0000000..829d955 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.Principal.Windows.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.Principal.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.Principal.dll new file mode 100644 index 0000000..86ac0a3 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.Principal.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.SecureString.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.SecureString.dll new file mode 100644 index 0000000..d0f6701 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.SecureString.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.dll new file mode 100644 index 0000000..ac0968b Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Security.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.ServiceModel.Web.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.ServiceModel.Web.dll new file mode 100644 index 0000000..cb14ee3 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.ServiceModel.Web.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.ServiceProcess.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.ServiceProcess.dll new file mode 100644 index 0000000..c2e9d7d Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.ServiceProcess.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Text.Encoding.CodePages.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Text.Encoding.CodePages.dll new file mode 100644 index 0000000..4964e45 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Text.Encoding.CodePages.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Text.Encoding.Extensions.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Text.Encoding.Extensions.dll new file mode 100644 index 0000000..8d61973 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Text.Encoding.Extensions.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Text.Encoding.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Text.Encoding.dll new file mode 100644 index 0000000..531aa11 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Text.Encoding.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Text.Encodings.Web.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..6786b0a Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Text.Encodings.Web.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Text.Json.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Text.Json.dll new file mode 100644 index 0000000..ca22659 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Text.Json.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Text.RegularExpressions.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Text.RegularExpressions.dll new file mode 100644 index 0000000..3fdc15e Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Text.RegularExpressions.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Threading.Channels.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Threading.Channels.dll new file mode 100644 index 0000000..5ecafd1 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Threading.Channels.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Threading.Overlapped.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Threading.Overlapped.dll new file mode 100644 index 0000000..8f1b46d Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Threading.Overlapped.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Threading.Tasks.Dataflow.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Threading.Tasks.Dataflow.dll new file mode 100644 index 0000000..5664d3a Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Threading.Tasks.Dataflow.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Threading.Tasks.Extensions.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Threading.Tasks.Extensions.dll new file mode 100644 index 0000000..3e075e1 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Threading.Tasks.Extensions.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Threading.Tasks.Parallel.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Threading.Tasks.Parallel.dll new file mode 100644 index 0000000..8ffe28b Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Threading.Tasks.Parallel.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Threading.Tasks.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Threading.Tasks.dll new file mode 100644 index 0000000..8056611 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Threading.Tasks.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Threading.Thread.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Threading.Thread.dll new file mode 100644 index 0000000..f90c349 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Threading.Thread.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Threading.ThreadPool.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Threading.ThreadPool.dll new file mode 100644 index 0000000..3b60d9c Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Threading.ThreadPool.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Threading.Timer.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Threading.Timer.dll new file mode 100644 index 0000000..8bcc0a1 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Threading.Timer.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Threading.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Threading.dll new file mode 100644 index 0000000..cec2a6e Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Threading.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Transactions.Local.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Transactions.Local.dll new file mode 100644 index 0000000..5c55a80 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Transactions.Local.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Transactions.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Transactions.dll new file mode 100644 index 0000000..cd78755 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Transactions.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.ValueTuple.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.ValueTuple.dll new file mode 100644 index 0000000..efa8fed Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.ValueTuple.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Web.HttpUtility.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Web.HttpUtility.dll new file mode 100644 index 0000000..0e25aba Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Web.HttpUtility.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Web.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Web.dll new file mode 100644 index 0000000..843b98f Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Web.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Windows.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Windows.dll new file mode 100644 index 0000000..a20673c Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Windows.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Xml.Linq.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Xml.Linq.dll new file mode 100644 index 0000000..2a9e34f Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Xml.Linq.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Xml.ReaderWriter.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..9670d72 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Xml.ReaderWriter.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Xml.Serialization.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Xml.Serialization.dll new file mode 100644 index 0000000..cf6cc77 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Xml.Serialization.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Xml.XDocument.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Xml.XDocument.dll new file mode 100644 index 0000000..4bbba7d Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Xml.XDocument.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Xml.XPath.XDocument.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Xml.XPath.XDocument.dll new file mode 100644 index 0000000..b4b3afc Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Xml.XPath.XDocument.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Xml.XPath.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Xml.XPath.dll new file mode 100644 index 0000000..118eb50 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Xml.XPath.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Xml.XmlDocument.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Xml.XmlDocument.dll new file mode 100644 index 0000000..7b2dfb0 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Xml.XmlDocument.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Xml.XmlSerializer.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Xml.XmlSerializer.dll new file mode 100644 index 0000000..7c2e989 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Xml.XmlSerializer.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Xml.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Xml.dll new file mode 100644 index 0000000..3c1948c Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.Xml.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.dll new file mode 100644 index 0000000..b26f47c Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/System.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/WindowsBase.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/WindowsBase.dll new file mode 100644 index 0000000..4409f4f Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/WindowsBase.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/createdump b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/createdump new file mode 100644 index 0000000..9b9a887 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/createdump differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libSystem.IO.Compression.Native.a b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libSystem.IO.Compression.Native.a new file mode 100644 index 0000000..18163c6 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libSystem.IO.Compression.Native.a differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libSystem.IO.Compression.Native.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libSystem.IO.Compression.Native.so new file mode 100644 index 0000000..51347ad Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libSystem.IO.Compression.Native.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libSystem.Native.a b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libSystem.Native.a new file mode 100644 index 0000000..9795516 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libSystem.Native.a differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libSystem.Native.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libSystem.Native.so new file mode 100644 index 0000000..b4b21f7 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libSystem.Native.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libSystem.Net.Security.Native.a b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libSystem.Net.Security.Native.a new file mode 100644 index 0000000..b24f246 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libSystem.Net.Security.Native.a differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libSystem.Net.Security.Native.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libSystem.Net.Security.Native.so new file mode 100644 index 0000000..8d71692 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libSystem.Net.Security.Native.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libSystem.Security.Cryptography.Native.OpenSsl.a b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libSystem.Security.Cryptography.Native.OpenSsl.a new file mode 100644 index 0000000..a3916c8 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libSystem.Security.Cryptography.Native.OpenSsl.a differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libSystem.Security.Cryptography.Native.OpenSsl.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libSystem.Security.Cryptography.Native.OpenSsl.so new file mode 100644 index 0000000..2570a5b Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libSystem.Security.Cryptography.Native.OpenSsl.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libclrjit.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libclrjit.so new file mode 100644 index 0000000..07137fa Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libclrjit.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libcoreclr.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libcoreclr.so new file mode 100644 index 0000000..0a5d9e5 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libcoreclr.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libcoreclrtraceptprovider.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libcoreclrtraceptprovider.so new file mode 100644 index 0000000..9820bd8 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libcoreclrtraceptprovider.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libdbgshim.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libdbgshim.so new file mode 100644 index 0000000..36013d7 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libdbgshim.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libhostfxr.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libhostfxr.so new file mode 100644 index 0000000..c21311e Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libhostfxr.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libhostpolicy.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libhostpolicy.so new file mode 100644 index 0000000..e3d70b3 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libhostpolicy.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libmscordaccore.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libmscordaccore.so new file mode 100644 index 0000000..13448ec Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libmscordaccore.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libmscordbi.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libmscordbi.so new file mode 100644 index 0000000..3b73e21 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/libmscordbi.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/mscorlib.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/mscorlib.dll new file mode 100644 index 0000000..19e947d Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/mscorlib.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/netstandard.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/netstandard.dll new file mode 100644 index 0000000..a98c491 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/netstandard.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/ref/Discord_Simple-Embed-Bot.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/ref/Discord_Simple-Embed-Bot.dll new file mode 100644 index 0000000..48f3e48 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/linux-x64/ref/Discord_Simple-Embed-Bot.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord.Net.Commands.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord.Net.Commands.dll new file mode 100644 index 0000000..f2cff9c Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord.Net.Commands.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord.Net.Core.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord.Net.Core.dll new file mode 100644 index 0000000..5c4ca5a Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord.Net.Core.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord.Net.Rest.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord.Net.Rest.dll new file mode 100644 index 0000000..8b87f59 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord.Net.Rest.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord.Net.WebSocket.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord.Net.WebSocket.dll new file mode 100644 index 0000000..fa3a1ea Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord.Net.WebSocket.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord.Net.Webhook.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord.Net.Webhook.dll new file mode 100644 index 0000000..d85f6c7 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord.Net.Webhook.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord_Simple-Embed-Bot b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord_Simple-Embed-Bot new file mode 100644 index 0000000..44410c0 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord_Simple-Embed-Bot 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 new file mode 100644 index 0000000..e67ebf1 --- /dev/null +++ b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord_Simple-Embed-Bot.deps.json @@ -0,0 +1,3124 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v5.0/linux-x64", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v5.0": {}, + ".NETCoreApp,Version=v5.0/linux-x64": { + "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-x64": "5.0.0" + }, + "runtime": { + "Discord_Simple-Embed-Bot.dll": {} + } + }, + "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/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", + "Discord.Net.Core": "2.3.0", + "Discord.Net.Rest": "2.3.0", + "Discord.Net.WebSocket": "2.3.0", + "Discord.Net.Webhook": "2.3.0" + } + }, + "Discord.Net.Commands/2.3.0": { + "dependencies": { + "Discord.Net.Core": "2.3.0" + }, + "runtime": { + "lib/netstandard2.1/Discord.Net.Commands.dll": { + "assemblyVersion": "2.3.0.0", + "fileVersion": "2.3.0.0" + } + } + }, + "Discord.Net.Core/2.3.0": { + "dependencies": { + "Newtonsoft.Json": "12.0.2", + "System.Collections.Immutable": "1.3.1", + "System.Interactive.Async": "4.0.0" + }, + "runtime": { + "lib/netstandard2.1/Discord.Net.Core.dll": { + "assemblyVersion": "2.3.0.0", + "fileVersion": "2.3.0.0" + } + } + }, + "Discord.Net.Rest/2.3.0": { + "dependencies": { + "Discord.Net.Core": "2.3.0" + }, + "runtime": { + "lib/netstandard2.1/Discord.Net.Rest.dll": { + "assemblyVersion": "2.3.0.0", + "fileVersion": "2.3.0.0" + } + } + }, + "Discord.Net.Webhook/2.3.0": { + "dependencies": { + "Discord.Net.Core": "2.3.0", + "Discord.Net.Rest": "2.3.0" + }, + "runtime": { + "lib/netstandard2.1/Discord.Net.Webhook.dll": { + "assemblyVersion": "2.3.0.0", + "fileVersion": "2.3.0.0" + } + } + }, + "Discord.Net.WebSocket/2.3.0": { + "dependencies": { + "Discord.Net.Core": "2.3.0", + "Discord.Net.Rest": "2.3.0" + }, + "runtime": { + "lib/netstandard2.1/Discord.Net.WebSocket.dll": { + "assemblyVersion": "2.3.0.0", + "fileVersion": "2.3.0.0" + } + } + }, + "Microsoft.NETCore.Platforms/1.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Newtonsoft.Json/12.0.2": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "12.0.0.0", + "fileVersion": "12.0.2.23222" + } + } + }, + "runtime.any.System.Collections/4.3.0": { + "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": { + "runtime": { + "lib/netstandard2.1/System.Data.SQLite.dll": { + "assemblyVersion": "1.0.113.0", + "fileVersion": "1.0.113.0" + } + }, + "native": { + "runtimes/linux-x64/native/SQLite.Interop.dll": { + "fileVersion": "0.0.0.0" + } + } + }, + "System.Collections/4.3.0": { + "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.Collections.Immutable/1.3.1": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "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": { + "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.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.Interactive.Async/4.0.0": { + "dependencies": { + "System.Linq.Async": "4.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Interactive.Async.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.2" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.any.System.IO": "4.3.0" + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Linq.Async/4.0.0": { + "runtime": { + "lib/netcoreapp3.0/System.Linq.Async.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.2" + } + } + }, + "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.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.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.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "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": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "runtime.any.System.Runtime": "4.3.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.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.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "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" + } + } + } + }, + "libraries": { + "Discord_Simple-Embed-Bot/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/5.0.0": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "Discord.Net/2.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YILjBwqYdvich6v1rfO/OhdBrdhPQB/AKEohYISdOJ+LiwfMPCafAo3YN/VutmeAGpvmrdv1fP/D0T3rHo2JrQ==", + "path": "discord.net/2.3.0", + "hashPath": "discord.net.2.3.0.nupkg.sha512" + }, + "Discord.Net.Commands/2.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-D7/kpseW53Hmni0/Vr22VElIoitFFUa0XDaIiU+HwijObBf6+rfgquWNYF9hePV+xVyY0+eQ8FOtRmBMG7Cy4A==", + "path": "discord.net.commands/2.3.0", + "hashPath": "discord.net.commands.2.3.0.nupkg.sha512" + }, + "Discord.Net.Core/2.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W5mmQ7fzlQMPmKW/sJx9CrBjdSnC/V2Ao/OukpEr4L42NgyYJUjjs5wRoxKoOLU/b6hj3Q8g0FJ5IYrmt6KSnQ==", + "path": "discord.net.core/2.3.0", + "hashPath": "discord.net.core.2.3.0.nupkg.sha512" + }, + "Discord.Net.Rest/2.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5m2nV4A9QIBtRsc7yIu9rQpc4Q7GpL6AaZ+xeAFdPx9dkUhikHIVZ0l1qqmn+pFSAUZ9e9fTsKzMfr7Loqz4aQ==", + "path": "discord.net.rest/2.3.0", + "hashPath": "discord.net.rest.2.3.0.nupkg.sha512" + }, + "Discord.Net.Webhook/2.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6DSRbYVLPDUbD7wBmMesaUbHkYud+WKxt8OeWTkifR6iR1DzSZX5i1GubmWaPsVjGYr1TA8usTepshla7Fiu9w==", + "path": "discord.net.webhook/2.3.0", + "hashPath": "discord.net.webhook.2.3.0.nupkg.sha512" + }, + "Discord.Net.WebSocket/2.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mktzQvXy9oKF3j7F8/f3v9xcUmYxXb8oMBGD4czZRn0P/BOM4cz0OdmCHr5wVyMb0W7q0VxmnfKYNsN0kGzFNA==", + "path": "discord.net.websocket/2.3.0", + "hashPath": "discord.net.websocket.2.3.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "path": "microsoft.netcore.platforms/1.1.0", + "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Newtonsoft.Json/12.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rTK0s2EKlfHsQsH6Yx2smvcTCeyoDNgCW7FEYyV01drPlh2T243PR2DiDXqtC5N4GDm4Ma/lkxfW5a/4793vbA==", + "path": "newtonsoft.json/12.0.2", + "hashPath": "newtonsoft.json.12.0.2.nupkg.sha512" + }, + "runtime.any.System.Collections/4.3.0": { + "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" + }, + "runtime.any.System.Globalization/4.3.0": { + "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" + }, + "runtime.any.System.IO/4.3.0": { + "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" + }, + "runtime.any.System.Reflection/4.3.0": { + "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" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Immutable/1.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-n+AGX7zmiZumW9aggOkXaHzUeAS3EfeTErnkKCusyONUozbTv+kMb8VE36m+ldV6kF9g57G2c641KCdgH9E0pg==", + "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, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Interactive.Async/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tYEzSDQ3rn0G7sGgjcNB91C3dDRJc8m8Lavvu88dwt8FEwKPGZdp/tFs+lQTdqHDV9UItkGIwI8Aa6gGTvzLoQ==", + "path": "system.interactive.async/4.0.0", + "hashPath": "system.interactive.async.4.0.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Async/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WbiYEedFZeM+psmMyoCt1AKbZppAZg8Eq1ZTQ+521fGNeXqlgJj0tZYV5n1LsKRO5osQuitYxGNuzPTy3213sg==", + "path": "system.linq.async/4.0.0", + "hashPath": "system.linq.async.4.0.0.nupkg.sha512" + }, + "System.Private.Uri/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==", + "path": "system.private.uri/4.3.0", + "hashPath": "system.private.uri.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + } + }, + "runtimes": { + "alpine-x64": [ + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.10-x64": [ + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.11-x64": [ + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.12-x64": [ + "alpine.3.12", + "alpine.3.11-x64", + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.6-x64": [ + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.7-x64": [ + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.8-x64": [ + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.9-x64": [ + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android-x64": [ + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.21-x64": [ + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.22-x64": [ + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.23-x64": [ + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.24-x64": [ + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.25-x64": [ + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.26-x64": [ + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.27-x64": [ + "android.27", + "android.26-x64", + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.28-x64": [ + "android.28", + "android.27-x64", + "android.27", + "android.26-x64", + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.29-x64": [ + "android.29", + "android.28-x64", + "android.28", + "android.27-x64", + "android.27", + "android.26-x64", + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "arch-x64": [ + "arch", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "centos-x64": [ + "centos", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "centos.7-x64": [ + "centos.7", + "centos-x64", + "rhel.7-x64", + "centos", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "centos.8-x64": [ + "centos.8", + "centos-x64", + "rhel.8-x64", + "centos", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "centos.9-x64": [ + "centos.9", + "centos-x64", + "rhel.9-x64", + "centos", + "rhel.9", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian-x64": [ + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian.10-x64": [ + "debian.10", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian.8-x64": [ + "debian.8", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian.9-x64": [ + "debian.9", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora-x64": [ + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.23-x64": [ + "fedora.23", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.24-x64": [ + "fedora.24", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.25-x64": [ + "fedora.25", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.26-x64": [ + "fedora.26", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.27-x64": [ + "fedora.27", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.28-x64": [ + "fedora.28", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.29-x64": [ + "fedora.29", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.30-x64": [ + "fedora.30", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.31-x64": [ + "fedora.31", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.32-x64": [ + "fedora.32", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.33-x64": [ + "fedora.33", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.34-x64": [ + "fedora.34", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "gentoo-x64": [ + "gentoo", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linux-musl-x64": [ + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linux-x64": [ + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.17-x64": [ + "linuxmint.17", + "ubuntu.14.04-x64", + "ubuntu.14.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.17.1-x64": [ + "linuxmint.17.1", + "linuxmint.17-x64", + "linuxmint.17", + "ubuntu.14.04-x64", + "ubuntu.14.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.17.2-x64": [ + "linuxmint.17.2", + "linuxmint.17.1-x64", + "linuxmint.17.1", + "linuxmint.17-x64", + "linuxmint.17", + "ubuntu.14.04-x64", + "ubuntu.14.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.17.3-x64": [ + "linuxmint.17.3", + "linuxmint.17.2-x64", + "linuxmint.17.2", + "linuxmint.17.1-x64", + "linuxmint.17.1", + "linuxmint.17-x64", + "linuxmint.17", + "ubuntu.14.04-x64", + "ubuntu.14.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.18-x64": [ + "linuxmint.18", + "ubuntu.16.04-x64", + "ubuntu.16.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.18.1-x64": [ + "linuxmint.18.1", + "linuxmint.18-x64", + "linuxmint.18", + "ubuntu.16.04-x64", + "ubuntu.16.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.18.2-x64": [ + "linuxmint.18.2", + "linuxmint.18.1-x64", + "linuxmint.18.1", + "linuxmint.18-x64", + "linuxmint.18", + "ubuntu.16.04-x64", + "ubuntu.16.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.18.3-x64": [ + "linuxmint.18.3", + "linuxmint.18.2-x64", + "linuxmint.18.2", + "linuxmint.18.1-x64", + "linuxmint.18.1", + "linuxmint.18-x64", + "linuxmint.18", + "ubuntu.16.04-x64", + "ubuntu.16.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.19-x64": [ + "linuxmint.19", + "ubuntu.18.04-x64", + "ubuntu.18.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.19.1-x64": [ + "linuxmint.19.1", + "linuxmint.19-x64", + "linuxmint.19", + "ubuntu.18.04-x64", + "ubuntu.18.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.19.2-x64": [ + "linuxmint.19.2", + "linuxmint.19.1-x64", + "linuxmint.19.1", + "linuxmint.19-x64", + "linuxmint.19", + "ubuntu.18.04-x64", + "ubuntu.18.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol-x64": [ + "ol", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7-x64": [ + "ol.7", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.0-x64": [ + "ol.7.0", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.1-x64": [ + "ol.7.1", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.2-x64": [ + "ol.7.2", + "ol.7.1-x64", + "rhel.7.2-x64", + "ol.7.1", + "rhel.7.2", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.3-x64": [ + "ol.7.3", + "ol.7.2-x64", + "rhel.7.3-x64", + "ol.7.2", + "rhel.7.3", + "ol.7.1-x64", + "rhel.7.2-x64", + "ol.7.1", + "rhel.7.2", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.4-x64": [ + "ol.7.4", + "ol.7.3-x64", + "rhel.7.4-x64", + "ol.7.3", + "rhel.7.4", + "ol.7.2-x64", + "rhel.7.3-x64", + "ol.7.2", + "rhel.7.3", + "ol.7.1-x64", + "rhel.7.2-x64", + "ol.7.1", + "rhel.7.2", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.5-x64": [ + "ol.7.5", + "ol.7.4-x64", + "rhel.7.5-x64", + "ol.7.4", + "rhel.7.5", + "ol.7.3-x64", + "rhel.7.4-x64", + "ol.7.3", + "rhel.7.4", + "ol.7.2-x64", + "rhel.7.3-x64", + "ol.7.2", + "rhel.7.3", + "ol.7.1-x64", + "rhel.7.2-x64", + "ol.7.1", + "rhel.7.2", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.6-x64": [ + "ol.7.6", + "ol.7.5-x64", + "rhel.7.6-x64", + "ol.7.5", + "rhel.7.6", + "ol.7.4-x64", + "rhel.7.5-x64", + "ol.7.4", + "rhel.7.5", + "ol.7.3-x64", + "rhel.7.4-x64", + "ol.7.3", + "rhel.7.4", + "ol.7.2-x64", + "rhel.7.3-x64", + "ol.7.2", + "rhel.7.3", + "ol.7.1-x64", + "rhel.7.2-x64", + "ol.7.1", + "rhel.7.2", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.8-x64": [ + "ol.8", + "ol-x64", + "rhel.8-x64", + "ol", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.8.0-x64": [ + "ol.8.0", + "ol.8-x64", + "rhel.8.0-x64", + "ol.8", + "rhel.8.0", + "ol-x64", + "rhel.8-x64", + "ol", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse-x64": [ + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.13.2-x64": [ + "opensuse.13.2", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.15.0-x64": [ + "opensuse.15.0", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.15.1-x64": [ + "opensuse.15.1", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.42.1-x64": [ + "opensuse.42.1", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.42.2-x64": [ + "opensuse.42.2", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.42.3-x64": [ + "opensuse.42.3", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel-x64": [ + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.6-x64": [ + "rhel.6", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7-x64": [ + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.0-x64": [ + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.1-x64": [ + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.2-x64": [ + "rhel.7.2", + "rhel.7.1-x64", + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.3-x64": [ + "rhel.7.3", + "rhel.7.2-x64", + "rhel.7.2", + "rhel.7.1-x64", + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.4-x64": [ + "rhel.7.4", + "rhel.7.3-x64", + "rhel.7.3", + "rhel.7.2-x64", + "rhel.7.2", + "rhel.7.1-x64", + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.5-x64": [ + "rhel.7.5", + "rhel.7.4-x64", + "rhel.7.4", + "rhel.7.3-x64", + "rhel.7.3", + "rhel.7.2-x64", + "rhel.7.2", + "rhel.7.1-x64", + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.6-x64": [ + "rhel.7.6", + "rhel.7.5-x64", + "rhel.7.5", + "rhel.7.4-x64", + "rhel.7.4", + "rhel.7.3-x64", + "rhel.7.3", + "rhel.7.2-x64", + "rhel.7.2", + "rhel.7.1-x64", + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.8-x64": [ + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.8.0-x64": [ + "rhel.8.0", + "rhel.8-x64", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.8.1-x64": [ + "rhel.8.1", + "rhel.8.0-x64", + "rhel.8.0", + "rhel.8-x64", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.9-x64": [ + "rhel.9", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles-x64": [ + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.12-x64": [ + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.12.1-x64": [ + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.12.2-x64": [ + "sles.12.2", + "sles.12.1-x64", + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.12.3-x64": [ + "sles.12.3", + "sles.12.2-x64", + "sles.12.2", + "sles.12.1-x64", + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.12.4-x64": [ + "sles.12.4", + "sles.12.3-x64", + "sles.12.3", + "sles.12.2-x64", + "sles.12.2", + "sles.12.1-x64", + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.15-x64": [ + "sles.15", + "sles.12.4-x64", + "sles.12.4", + "sles.12.3-x64", + "sles.12.3", + "sles.12.2-x64", + "sles.12.2", + "sles.12.1-x64", + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.15.1-x64": [ + "sles.15.1", + "sles.15-x64", + "sles.15", + "sles.12.4-x64", + "sles.12.4", + "sles.12.3-x64", + "sles.12.3", + "sles.12.2-x64", + "sles.12.2", + "sles.12.1-x64", + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu-x64": [ + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.14.04-x64": [ + "ubuntu.14.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.14.10-x64": [ + "ubuntu.14.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.15.04-x64": [ + "ubuntu.15.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.15.10-x64": [ + "ubuntu.15.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.16.04-x64": [ + "ubuntu.16.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.16.10-x64": [ + "ubuntu.16.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.17.04-x64": [ + "ubuntu.17.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.17.10-x64": [ + "ubuntu.17.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.18.04-x64": [ + "ubuntu.18.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.18.10-x64": [ + "ubuntu.18.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.19.04-x64": [ + "ubuntu.19.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.19.10-x64": [ + "ubuntu.19.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.20.04-x64": [ + "ubuntu.20.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.20.10-x64": [ + "ubuntu.20.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.21.04-x64": [ + "ubuntu.21.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.21.10-x64": [ + "ubuntu.21.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "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 new file mode 100644 index 0000000..d8694ff Binary files /dev/null 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.pdb b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord_Simple-Embed-Bot.pdb new file mode 100644 index 0000000..3bd3bc8 Binary files /dev/null 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 new file mode 100644 index 0000000..d435d2c --- /dev/null +++ b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Discord_Simple-Embed-Bot.runtimeconfig.json @@ -0,0 +1,11 @@ +{ + "runtimeOptions": { + "tfm": "net5.0", + "includedFrameworks": [ + { + "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.CSharp.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Microsoft.CSharp.dll new file mode 100644 index 0000000..3675158 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Microsoft.CSharp.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Microsoft.VisualBasic.Core.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Microsoft.VisualBasic.Core.dll new file mode 100644 index 0000000..27a2362 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Microsoft.VisualBasic.Core.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Microsoft.VisualBasic.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Microsoft.VisualBasic.dll new file mode 100644 index 0000000..68e01fd Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Microsoft.VisualBasic.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Microsoft.Win32.Primitives.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Microsoft.Win32.Primitives.dll new file mode 100644 index 0000000..bdbd4d0 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Microsoft.Win32.Primitives.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Microsoft.Win32.Registry.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Microsoft.Win32.Registry.dll new file mode 100644 index 0000000..e2dabbd Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Microsoft.Win32.Registry.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Newtonsoft.Json.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Newtonsoft.Json.dll new file mode 100644 index 0000000..b8ea6e0 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/Newtonsoft.Json.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/SQLite.Interop.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/SQLite.Interop.dll new file mode 100644 index 0000000..6895e0f Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/SQLite.Interop.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.AppContext.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.AppContext.dll new file mode 100644 index 0000000..794cf86 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.AppContext.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Buffers.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Buffers.dll new file mode 100644 index 0000000..3f2f47f Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Buffers.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Collections.Concurrent.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Collections.Concurrent.dll new file mode 100644 index 0000000..07775e8 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Collections.Concurrent.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Collections.Immutable.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Collections.Immutable.dll new file mode 100644 index 0000000..be6b241 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Collections.Immutable.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Collections.NonGeneric.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Collections.NonGeneric.dll new file mode 100644 index 0000000..c394350 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Collections.NonGeneric.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Collections.Specialized.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Collections.Specialized.dll new file mode 100644 index 0000000..4eaa681 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Collections.Specialized.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Collections.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Collections.dll new file mode 100644 index 0000000..a8d425b Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Collections.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.ComponentModel.Annotations.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.ComponentModel.Annotations.dll new file mode 100644 index 0000000..bb9cffa Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.ComponentModel.Annotations.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.ComponentModel.DataAnnotations.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.ComponentModel.DataAnnotations.dll new file mode 100644 index 0000000..b7683fc Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.ComponentModel.DataAnnotations.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.ComponentModel.EventBasedAsync.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.ComponentModel.EventBasedAsync.dll new file mode 100644 index 0000000..c078923 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.ComponentModel.EventBasedAsync.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.ComponentModel.Primitives.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.ComponentModel.Primitives.dll new file mode 100644 index 0000000..c9cc71f Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.ComponentModel.Primitives.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.ComponentModel.TypeConverter.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.ComponentModel.TypeConverter.dll new file mode 100644 index 0000000..e000128 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.ComponentModel.TypeConverter.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.ComponentModel.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.ComponentModel.dll new file mode 100644 index 0000000..8c24975 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.ComponentModel.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Configuration.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Configuration.dll new file mode 100644 index 0000000..d41c187 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Configuration.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Console.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Console.dll new file mode 100644 index 0000000..561bb17 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Console.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Core.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Core.dll new file mode 100644 index 0000000..411aad5 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Core.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Data.Common.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Data.Common.dll new file mode 100644 index 0000000..8d20ce8 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Data.Common.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Data.DataSetExtensions.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Data.DataSetExtensions.dll new file mode 100644 index 0000000..26fa379 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Data.DataSetExtensions.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Data.SQLite.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Data.SQLite.dll new file mode 100644 index 0000000..e0ce3ba Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Data.SQLite.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Data.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Data.dll new file mode 100644 index 0000000..e6a3df1 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Data.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Diagnostics.Contracts.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Diagnostics.Contracts.dll new file mode 100644 index 0000000..42f666b Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Diagnostics.Contracts.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Diagnostics.Debug.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Diagnostics.Debug.dll new file mode 100644 index 0000000..c1e6455 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Diagnostics.Debug.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Diagnostics.DiagnosticSource.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000..7413120 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Diagnostics.DiagnosticSource.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Diagnostics.FileVersionInfo.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Diagnostics.FileVersionInfo.dll new file mode 100644 index 0000000..d0826d4 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Diagnostics.FileVersionInfo.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Diagnostics.Process.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Diagnostics.Process.dll new file mode 100644 index 0000000..88867a4 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Diagnostics.Process.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Diagnostics.StackTrace.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Diagnostics.StackTrace.dll new file mode 100644 index 0000000..82b947f Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Diagnostics.StackTrace.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Diagnostics.TextWriterTraceListener.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Diagnostics.TextWriterTraceListener.dll new file mode 100644 index 0000000..b4738a8 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Diagnostics.Tools.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Diagnostics.Tools.dll new file mode 100644 index 0000000..657aaa2 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Diagnostics.Tools.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Diagnostics.TraceSource.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Diagnostics.TraceSource.dll new file mode 100644 index 0000000..f5b7269 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Diagnostics.TraceSource.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Diagnostics.Tracing.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Diagnostics.Tracing.dll new file mode 100644 index 0000000..1d35654 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Diagnostics.Tracing.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Drawing.Primitives.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Drawing.Primitives.dll new file mode 100644 index 0000000..2c240ca Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Drawing.Primitives.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Drawing.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Drawing.dll new file mode 100644 index 0000000..24073b3 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Drawing.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Dynamic.Runtime.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Dynamic.Runtime.dll new file mode 100644 index 0000000..59a2ee2 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Dynamic.Runtime.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Formats.Asn1.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Formats.Asn1.dll new file mode 100644 index 0000000..04b8fa5 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Formats.Asn1.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Globalization.Calendars.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Globalization.Calendars.dll new file mode 100644 index 0000000..80fd8e4 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Globalization.Calendars.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Globalization.Extensions.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Globalization.Extensions.dll new file mode 100644 index 0000000..a4307c4 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Globalization.Extensions.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Globalization.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Globalization.dll new file mode 100644 index 0000000..010d02b Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Globalization.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.Compression.Brotli.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.Compression.Brotli.dll new file mode 100644 index 0000000..f0ffae2 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.Compression.Brotli.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.Compression.FileSystem.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.Compression.FileSystem.dll new file mode 100644 index 0000000..39e1523 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.Compression.FileSystem.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.Compression.ZipFile.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.Compression.ZipFile.dll new file mode 100644 index 0000000..2592d83 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.Compression.ZipFile.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.Compression.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.Compression.dll new file mode 100644 index 0000000..4915045 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.Compression.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.FileSystem.AccessControl.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.FileSystem.AccessControl.dll new file mode 100644 index 0000000..abf6291 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.FileSystem.AccessControl.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.FileSystem.DriveInfo.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.FileSystem.DriveInfo.dll new file mode 100644 index 0000000..893b022 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.FileSystem.DriveInfo.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.FileSystem.Primitives.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.FileSystem.Primitives.dll new file mode 100644 index 0000000..5105835 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.FileSystem.Primitives.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.FileSystem.Watcher.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.FileSystem.Watcher.dll new file mode 100644 index 0000000..0231361 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.FileSystem.Watcher.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.FileSystem.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.FileSystem.dll new file mode 100644 index 0000000..63a0489 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.FileSystem.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.IsolatedStorage.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.IsolatedStorage.dll new file mode 100644 index 0000000..90ae1de Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.IsolatedStorage.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.MemoryMappedFiles.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.MemoryMappedFiles.dll new file mode 100644 index 0000000..ef71cd5 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.MemoryMappedFiles.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.Pipes.AccessControl.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.Pipes.AccessControl.dll new file mode 100644 index 0000000..3c30b1f Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.Pipes.AccessControl.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.Pipes.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.Pipes.dll new file mode 100644 index 0000000..1df2936 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.Pipes.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.UnmanagedMemoryStream.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.UnmanagedMemoryStream.dll new file mode 100644 index 0000000..06b7bb7 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.UnmanagedMemoryStream.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.dll new file mode 100644 index 0000000..2e0a5f0 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.IO.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Interactive.Async.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Interactive.Async.dll new file mode 100644 index 0000000..55a35f5 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Interactive.Async.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Linq.Async.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Linq.Async.dll new file mode 100644 index 0000000..165b555 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Linq.Async.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Linq.Expressions.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Linq.Expressions.dll new file mode 100644 index 0000000..db85794 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Linq.Expressions.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Linq.Parallel.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Linq.Parallel.dll new file mode 100644 index 0000000..c601d0e Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Linq.Parallel.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Linq.Queryable.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Linq.Queryable.dll new file mode 100644 index 0000000..6eda159 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Linq.Queryable.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Linq.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Linq.dll new file mode 100644 index 0000000..62012c4 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Linq.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Memory.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Memory.dll new file mode 100644 index 0000000..1942710 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Memory.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.Http.Json.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.Http.Json.dll new file mode 100644 index 0000000..0d24a42 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.Http.Json.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.Http.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.Http.dll new file mode 100644 index 0000000..1729647 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.Http.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.HttpListener.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.HttpListener.dll new file mode 100644 index 0000000..d87c5e8 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.HttpListener.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.Mail.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.Mail.dll new file mode 100644 index 0000000..c744805 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.Mail.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.NameResolution.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.NameResolution.dll new file mode 100644 index 0000000..e664634 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.NameResolution.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.NetworkInformation.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.NetworkInformation.dll new file mode 100644 index 0000000..473507f Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.NetworkInformation.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.Ping.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.Ping.dll new file mode 100644 index 0000000..07e23d5 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.Ping.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.Primitives.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.Primitives.dll new file mode 100644 index 0000000..44eb483 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.Primitives.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.Requests.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.Requests.dll new file mode 100644 index 0000000..d8c316f Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.Requests.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.Security.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.Security.dll new file mode 100644 index 0000000..be71e7a Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.Security.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.ServicePoint.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.ServicePoint.dll new file mode 100644 index 0000000..8dd4f19 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.ServicePoint.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.Sockets.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.Sockets.dll new file mode 100644 index 0000000..d464585 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.Sockets.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.WebClient.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.WebClient.dll new file mode 100644 index 0000000..c633b97 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.WebClient.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.WebHeaderCollection.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.WebHeaderCollection.dll new file mode 100644 index 0000000..2e3edfd Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.WebHeaderCollection.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.WebProxy.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.WebProxy.dll new file mode 100644 index 0000000..b3c99d6 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.WebProxy.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.WebSockets.Client.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.WebSockets.Client.dll new file mode 100644 index 0000000..8fe6ad4 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.WebSockets.Client.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.WebSockets.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.WebSockets.dll new file mode 100644 index 0000000..a59b2ad Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.WebSockets.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.dll new file mode 100644 index 0000000..ed8bf2f Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Net.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Numerics.Vectors.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Numerics.Vectors.dll new file mode 100644 index 0000000..3d9eeeb Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Numerics.Vectors.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Numerics.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Numerics.dll new file mode 100644 index 0000000..1bfaaf3 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Numerics.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.ObjectModel.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.ObjectModel.dll new file mode 100644 index 0000000..566991a Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.ObjectModel.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Private.CoreLib.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Private.CoreLib.dll new file mode 100644 index 0000000..d47ed52 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Private.CoreLib.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Private.DataContractSerialization.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Private.DataContractSerialization.dll new file mode 100644 index 0000000..b12d9fc Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Private.DataContractSerialization.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Private.Uri.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Private.Uri.dll new file mode 100644 index 0000000..db350d2 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Private.Uri.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Private.Xml.Linq.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Private.Xml.Linq.dll new file mode 100644 index 0000000..5c2209b Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Private.Xml.Linq.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Private.Xml.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Private.Xml.dll new file mode 100644 index 0000000..526110d Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Private.Xml.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Reflection.DispatchProxy.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Reflection.DispatchProxy.dll new file mode 100644 index 0000000..a3703e1 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Reflection.DispatchProxy.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Reflection.Emit.ILGeneration.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Reflection.Emit.ILGeneration.dll new file mode 100644 index 0000000..0436980 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Reflection.Emit.ILGeneration.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Reflection.Emit.Lightweight.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Reflection.Emit.Lightweight.dll new file mode 100644 index 0000000..1924b16 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Reflection.Emit.Lightweight.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Reflection.Emit.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Reflection.Emit.dll new file mode 100644 index 0000000..8b5d480 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Reflection.Emit.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Reflection.Extensions.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Reflection.Extensions.dll new file mode 100644 index 0000000..e1ed5b2 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Reflection.Extensions.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Reflection.Metadata.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Reflection.Metadata.dll new file mode 100644 index 0000000..2f40106 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Reflection.Metadata.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Reflection.Primitives.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Reflection.Primitives.dll new file mode 100644 index 0000000..33e2a8b Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Reflection.Primitives.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Reflection.TypeExtensions.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Reflection.TypeExtensions.dll new file mode 100644 index 0000000..f40a5b0 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Reflection.TypeExtensions.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Reflection.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Reflection.dll new file mode 100644 index 0000000..f0b96e5 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Reflection.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Resources.Reader.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Resources.Reader.dll new file mode 100644 index 0000000..30bb961 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Resources.Reader.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Resources.ResourceManager.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Resources.ResourceManager.dll new file mode 100644 index 0000000..e6d9d35 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Resources.ResourceManager.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Resources.Writer.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Resources.Writer.dll new file mode 100644 index 0000000..21ab4a5 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Resources.Writer.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.CompilerServices.Unsafe.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.CompilerServices.Unsafe.dll new file mode 100644 index 0000000..2e859b5 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.CompilerServices.VisualC.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.CompilerServices.VisualC.dll new file mode 100644 index 0000000..7b85355 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.Extensions.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.Extensions.dll new file mode 100644 index 0000000..b47a903 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.Extensions.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.Handles.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.Handles.dll new file mode 100644 index 0000000..159094f Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.Handles.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.InteropServices.RuntimeInformation.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100644 index 0000000..d1820d6 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.InteropServices.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.InteropServices.dll new file mode 100644 index 0000000..65825e7 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.InteropServices.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.Intrinsics.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.Intrinsics.dll new file mode 100644 index 0000000..a33be44 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.Intrinsics.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.Loader.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.Loader.dll new file mode 100644 index 0000000..46e97aa Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.Loader.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.Numerics.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.Numerics.dll new file mode 100644 index 0000000..36d5d65 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.Numerics.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.Serialization.Formatters.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.Serialization.Formatters.dll new file mode 100644 index 0000000..01f0b2d Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.Serialization.Formatters.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.Serialization.Json.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.Serialization.Json.dll new file mode 100644 index 0000000..3abb6e8 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.Serialization.Json.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.Serialization.Primitives.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 0000000..fb6d042 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.Serialization.Primitives.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.Serialization.Xml.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.Serialization.Xml.dll new file mode 100644 index 0000000..c79af85 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.Serialization.Xml.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.Serialization.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.Serialization.dll new file mode 100644 index 0000000..db4a823 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.Serialization.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.dll new file mode 100644 index 0000000..945b58e Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Runtime.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.AccessControl.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.AccessControl.dll new file mode 100644 index 0000000..d3f373b Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.AccessControl.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.Claims.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.Claims.dll new file mode 100644 index 0000000..ab6edf3 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.Claims.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.Cryptography.Algorithms.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 0000000..0226bf1 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.Cryptography.Algorithms.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.Cryptography.Cng.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.Cryptography.Cng.dll new file mode 100644 index 0000000..367ed17 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.Cryptography.Cng.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.Cryptography.Csp.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.Cryptography.Csp.dll new file mode 100644 index 0000000..e604ed8 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.Cryptography.Csp.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.Cryptography.Encoding.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.Cryptography.Encoding.dll new file mode 100644 index 0000000..feada2d Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.Cryptography.Encoding.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.Cryptography.OpenSsl.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.Cryptography.OpenSsl.dll new file mode 100644 index 0000000..165ed73 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.Cryptography.OpenSsl.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.Cryptography.Primitives.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.Cryptography.Primitives.dll new file mode 100644 index 0000000..617a35a Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.Cryptography.Primitives.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.Cryptography.X509Certificates.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.Cryptography.X509Certificates.dll new file mode 100644 index 0000000..d67f7ec Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.Cryptography.X509Certificates.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.Principal.Windows.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.Principal.Windows.dll new file mode 100644 index 0000000..829d955 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.Principal.Windows.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.Principal.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.Principal.dll new file mode 100644 index 0000000..86ac0a3 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.Principal.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.SecureString.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.SecureString.dll new file mode 100644 index 0000000..d0f6701 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.SecureString.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.dll new file mode 100644 index 0000000..ac0968b Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Security.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.ServiceModel.Web.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.ServiceModel.Web.dll new file mode 100644 index 0000000..cb14ee3 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.ServiceModel.Web.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.ServiceProcess.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.ServiceProcess.dll new file mode 100644 index 0000000..c2e9d7d Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.ServiceProcess.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Text.Encoding.CodePages.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Text.Encoding.CodePages.dll new file mode 100644 index 0000000..4964e45 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Text.Encoding.CodePages.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Text.Encoding.Extensions.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Text.Encoding.Extensions.dll new file mode 100644 index 0000000..8d61973 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Text.Encoding.Extensions.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Text.Encoding.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Text.Encoding.dll new file mode 100644 index 0000000..531aa11 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Text.Encoding.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Text.Encodings.Web.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..6786b0a Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Text.Encodings.Web.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Text.Json.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Text.Json.dll new file mode 100644 index 0000000..ca22659 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Text.Json.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Text.RegularExpressions.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Text.RegularExpressions.dll new file mode 100644 index 0000000..3fdc15e Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Text.RegularExpressions.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Threading.Channels.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Threading.Channels.dll new file mode 100644 index 0000000..5ecafd1 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Threading.Channels.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Threading.Overlapped.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Threading.Overlapped.dll new file mode 100644 index 0000000..8f1b46d Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Threading.Overlapped.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Threading.Tasks.Dataflow.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Threading.Tasks.Dataflow.dll new file mode 100644 index 0000000..5664d3a Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Threading.Tasks.Dataflow.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Threading.Tasks.Extensions.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Threading.Tasks.Extensions.dll new file mode 100644 index 0000000..3e075e1 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Threading.Tasks.Extensions.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Threading.Tasks.Parallel.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Threading.Tasks.Parallel.dll new file mode 100644 index 0000000..8ffe28b Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Threading.Tasks.Parallel.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Threading.Tasks.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Threading.Tasks.dll new file mode 100644 index 0000000..8056611 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Threading.Tasks.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Threading.Thread.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Threading.Thread.dll new file mode 100644 index 0000000..f90c349 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Threading.Thread.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Threading.ThreadPool.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Threading.ThreadPool.dll new file mode 100644 index 0000000..3b60d9c Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Threading.ThreadPool.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Threading.Timer.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Threading.Timer.dll new file mode 100644 index 0000000..8bcc0a1 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Threading.Timer.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Threading.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Threading.dll new file mode 100644 index 0000000..cec2a6e Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Threading.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Transactions.Local.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Transactions.Local.dll new file mode 100644 index 0000000..5c55a80 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Transactions.Local.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Transactions.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Transactions.dll new file mode 100644 index 0000000..cd78755 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Transactions.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.ValueTuple.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.ValueTuple.dll new file mode 100644 index 0000000..efa8fed Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.ValueTuple.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Web.HttpUtility.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Web.HttpUtility.dll new file mode 100644 index 0000000..0e25aba Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Web.HttpUtility.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Web.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Web.dll new file mode 100644 index 0000000..843b98f Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Web.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Windows.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Windows.dll new file mode 100644 index 0000000..a20673c Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Windows.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Xml.Linq.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Xml.Linq.dll new file mode 100644 index 0000000..2a9e34f Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Xml.Linq.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Xml.ReaderWriter.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..9670d72 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Xml.ReaderWriter.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Xml.Serialization.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Xml.Serialization.dll new file mode 100644 index 0000000..cf6cc77 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Xml.Serialization.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Xml.XDocument.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Xml.XDocument.dll new file mode 100644 index 0000000..4bbba7d Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Xml.XDocument.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Xml.XPath.XDocument.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Xml.XPath.XDocument.dll new file mode 100644 index 0000000..b4b3afc Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Xml.XPath.XDocument.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Xml.XPath.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Xml.XPath.dll new file mode 100644 index 0000000..118eb50 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Xml.XPath.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Xml.XmlDocument.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Xml.XmlDocument.dll new file mode 100644 index 0000000..7b2dfb0 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Xml.XmlDocument.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Xml.XmlSerializer.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Xml.XmlSerializer.dll new file mode 100644 index 0000000..7c2e989 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Xml.XmlSerializer.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Xml.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Xml.dll new file mode 100644 index 0000000..3c1948c Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.Xml.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.dll new file mode 100644 index 0000000..b26f47c Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/System.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/WindowsBase.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/WindowsBase.dll new file mode 100644 index 0000000..4409f4f Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/WindowsBase.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/createdump b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/createdump new file mode 100644 index 0000000..9b9a887 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/createdump differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libSystem.IO.Compression.Native.a b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libSystem.IO.Compression.Native.a new file mode 100644 index 0000000..18163c6 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libSystem.IO.Compression.Native.a differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libSystem.IO.Compression.Native.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libSystem.IO.Compression.Native.so new file mode 100644 index 0000000..51347ad Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libSystem.IO.Compression.Native.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libSystem.Native.a b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libSystem.Native.a new file mode 100644 index 0000000..9795516 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libSystem.Native.a differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libSystem.Native.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libSystem.Native.so new file mode 100644 index 0000000..b4b21f7 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libSystem.Native.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libSystem.Net.Security.Native.a b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libSystem.Net.Security.Native.a new file mode 100644 index 0000000..b24f246 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libSystem.Net.Security.Native.a differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libSystem.Net.Security.Native.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libSystem.Net.Security.Native.so new file mode 100644 index 0000000..8d71692 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libSystem.Net.Security.Native.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libSystem.Security.Cryptography.Native.OpenSsl.a b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libSystem.Security.Cryptography.Native.OpenSsl.a new file mode 100644 index 0000000..a3916c8 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libSystem.Security.Cryptography.Native.OpenSsl.a differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libSystem.Security.Cryptography.Native.OpenSsl.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libSystem.Security.Cryptography.Native.OpenSsl.so new file mode 100644 index 0000000..2570a5b Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libSystem.Security.Cryptography.Native.OpenSsl.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libclrjit.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libclrjit.so new file mode 100644 index 0000000..07137fa Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libclrjit.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libcoreclr.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libcoreclr.so new file mode 100644 index 0000000..0a5d9e5 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libcoreclr.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libcoreclrtraceptprovider.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libcoreclrtraceptprovider.so new file mode 100644 index 0000000..9820bd8 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libcoreclrtraceptprovider.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libdbgshim.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libdbgshim.so new file mode 100644 index 0000000..36013d7 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libdbgshim.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libhostfxr.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libhostfxr.so new file mode 100644 index 0000000..c21311e Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libhostfxr.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libhostpolicy.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libhostpolicy.so new file mode 100644 index 0000000..e3d70b3 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libhostpolicy.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libmscordaccore.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libmscordaccore.so new file mode 100644 index 0000000..13448ec Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libmscordaccore.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libmscordbi.so b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libmscordbi.so new file mode 100644 index 0000000..3b73e21 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/libmscordbi.so differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/mscorlib.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/mscorlib.dll new file mode 100644 index 0000000..19e947d Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/mscorlib.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/netstandard.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/netstandard.dll new file mode 100644 index 0000000..a98c491 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/publish/netstandard.dll differ diff --git a/Discord_Simple-Embed-Bot/bin/Release/net5.0/ref/Discord_Simple-Embed-Bot.dll b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ref/Discord_Simple-Embed-Bot.dll new file mode 100644 index 0000000..97cf36b Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/ref/Discord_Simple-Embed-Bot.dll 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 new file mode 100644 index 0000000..6895e0f Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/linux-x64/native/SQLite.Interop.dll 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 new file mode 100644 index 0000000..de72b88 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/osx-x64/native/SQLite.Interop.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 new file mode 100644 index 0000000..9a745b7 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/win-x64/native/SQLite.Interop.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 new file mode 100644 index 0000000..35bdfe6 Binary files /dev/null and b/Discord_Simple-Embed-Bot/bin/Release/net5.0/runtimes/win-x86/native/SQLite.Interop.dll differ diff --git a/Discord_Simple-Embed-Bot/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/Discord_Simple-Embed-Bot/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2f7e5ec --- /dev/null +++ b/Discord_Simple-Embed-Bot/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// <autogenerated /> +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.AssemblyInfo.cs b/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.AssemblyInfo.cs new file mode 100644 index 0000000..8f15fed --- /dev/null +++ b/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// <auto-generated> +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// </auto-generated> +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Discord_Simple-Embed-Bot")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Discord_Simple-Embed-Bot")] +[assembly: System.Reflection.AssemblyTitleAttribute("Discord_Simple-Embed-Bot")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Von der MSBuild WriteCodeFragment-Klasse generiert. + diff --git a/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.AssemblyInfoInputs.cache b/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fb0eb04 --- /dev/null +++ b/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +dda242a47371062bc60617bf640b13a9f8215987 diff --git a/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.GeneratedMSBuildEditorConfig.editorconfig b/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d7e2983 --- /dev/null +++ b/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,8 @@ +is_global = true +build_property.TargetFramework = net5.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.PublishSingleFile = +build_property.IncludeAllContentForSelfExtract = +build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows 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 new file mode 100644 index 0000000..1e674e3 Binary files /dev/null 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.CopyComplete b/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 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 new file mode 100644 index 0000000..ea9074e --- /dev/null +++ b/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +1eb6d2e13bbb6a533f4118a46962c1047e1cffb0 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 new file mode 100644 index 0000000..b13de2e --- /dev/null +++ b/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.csproj.FileListAbsolute.txt @@ -0,0 +1,30 @@ +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\obj\Debug\net5.0\Discord_Simple-Embed-Bot.csprojAssemblyReference.cache +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\obj\Debug\net5.0\Discord_Simple-Embed-Bot.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\obj\Debug\net5.0\Discord_Simple-Embed-Bot.AssemblyInfoInputs.cache +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\obj\Debug\net5.0\Discord_Simple-Embed-Bot.AssemblyInfo.cs +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\obj\Debug\net5.0\Discord_Simple-Embed-Bot.csproj.CoreCompileInputs.cache +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\Discord_Simple-Embed-Bot.exe +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\Discord_Simple-Embed-Bot.deps.json +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\Discord_Simple-Embed-Bot.runtimeconfig.json +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\Discord_Simple-Embed-Bot.runtimeconfig.dev.json +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\Discord_Simple-Embed-Bot.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\ref\Discord_Simple-Embed-Bot.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\Discord_Simple-Embed-Bot.pdb +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\Discord.Net.Commands.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\Discord.Net.Core.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Debug\net5.0\Discord.Net.Rest.dll +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 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 new file mode 100644 index 0000000..dff12fe Binary files /dev/null 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 new file mode 100644 index 0000000..01b7f2d Binary files /dev/null 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.genruntimeconfig.cache b/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.genruntimeconfig.cache new file mode 100644 index 0000000..a59fac5 --- /dev/null +++ b/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.genruntimeconfig.cache @@ -0,0 +1 @@ +61edb3ffec538ae3e5c72d4a294a32e29188315b 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 new file mode 100644 index 0000000..49e4b2e Binary files /dev/null and b/Discord_Simple-Embed-Bot/obj/Debug/net5.0/Discord_Simple-Embed-Bot.pdb differ diff --git a/Discord_Simple-Embed-Bot/obj/Debug/net5.0/apphost.exe b/Discord_Simple-Embed-Bot/obj/Debug/net5.0/apphost.exe new file mode 100644 index 0000000..59acf2f Binary files /dev/null and b/Discord_Simple-Embed-Bot/obj/Debug/net5.0/apphost.exe differ diff --git a/Discord_Simple-Embed-Bot/obj/Debug/net5.0/ref/Discord_Simple-Embed-Bot.dll b/Discord_Simple-Embed-Bot/obj/Debug/net5.0/ref/Discord_Simple-Embed-Bot.dll new file mode 100644 index 0000000..e4596d6 Binary files /dev/null and b/Discord_Simple-Embed-Bot/obj/Debug/net5.0/ref/Discord_Simple-Embed-Bot.dll differ diff --git a/Discord_Simple-Embed-Bot/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/Discord_Simple-Embed-Bot/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs new file mode 100644 index 0000000..ad8dfe1 --- /dev/null +++ b/Discord_Simple-Embed-Bot/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// <autogenerated /> +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] diff --git a/Discord_Simple-Embed-Bot/obj/Debug/netcoreapp3.1/Discord_Simple-Embed-Bot.AssemblyInfo.cs b/Discord_Simple-Embed-Bot/obj/Debug/netcoreapp3.1/Discord_Simple-Embed-Bot.AssemblyInfo.cs new file mode 100644 index 0000000..8f15fed --- /dev/null +++ b/Discord_Simple-Embed-Bot/obj/Debug/netcoreapp3.1/Discord_Simple-Embed-Bot.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// <auto-generated> +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// </auto-generated> +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Discord_Simple-Embed-Bot")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Discord_Simple-Embed-Bot")] +[assembly: System.Reflection.AssemblyTitleAttribute("Discord_Simple-Embed-Bot")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Von der MSBuild WriteCodeFragment-Klasse generiert. + diff --git a/Discord_Simple-Embed-Bot/obj/Debug/netcoreapp3.1/Discord_Simple-Embed-Bot.AssemblyInfoInputs.cache b/Discord_Simple-Embed-Bot/obj/Debug/netcoreapp3.1/Discord_Simple-Embed-Bot.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fb0eb04 --- /dev/null +++ b/Discord_Simple-Embed-Bot/obj/Debug/netcoreapp3.1/Discord_Simple-Embed-Bot.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +dda242a47371062bc60617bf640b13a9f8215987 diff --git a/Discord_Simple-Embed-Bot/obj/Debug/netcoreapp3.1/Discord_Simple-Embed-Bot.assets.cache b/Discord_Simple-Embed-Bot/obj/Debug/netcoreapp3.1/Discord_Simple-Embed-Bot.assets.cache new file mode 100644 index 0000000..c3c3d62 Binary files /dev/null and b/Discord_Simple-Embed-Bot/obj/Debug/netcoreapp3.1/Discord_Simple-Embed-Bot.assets.cache differ diff --git a/Discord_Simple-Embed-Bot/obj/Debug/netcoreapp3.1/Discord_Simple-Embed-Bot.csproj.CopyComplete b/Discord_Simple-Embed-Bot/obj/Debug/netcoreapp3.1/Discord_Simple-Embed-Bot.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/Discord_Simple-Embed-Bot/obj/Debug/netcoreapp3.1/Discord_Simple-Embed-Bot.csprojAssemblyReference.cache b/Discord_Simple-Embed-Bot/obj/Debug/netcoreapp3.1/Discord_Simple-Embed-Bot.csprojAssemblyReference.cache new file mode 100644 index 0000000..ffcf6e8 Binary files /dev/null and b/Discord_Simple-Embed-Bot/obj/Debug/netcoreapp3.1/Discord_Simple-Embed-Bot.csprojAssemblyReference.cache 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 new file mode 100644 index 0000000..7a27c11 --- /dev/null +++ b/Discord_Simple-Embed-Bot/obj/Discord_Simple-Embed-Bot.csproj.nuget.dgspec.json @@ -0,0 +1,78 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\David\\Google Drive\\Programmieren\\Discord_Simple-Embed-Bot\\Discord_Simple-Embed-Bot\\Discord_Simple-Embed-Bot.csproj": {} + }, + "projects": { + "C:\\Users\\David\\Google Drive\\Programmieren\\Discord_Simple-Embed-Bot\\Discord_Simple-Embed-Bot\\Discord_Simple-Embed-Bot.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\David\\Google Drive\\Programmieren\\Discord_Simple-Embed-Bot\\Discord_Simple-Embed-Bot\\Discord_Simple-Embed-Bot.csproj", + "projectName": "Discord_Simple-Embed-Bot", + "projectPath": "C:\\Users\\David\\Google Drive\\Programmieren\\Discord_Simple-Embed-Bot\\Discord_Simple-Embed-Bot\\Discord_Simple-Embed-Bot.csproj", + "packagesPath": "C:\\Users\\David\\.nuget\\packages\\", + "outputPath": "C:\\Users\\David\\Google Drive\\Programmieren\\Discord_Simple-Embed-Bot\\Discord_Simple-Embed-Bot\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Microsoft\\Xamarin\\NuGet\\" + ], + "configFilePaths": [ + "C:\\Users\\David\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "dependencies": { + "Discord.Net": { + "target": "Package", + "version": "[2.3.0, )" + }, + "System.Data.SQLite.Core": { + "target": "Package", + "version": "[1.0.113.7, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.200-preview.20601.7\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file 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 new file mode 100644 index 0000000..8229cc7 --- /dev/null +++ b/Discord_Simple-Embed-Bot/obj/Discord_Simple-Embed-Bot.csproj.nuget.g.props @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> + <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> + <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> + <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot> + <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\David\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Microsoft\Xamarin\NuGet\</NuGetPackageFolders> + <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> + <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.8.0</NuGetToolVersion> + </PropertyGroup> + <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <SourceRoot Include="$([MSBuild]::EnsureTrailingSlash($(NuGetPackageFolders)))" /> + </ItemGroup> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> +</Project> \ No newline at end of file diff --git a/Discord_Simple-Embed-Bot/obj/Discord_Simple-Embed-Bot.csproj.nuget.g.targets b/Discord_Simple-Embed-Bot/obj/Discord_Simple-Embed-Bot.csproj.nuget.g.targets new file mode 100644 index 0000000..53cfaa1 --- /dev/null +++ b/Discord_Simple-Embed-Bot/obj/Discord_Simple-Embed-Bot.csproj.nuget.g.targets @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> +</Project> \ No newline at end of file diff --git a/Discord_Simple-Embed-Bot/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/Discord_Simple-Embed-Bot/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2f7e5ec --- /dev/null +++ b/Discord_Simple-Embed-Bot/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// <autogenerated /> +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.AssemblyInfo.cs b/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.AssemblyInfo.cs new file mode 100644 index 0000000..f28c9af --- /dev/null +++ b/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// <auto-generated> +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// </auto-generated> +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Discord_Simple-Embed-Bot")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Discord_Simple-Embed-Bot")] +[assembly: System.Reflection.AssemblyTitleAttribute("Discord_Simple-Embed-Bot")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Von der MSBuild WriteCodeFragment-Klasse generiert. + diff --git a/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.AssemblyInfoInputs.cache b/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.AssemblyInfoInputs.cache new file mode 100644 index 0000000..267ef11 --- /dev/null +++ b/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +65e3f41b817c1d1fd92c0299304db9d686671393 diff --git a/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.GeneratedMSBuildEditorConfig.editorconfig b/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d7e2983 --- /dev/null +++ b/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,8 @@ +is_global = true +build_property.TargetFramework = net5.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.PublishSingleFile = +build_property.IncludeAllContentForSelfExtract = +build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows 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 new file mode 100644 index 0000000..a1e48d5 Binary files /dev/null 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.CopyComplete b/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 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 new file mode 100644 index 0000000..c876bbb --- /dev/null +++ b/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +290a79e13fcd9a6ad640a802b1dbb9885971eacb 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 new file mode 100644 index 0000000..41f97ef --- /dev/null +++ b/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.csproj.FileListAbsolute.txt @@ -0,0 +1,30 @@ +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\Discord_Simple-Embed-Bot.exe +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\Discord_Simple-Embed-Bot.deps.json +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\Discord_Simple-Embed-Bot.runtimeconfig.json +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\Discord_Simple-Embed-Bot.runtimeconfig.dev.json +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\Discord_Simple-Embed-Bot.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\ref\Discord_Simple-Embed-Bot.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\Discord_Simple-Embed-Bot.pdb +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\Discord.Net.Commands.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\Discord.Net.Core.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\Discord.Net.Rest.dll +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 +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\obj\Release\net5.0\Discord_Simple-Embed-Bot.AssemblyInfo.cs +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\obj\Release\net5.0\Discord_Simple-Embed-Bot.csproj.CoreCompileInputs.cache +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\obj\Release\net5.0\Discord_Simple-Embed-Bot.csproj.CopyComplete +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\obj\Release\net5.0\Discord_Simple-Embed-Bot.dll +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 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 new file mode 100644 index 0000000..f2355c2 Binary files /dev/null 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 new file mode 100644 index 0000000..3fc2d9c Binary files /dev/null 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.genruntimeconfig.cache b/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.genruntimeconfig.cache new file mode 100644 index 0000000..a59fac5 --- /dev/null +++ b/Discord_Simple-Embed-Bot/obj/Release/net5.0/Discord_Simple-Embed-Bot.genruntimeconfig.cache @@ -0,0 +1 @@ +61edb3ffec538ae3e5c72d4a294a32e29188315b 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 new file mode 100644 index 0000000..22c914a Binary files /dev/null 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/apphost.exe b/Discord_Simple-Embed-Bot/obj/Release/net5.0/apphost.exe new file mode 100644 index 0000000..59acf2f Binary files /dev/null and b/Discord_Simple-Embed-Bot/obj/Release/net5.0/apphost.exe differ diff --git a/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2f7e5ec --- /dev/null +++ b/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// <autogenerated /> +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.AssemblyInfo.cs b/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.AssemblyInfo.cs new file mode 100644 index 0000000..f28c9af --- /dev/null +++ b/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// <auto-generated> +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// </auto-generated> +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Discord_Simple-Embed-Bot")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Discord_Simple-Embed-Bot")] +[assembly: System.Reflection.AssemblyTitleAttribute("Discord_Simple-Embed-Bot")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Von der MSBuild WriteCodeFragment-Klasse generiert. + diff --git a/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.AssemblyInfoInputs.cache b/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.AssemblyInfoInputs.cache new file mode 100644 index 0000000..267ef11 --- /dev/null +++ b/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +65e3f41b817c1d1fd92c0299304db9d686671393 diff --git a/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.GeneratedMSBuildEditorConfig.editorconfig b/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..c9c1597 --- /dev/null +++ b/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,8 @@ +is_global = true +build_property.TargetFramework = net5.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.PublishSingleFile = False +build_property.IncludeAllContentForSelfExtract = +build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows diff --git a/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.assets.cache b/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.assets.cache new file mode 100644 index 0000000..74feeaa Binary files /dev/null and b/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.assets.cache differ diff --git a/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.csproj.CopyComplete b/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.csproj.CoreCompileInputs.cache b/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..85e970e --- /dev/null +++ b/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +d7a02c5334fd69234cf5a61a4c4af88a51afa3b5 diff --git a/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.csproj.FileListAbsolute.txt b/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..fc5cb4a --- /dev/null +++ b/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.csproj.FileListAbsolute.txt @@ -0,0 +1,207 @@ +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\Discord_Simple-Embed-Bot +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\Discord_Simple-Embed-Bot.deps.json +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\Discord_Simple-Embed-Bot.runtimeconfig.json +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\Discord_Simple-Embed-Bot.runtimeconfig.dev.json +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\Discord_Simple-Embed-Bot.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\ref\Discord_Simple-Embed-Bot.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\Discord_Simple-Embed-Bot.pdb +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\Discord.Net.Commands.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\Discord.Net.Core.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\Discord.Net.Rest.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\Discord.Net.Webhook.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\Discord.Net.WebSocket.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\Newtonsoft.Json.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Data.SQLite.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Interactive.Async.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Linq.Async.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\SQLite.Interop.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\Microsoft.CSharp.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\Microsoft.VisualBasic.Core.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\Microsoft.VisualBasic.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\Microsoft.Win32.Primitives.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\Microsoft.Win32.Registry.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.AppContext.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Buffers.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Collections.Concurrent.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Collections.Immutable.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Collections.NonGeneric.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Collections.Specialized.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Collections.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.ComponentModel.Annotations.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.ComponentModel.DataAnnotations.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.ComponentModel.EventBasedAsync.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.ComponentModel.Primitives.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.ComponentModel.TypeConverter.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.ComponentModel.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Configuration.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Console.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Core.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Data.Common.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Data.DataSetExtensions.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Data.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Diagnostics.Contracts.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Diagnostics.Debug.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Diagnostics.DiagnosticSource.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Diagnostics.FileVersionInfo.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Diagnostics.Process.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Diagnostics.StackTrace.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Diagnostics.TextWriterTraceListener.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Diagnostics.Tools.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Diagnostics.TraceSource.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Diagnostics.Tracing.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Drawing.Primitives.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Drawing.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Dynamic.Runtime.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Formats.Asn1.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Globalization.Calendars.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Globalization.Extensions.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Globalization.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.IO.Compression.Brotli.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.IO.Compression.FileSystem.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.IO.Compression.ZipFile.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.IO.Compression.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.IO.FileSystem.AccessControl.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.IO.FileSystem.DriveInfo.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.IO.FileSystem.Primitives.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.IO.FileSystem.Watcher.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.IO.FileSystem.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.IO.IsolatedStorage.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.IO.MemoryMappedFiles.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.IO.Pipes.AccessControl.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.IO.Pipes.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.IO.UnmanagedMemoryStream.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.IO.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Linq.Expressions.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Linq.Parallel.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Linq.Queryable.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Linq.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Memory.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Net.Http.Json.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Net.Http.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Net.HttpListener.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Net.Mail.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Net.NameResolution.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Net.NetworkInformation.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Net.Ping.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Net.Primitives.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Net.Requests.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Net.Security.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Net.ServicePoint.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Net.Sockets.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Net.WebClient.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Net.WebHeaderCollection.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Net.WebProxy.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Net.WebSockets.Client.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Net.WebSockets.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Net.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Numerics.Vectors.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Numerics.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.ObjectModel.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Private.DataContractSerialization.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Private.Uri.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Private.Xml.Linq.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Private.Xml.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Reflection.DispatchProxy.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Reflection.Emit.ILGeneration.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Reflection.Emit.Lightweight.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Reflection.Emit.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Reflection.Extensions.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Reflection.Metadata.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Reflection.Primitives.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Reflection.TypeExtensions.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Reflection.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Resources.Reader.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Resources.ResourceManager.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Resources.Writer.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Runtime.CompilerServices.Unsafe.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Runtime.CompilerServices.VisualC.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Runtime.Extensions.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Runtime.Handles.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Runtime.InteropServices.RuntimeInformation.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Runtime.InteropServices.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Runtime.Intrinsics.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Runtime.Loader.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Runtime.Numerics.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Runtime.Serialization.Formatters.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Runtime.Serialization.Json.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Runtime.Serialization.Primitives.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Runtime.Serialization.Xml.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Runtime.Serialization.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Runtime.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Security.AccessControl.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Security.Claims.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Security.Cryptography.Algorithms.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Security.Cryptography.Cng.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Security.Cryptography.Csp.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Security.Cryptography.Encoding.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Security.Cryptography.OpenSsl.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Security.Cryptography.Primitives.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Security.Cryptography.X509Certificates.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Security.Principal.Windows.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Security.Principal.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Security.SecureString.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Security.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.ServiceModel.Web.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.ServiceProcess.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Text.Encoding.CodePages.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Text.Encoding.Extensions.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Text.Encoding.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Text.Encodings.Web.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Text.Json.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Text.RegularExpressions.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Threading.Channels.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Threading.Overlapped.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Threading.Tasks.Dataflow.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Threading.Tasks.Extensions.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Threading.Tasks.Parallel.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Threading.Tasks.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Threading.Thread.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Threading.ThreadPool.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Threading.Timer.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Threading.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Transactions.Local.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Transactions.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.ValueTuple.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Web.HttpUtility.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Web.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Windows.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Xml.Linq.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Xml.ReaderWriter.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Xml.Serialization.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Xml.XDocument.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Xml.XPath.XDocument.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Xml.XPath.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Xml.XmlDocument.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Xml.XmlSerializer.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Xml.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\WindowsBase.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\mscorlib.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\netstandard.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\System.Private.CoreLib.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\createdump +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\libSystem.IO.Compression.Native.a +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\libSystem.IO.Compression.Native.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\libSystem.Native.a +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\libSystem.Native.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\libSystem.Net.Security.Native.a +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\libSystem.Net.Security.Native.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\libSystem.Security.Cryptography.Native.OpenSsl.a +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\libSystem.Security.Cryptography.Native.OpenSsl.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\libclrjit.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\libcoreclr.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\libcoreclrtraceptprovider.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\libdbgshim.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\libhostfxr.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\libhostpolicy.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\libmscordaccore.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\linux-x64\libmscordbi.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\obj\Release\net5.0\linux-x64\Discord_Simple-Embed-Bot.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\obj\Release\net5.0\linux-x64\Discord_Simple-Embed-Bot.AssemblyInfoInputs.cache +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\obj\Release\net5.0\linux-x64\Discord_Simple-Embed-Bot.AssemblyInfo.cs +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\obj\Release\net5.0\linux-x64\Discord_Simple-Embed-Bot.csproj.CoreCompileInputs.cache +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\obj\Release\net5.0\linux-x64\Discord_Simple-Embed-Bot.csproj.CopyComplete +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\obj\Release\net5.0\linux-x64\Discord_Simple-Embed-Bot.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\obj\Release\net5.0\linux-x64\ref\Discord_Simple-Embed-Bot.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\obj\Release\net5.0\linux-x64\Discord_Simple-Embed-Bot.pdb +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\obj\Release\net5.0\linux-x64\Discord_Simple-Embed-Bot.genruntimeconfig.cache diff --git a/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.dll b/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.dll new file mode 100644 index 0000000..d8694ff Binary files /dev/null and b/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.dll differ diff --git a/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.genruntimeconfig.cache b/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.genruntimeconfig.cache new file mode 100644 index 0000000..7533f48 --- /dev/null +++ b/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.genruntimeconfig.cache @@ -0,0 +1 @@ +acb891c0ff5b5c08695d5ae625813772fd3927f0 diff --git a/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.pdb b/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.pdb new file mode 100644 index 0000000..3bd3bc8 Binary files /dev/null and b/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/Discord_Simple-Embed-Bot.pdb differ diff --git a/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/PublishOutputs.085b731a02.txt b/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/PublishOutputs.085b731a02.txt new file mode 100644 index 0000000..38166a4 --- /dev/null +++ b/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/PublishOutputs.085b731a02.txt @@ -0,0 +1,196 @@ +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\Discord_Simple-Embed-Bot +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\Microsoft.CSharp.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\Microsoft.VisualBasic.Core.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\Microsoft.VisualBasic.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\Microsoft.Win32.Primitives.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\Microsoft.Win32.Registry.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.AppContext.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Buffers.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Collections.Concurrent.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Collections.Immutable.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Collections.NonGeneric.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Collections.Specialized.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Collections.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.ComponentModel.Annotations.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.ComponentModel.DataAnnotations.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.ComponentModel.EventBasedAsync.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.ComponentModel.Primitives.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.ComponentModel.TypeConverter.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.ComponentModel.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Configuration.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Console.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Core.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Data.Common.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Data.DataSetExtensions.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Data.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Diagnostics.Contracts.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Diagnostics.Debug.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Diagnostics.DiagnosticSource.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Diagnostics.FileVersionInfo.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Diagnostics.Process.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Diagnostics.StackTrace.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Diagnostics.TextWriterTraceListener.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Diagnostics.Tools.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Diagnostics.TraceSource.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Diagnostics.Tracing.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Drawing.Primitives.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Drawing.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Dynamic.Runtime.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Formats.Asn1.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Globalization.Calendars.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Globalization.Extensions.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Globalization.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.IO.Compression.Brotli.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.IO.Compression.FileSystem.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.IO.Compression.ZipFile.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.IO.Compression.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.IO.FileSystem.AccessControl.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.IO.FileSystem.DriveInfo.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.IO.FileSystem.Primitives.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.IO.FileSystem.Watcher.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.IO.FileSystem.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.IO.IsolatedStorage.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.IO.MemoryMappedFiles.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.IO.Pipes.AccessControl.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.IO.Pipes.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.IO.UnmanagedMemoryStream.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.IO.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Linq.Expressions.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Linq.Parallel.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Linq.Queryable.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Linq.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Memory.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Net.Http.Json.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Net.Http.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Net.HttpListener.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Net.Mail.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Net.NameResolution.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Net.NetworkInformation.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Net.Ping.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Net.Primitives.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Net.Requests.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Net.Security.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Net.ServicePoint.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Net.Sockets.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Net.WebClient.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Net.WebHeaderCollection.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Net.WebProxy.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Net.WebSockets.Client.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Net.WebSockets.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Net.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Numerics.Vectors.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Numerics.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.ObjectModel.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Private.DataContractSerialization.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Private.Uri.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Private.Xml.Linq.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Private.Xml.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Reflection.DispatchProxy.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Reflection.Emit.ILGeneration.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Reflection.Emit.Lightweight.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Reflection.Emit.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Reflection.Extensions.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Reflection.Metadata.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Reflection.Primitives.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Reflection.TypeExtensions.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Reflection.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Resources.Reader.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Resources.ResourceManager.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Resources.Writer.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Runtime.CompilerServices.Unsafe.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Runtime.CompilerServices.VisualC.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Runtime.Extensions.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Runtime.Handles.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Runtime.InteropServices.RuntimeInformation.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Runtime.InteropServices.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Runtime.Intrinsics.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Runtime.Loader.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Runtime.Numerics.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Runtime.Serialization.Formatters.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Runtime.Serialization.Json.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Runtime.Serialization.Primitives.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Runtime.Serialization.Xml.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Runtime.Serialization.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Runtime.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Security.AccessControl.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Security.Claims.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Security.Cryptography.Algorithms.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Security.Cryptography.Cng.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Security.Cryptography.Csp.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Security.Cryptography.Encoding.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Security.Cryptography.OpenSsl.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Security.Cryptography.Primitives.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Security.Cryptography.X509Certificates.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Security.Principal.Windows.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Security.Principal.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Security.SecureString.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Security.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.ServiceModel.Web.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.ServiceProcess.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Text.Encoding.CodePages.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Text.Encoding.Extensions.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Text.Encoding.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Text.Encodings.Web.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Text.Json.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Text.RegularExpressions.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Threading.Channels.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Threading.Overlapped.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Threading.Tasks.Dataflow.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Threading.Tasks.Extensions.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Threading.Tasks.Parallel.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Threading.Tasks.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Threading.Thread.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Threading.ThreadPool.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Threading.Timer.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Threading.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Transactions.Local.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Transactions.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.ValueTuple.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Web.HttpUtility.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Web.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Windows.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Xml.Linq.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Xml.ReaderWriter.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Xml.Serialization.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Xml.XDocument.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Xml.XPath.XDocument.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Xml.XPath.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Xml.XmlDocument.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Xml.XmlSerializer.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Xml.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\WindowsBase.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\mscorlib.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\netstandard.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Private.CoreLib.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\createdump +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\libSystem.IO.Compression.Native.a +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\libSystem.IO.Compression.Native.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\libSystem.Native.a +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\libSystem.Native.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\libSystem.Net.Security.Native.a +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\libSystem.Net.Security.Native.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\libSystem.Security.Cryptography.Native.OpenSsl.a +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\libSystem.Security.Cryptography.Native.OpenSsl.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\libclrjit.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\libcoreclr.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\libcoreclrtraceptprovider.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\libdbgshim.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\libhostfxr.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\libhostpolicy.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\libmscordaccore.so +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\libmscordbi.so +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\Newtonsoft.Json.dll +C:\Users\David\Google Drive\Programmieren\Discord_Simple-Embed-Bot\Discord_Simple-Embed-Bot\bin\Release\net5.0\publish\System.Data.SQLite.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\SQLite.Interop.dll diff --git a/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/apphost b/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/apphost new file mode 100644 index 0000000..44410c0 Binary files /dev/null and b/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/apphost differ diff --git a/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/ref/Discord_Simple-Embed-Bot.dll b/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/ref/Discord_Simple-Embed-Bot.dll new file mode 100644 index 0000000..48f3e48 Binary files /dev/null and b/Discord_Simple-Embed-Bot/obj/Release/net5.0/linux-x64/ref/Discord_Simple-Embed-Bot.dll differ diff --git a/Discord_Simple-Embed-Bot/obj/Release/net5.0/ref/Discord_Simple-Embed-Bot.dll b/Discord_Simple-Embed-Bot/obj/Release/net5.0/ref/Discord_Simple-Embed-Bot.dll new file mode 100644 index 0000000..97cf36b Binary files /dev/null and b/Discord_Simple-Embed-Bot/obj/Release/net5.0/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 new file mode 100644 index 0000000..2597527 --- /dev/null +++ b/Discord_Simple-Embed-Bot/obj/project.assets.json @@ -0,0 +1,1600 @@ +{ + "version": 3, + "targets": { + "net5.0": { + "Discord.Net/2.3.0": { + "type": "package", + "dependencies": { + "Discord.Net.Commands": "2.3.0", + "Discord.Net.Core": "2.3.0", + "Discord.Net.Rest": "2.3.0", + "Discord.Net.WebSocket": "2.3.0", + "Discord.Net.Webhook": "2.3.0" + } + }, + "Discord.Net.Commands/2.3.0": { + "type": "package", + "dependencies": { + "Discord.Net.Core": "2.3.0" + }, + "compile": { + "lib/netstandard2.1/Discord.Net.Commands.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Discord.Net.Commands.dll": {} + } + }, + "Discord.Net.Core/2.3.0": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "12.0.2", + "System.Collections.Immutable": "1.3.1", + "System.Interactive.Async": "4.0.0" + }, + "compile": { + "lib/netstandard2.1/Discord.Net.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Discord.Net.Core.dll": {} + } + }, + "Discord.Net.Rest/2.3.0": { + "type": "package", + "dependencies": { + "Discord.Net.Core": "2.3.0" + }, + "compile": { + "lib/netstandard2.1/Discord.Net.Rest.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Discord.Net.Rest.dll": {} + } + }, + "Discord.Net.Webhook/2.3.0": { + "type": "package", + "dependencies": { + "Discord.Net.Core": "2.3.0", + "Discord.Net.Rest": "2.3.0" + }, + "compile": { + "lib/netstandard2.1/Discord.Net.Webhook.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Discord.Net.Webhook.dll": {} + } + }, + "Discord.Net.WebSocket/2.3.0": { + "type": "package", + "dependencies": { + "Discord.Net.Core": "2.3.0", + "Discord.Net.Rest": "2.3.0" + }, + "compile": { + "lib/netstandard2.1/Discord.Net.WebSocket.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Discord.Net.WebSocket.dll": {} + } + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Newtonsoft.Json/12.0.2": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + }, + "Stub.System.Data.SQLite.Core.NetStandard/1.0.113.2": { + "type": "package", + "compile": { + "lib/netstandard2.1/System.Data.SQLite.dll": {} + }, + "runtime": { + "lib/netstandard2.1/System.Data.SQLite.dll": {} + }, + "runtimeTargets": { + "runtimes/linux-x64/native/SQLite.Interop.dll": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/osx-x64/native/SQLite.Interop.dll": { + "assetType": "native", + "rid": "osx-x64" + }, + "runtimes/win-x64/native/SQLite.Interop.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/SQLite.Interop.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + } + }, + "System.Collections.Immutable/1.3.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.Collections.Immutable.dll": {} + }, + "runtime": { + "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": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + } + }, + "System.Interactive.Async/4.0.0": { + "type": "package", + "dependencies": { + "System.Linq.Async": "4.0.0" + }, + "compile": { + "lib/netcoreapp3.0/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Interactive.Async.dll": {} + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Async/4.0.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Linq.Async.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Linq.Async.dll": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "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" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + } + } + } + }, + "libraries": { + "Discord.Net/2.3.0": { + "sha512": "YILjBwqYdvich6v1rfO/OhdBrdhPQB/AKEohYISdOJ+LiwfMPCafAo3YN/VutmeAGpvmrdv1fP/D0T3rHo2JrQ==", + "type": "package", + "path": "discord.net/2.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "discord.net.2.3.0.nupkg.sha512", + "discord.net.nuspec" + ] + }, + "Discord.Net.Commands/2.3.0": { + "sha512": "D7/kpseW53Hmni0/Vr22VElIoitFFUa0XDaIiU+HwijObBf6+rfgquWNYF9hePV+xVyY0+eQ8FOtRmBMG7Cy4A==", + "type": "package", + "path": "discord.net.commands/2.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "discord.net.commands.2.3.0.nupkg.sha512", + "discord.net.commands.nuspec", + "lib/net461/Discord.Net.Commands.dll", + "lib/net461/Discord.Net.Commands.xml", + "lib/netstandard2.0/Discord.Net.Commands.dll", + "lib/netstandard2.0/Discord.Net.Commands.xml", + "lib/netstandard2.1/Discord.Net.Commands.dll", + "lib/netstandard2.1/Discord.Net.Commands.xml" + ] + }, + "Discord.Net.Core/2.3.0": { + "sha512": "W5mmQ7fzlQMPmKW/sJx9CrBjdSnC/V2Ao/OukpEr4L42NgyYJUjjs5wRoxKoOLU/b6hj3Q8g0FJ5IYrmt6KSnQ==", + "type": "package", + "path": "discord.net.core/2.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "discord.net.core.2.3.0.nupkg.sha512", + "discord.net.core.nuspec", + "lib/net461/Discord.Net.Core.dll", + "lib/net461/Discord.Net.Core.xml", + "lib/netstandard2.0/Discord.Net.Core.dll", + "lib/netstandard2.0/Discord.Net.Core.xml", + "lib/netstandard2.1/Discord.Net.Core.dll", + "lib/netstandard2.1/Discord.Net.Core.xml" + ] + }, + "Discord.Net.Rest/2.3.0": { + "sha512": "5m2nV4A9QIBtRsc7yIu9rQpc4Q7GpL6AaZ+xeAFdPx9dkUhikHIVZ0l1qqmn+pFSAUZ9e9fTsKzMfr7Loqz4aQ==", + "type": "package", + "path": "discord.net.rest/2.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "discord.net.rest.2.3.0.nupkg.sha512", + "discord.net.rest.nuspec", + "lib/net461/Discord.Net.Rest.dll", + "lib/net461/Discord.Net.Rest.xml", + "lib/netstandard2.0/Discord.Net.Rest.dll", + "lib/netstandard2.0/Discord.Net.Rest.xml", + "lib/netstandard2.1/Discord.Net.Rest.dll", + "lib/netstandard2.1/Discord.Net.Rest.xml" + ] + }, + "Discord.Net.Webhook/2.3.0": { + "sha512": "6DSRbYVLPDUbD7wBmMesaUbHkYud+WKxt8OeWTkifR6iR1DzSZX5i1GubmWaPsVjGYr1TA8usTepshla7Fiu9w==", + "type": "package", + "path": "discord.net.webhook/2.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "discord.net.webhook.2.3.0.nupkg.sha512", + "discord.net.webhook.nuspec", + "lib/netstandard2.0/Discord.Net.Webhook.dll", + "lib/netstandard2.0/Discord.Net.Webhook.xml", + "lib/netstandard2.1/Discord.Net.Webhook.dll", + "lib/netstandard2.1/Discord.Net.Webhook.xml" + ] + }, + "Discord.Net.WebSocket/2.3.0": { + "sha512": "mktzQvXy9oKF3j7F8/f3v9xcUmYxXb8oMBGD4czZRn0P/BOM4cz0OdmCHr5wVyMb0W7q0VxmnfKYNsN0kGzFNA==", + "type": "package", + "path": "discord.net.websocket/2.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "discord.net.websocket.2.3.0.nupkg.sha512", + "discord.net.websocket.nuspec", + "lib/net461/Discord.Net.WebSocket.dll", + "lib/net461/Discord.Net.WebSocket.xml", + "lib/netstandard2.0/Discord.Net.WebSocket.dll", + "lib/netstandard2.0/Discord.Net.WebSocket.xml", + "lib/netstandard2.1/Discord.Net.WebSocket.dll", + "lib/netstandard2.1/Discord.Net.WebSocket.xml" + ] + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "type": "package", + "path": "microsoft.netcore.platforms/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Newtonsoft.Json/12.0.2": { + "sha512": "rTK0s2EKlfHsQsH6Yx2smvcTCeyoDNgCW7FEYyV01drPlh2T243PR2DiDXqtC5N4GDm4Ma/lkxfW5a/4793vbA==", + "type": "package", + "path": "newtonsoft.json/12.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml", + "newtonsoft.json.12.0.2.nupkg.sha512", + "newtonsoft.json.nuspec" + ] + }, + "Stub.System.Data.SQLite.Core.NetStandard/1.0.113.2": { + "sha512": "yGIM9xFyPHl79HluNTSQarvAOIJ68pmzmlMayVN6Nivu/7TiaHt7WqptolvwmuKdAXei8OzENh9RNdh7d6evjQ==", + "type": "package", + "path": "stub.system.data.sqlite.core.netstandard/1.0.113.2", + "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" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Immutable/1.3.1": { + "sha512": "n+AGX7zmiZumW9aggOkXaHzUeAS3EfeTErnkKCusyONUozbTv+kMb8VE36m+ldV6kF9g57G2c641KCdgH9E0pg==", + "type": "package", + "path": "system.collections.immutable/1.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Collections.Immutable.dll", + "lib/netstandard1.0/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "system.collections.immutable.1.3.1.nupkg.sha512", + "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", + "path": "system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.Interactive.Async/4.0.0": { + "sha512": "tYEzSDQ3rn0G7sGgjcNB91C3dDRJc8m8Lavvu88dwt8FEwKPGZdp/tFs+lQTdqHDV9UItkGIwI8Aa6gGTvzLoQ==", + "type": "package", + "path": "system.interactive.async/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/System.Interactive.Async.dll", + "lib/net461/System.Interactive.Async.xml", + "lib/netcoreapp3.0/System.Interactive.Async.dll", + "lib/netcoreapp3.0/System.Interactive.Async.xml", + "lib/netstandard2.0/System.Interactive.Async.dll", + "lib/netstandard2.0/System.Interactive.Async.xml", + "lib/netstandard2.1/System.Interactive.Async.dll", + "lib/netstandard2.1/System.Interactive.Async.xml", + "system.interactive.async.4.0.0.nupkg.sha512", + "system.interactive.async.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.Linq/4.3.0": { + "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "type": "package", + "path": "system.linq/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.3.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Linq.Async/4.0.0": { + "sha512": "WbiYEedFZeM+psmMyoCt1AKbZppAZg8Eq1ZTQ+521fGNeXqlgJj0tZYV5n1LsKRO5osQuitYxGNuzPTy3213sg==", + "type": "package", + "path": "system.linq.async/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/System.Linq.Async.dll", + "lib/net461/System.Linq.Async.xml", + "lib/netcoreapp3.0/System.Linq.Async.dll", + "lib/netcoreapp3.0/System.Linq.Async.xml", + "lib/netstandard2.0/System.Linq.Async.dll", + "lib/netstandard2.0/System.Linq.Async.xml", + "lib/netstandard2.1/System.Linq.Async.dll", + "lib/netstandard2.1/System.Linq.Async.xml", + "ref/net461/System.Linq.Async.dll", + "ref/net461/System.Linq.Async.xml", + "ref/netcoreapp3.0/System.Linq.Async.dll", + "ref/netcoreapp3.0/System.Linq.Async.xml", + "ref/netstandard2.0/System.Linq.Async.dll", + "ref/netstandard2.0/System.Linq.Async.xml", + "ref/netstandard2.1/System.Linq.Async.dll", + "ref/netstandard2.1/System.Linq.Async.xml", + "system.linq.async.4.0.0.nupkg.sha512", + "system.linq.async.nuspec" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Threading/4.3.0": { + "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "type": "package", + "path": "system.threading/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.3.0.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "net5.0": [ + "Discord.Net >= 2.3.0", + "System.Data.SQLite.Core >= 1.0.113.7" + ] + }, + "packageFolders": { + "C:\\Users\\David\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}, + "C:\\Microsoft\\Xamarin\\NuGet\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\David\\Google Drive\\Programmieren\\Discord_Simple-Embed-Bot\\Discord_Simple-Embed-Bot\\Discord_Simple-Embed-Bot.csproj", + "projectName": "Discord_Simple-Embed-Bot", + "projectPath": "C:\\Users\\David\\Google Drive\\Programmieren\\Discord_Simple-Embed-Bot\\Discord_Simple-Embed-Bot\\Discord_Simple-Embed-Bot.csproj", + "packagesPath": "C:\\Users\\David\\.nuget\\packages\\", + "outputPath": "C:\\Users\\David\\Google Drive\\Programmieren\\Discord_Simple-Embed-Bot\\Discord_Simple-Embed-Bot\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Microsoft\\Xamarin\\NuGet\\" + ], + "configFilePaths": [ + "C:\\Users\\David\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "dependencies": { + "Discord.Net": { + "target": "Package", + "version": "[2.3.0, )" + }, + "System.Data.SQLite.Core": { + "target": "Package", + "version": "[1.0.113.7, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.200-preview.20601.7\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/Discord_Simple-Embed-Bot/obj/project.nuget.cache b/Discord_Simple-Embed-Bot/obj/project.nuget.cache new file mode 100644 index 0000000..245b647 --- /dev/null +++ b/Discord_Simple-Embed-Bot/obj/project.nuget.cache @@ -0,0 +1,36 @@ +{ + "version": 2, + "dgSpecHash": "j1bkCxpzGYF9Iu+hJrcX7xvgLVt7/uF/bBtsoXToXT0I2bPOPQj3/abWc8Ys5K4uCuDLJzc/CNXxT4T5ipecxw==", + "success": true, + "projectFilePath": "C:\\Users\\David\\Google Drive\\Programmieren\\Discord_Simple-Embed-Bot\\Discord_Simple-Embed-Bot\\Discord_Simple-Embed-Bot.csproj", + "expectedPackageFiles": [ + "C:\\Users\\David\\.nuget\\packages\\discord.net\\2.3.0\\discord.net.2.3.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\discord.net.commands\\2.3.0\\discord.net.commands.2.3.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\discord.net.core\\2.3.0\\discord.net.core.2.3.0.nupkg.sha512", + "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.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\\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.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", + "C:\\Users\\David\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/Discord_Simple-Embed-Bot/obj/publish/linux-x64/Discord_Simple-Embed-Bot.csproj.nuget.dgspec.json b/Discord_Simple-Embed-Bot/obj/publish/linux-x64/Discord_Simple-Embed-Bot.csproj.nuget.dgspec.json new file mode 100644 index 0000000..e7df369 --- /dev/null +++ b/Discord_Simple-Embed-Bot/obj/publish/linux-x64/Discord_Simple-Embed-Bot.csproj.nuget.dgspec.json @@ -0,0 +1,97 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\David\\Google Drive\\Programmieren\\Discord_Simple-Embed-Bot\\Discord_Simple-Embed-Bot\\Discord_Simple-Embed-Bot.csproj": {} + }, + "projects": { + "C:\\Users\\David\\Google Drive\\Programmieren\\Discord_Simple-Embed-Bot\\Discord_Simple-Embed-Bot\\Discord_Simple-Embed-Bot.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\David\\Google Drive\\Programmieren\\Discord_Simple-Embed-Bot\\Discord_Simple-Embed-Bot\\Discord_Simple-Embed-Bot.csproj", + "projectName": "Discord_Simple-Embed-Bot", + "projectPath": "C:\\Users\\David\\Google Drive\\Programmieren\\Discord_Simple-Embed-Bot\\Discord_Simple-Embed-Bot\\Discord_Simple-Embed-Bot.csproj", + "packagesPath": "C:\\Users\\David\\.nuget\\packages\\", + "outputPath": "C:\\Users\\David\\Google Drive\\Programmieren\\Discord_Simple-Embed-Bot\\Discord_Simple-Embed-Bot\\obj\\publish\\linux-x64\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Microsoft\\Xamarin\\NuGet\\" + ], + "configFilePaths": [ + "C:\\Users\\David\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "dependencies": { + "Discord.Net": { + "target": "Package", + "version": "[2.3.0, )" + }, + "System.Data.SQLite.Core": { + "target": "Package", + "version": "[1.0.113.7, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Runtime.linux-x64", + "version": "[5.0.0, 5.0.0]" + }, + { + "name": "Microsoft.NETCore.App.Host.linux-x64", + "version": "[5.0.0, 5.0.0]" + }, + { + "name": "Microsoft.NETCore.App.Runtime.linux-x64", + "version": "[5.0.0, 5.0.0]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.200-preview.20601.7\\RuntimeIdentifierGraph.json" + } + }, + "runtimes": { + "linux-x64": { + "#import": [] + } + } + } + } +} \ No newline at end of file diff --git a/Discord_Simple-Embed-Bot/obj/publish/linux-x64/Discord_Simple-Embed-Bot.csproj.nuget.g.props b/Discord_Simple-Embed-Bot/obj/publish/linux-x64/Discord_Simple-Embed-Bot.csproj.nuget.g.props new file mode 100644 index 0000000..8229cc7 --- /dev/null +++ b/Discord_Simple-Embed-Bot/obj/publish/linux-x64/Discord_Simple-Embed-Bot.csproj.nuget.g.props @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> + <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> + <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> + <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot> + <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\David\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Microsoft\Xamarin\NuGet\</NuGetPackageFolders> + <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> + <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.8.0</NuGetToolVersion> + </PropertyGroup> + <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <SourceRoot Include="$([MSBuild]::EnsureTrailingSlash($(NuGetPackageFolders)))" /> + </ItemGroup> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> +</Project> \ No newline at end of file diff --git a/Discord_Simple-Embed-Bot/obj/publish/linux-x64/Discord_Simple-Embed-Bot.csproj.nuget.g.targets b/Discord_Simple-Embed-Bot/obj/publish/linux-x64/Discord_Simple-Embed-Bot.csproj.nuget.g.targets new file mode 100644 index 0000000..53cfaa1 --- /dev/null +++ b/Discord_Simple-Embed-Bot/obj/publish/linux-x64/Discord_Simple-Embed-Bot.csproj.nuget.g.targets @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> +</Project> \ No newline at end of file diff --git a/Discord_Simple-Embed-Bot/obj/publish/linux-x64/project.assets.json b/Discord_Simple-Embed-Bot/obj/publish/linux-x64/project.assets.json new file mode 100644 index 0000000..0f2f84a --- /dev/null +++ b/Discord_Simple-Embed-Bot/obj/publish/linux-x64/project.assets.json @@ -0,0 +1,2615 @@ +{ + "version": 3, + "targets": { + "net5.0": { + "Discord.Net/2.3.0": { + "type": "package", + "dependencies": { + "Discord.Net.Commands": "2.3.0", + "Discord.Net.Core": "2.3.0", + "Discord.Net.Rest": "2.3.0", + "Discord.Net.WebSocket": "2.3.0", + "Discord.Net.Webhook": "2.3.0" + } + }, + "Discord.Net.Commands/2.3.0": { + "type": "package", + "dependencies": { + "Discord.Net.Core": "2.3.0" + }, + "compile": { + "lib/netstandard2.1/Discord.Net.Commands.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Discord.Net.Commands.dll": {} + } + }, + "Discord.Net.Core/2.3.0": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "12.0.2", + "System.Collections.Immutable": "1.3.1", + "System.Interactive.Async": "4.0.0" + }, + "compile": { + "lib/netstandard2.1/Discord.Net.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Discord.Net.Core.dll": {} + } + }, + "Discord.Net.Rest/2.3.0": { + "type": "package", + "dependencies": { + "Discord.Net.Core": "2.3.0" + }, + "compile": { + "lib/netstandard2.1/Discord.Net.Rest.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Discord.Net.Rest.dll": {} + } + }, + "Discord.Net.Webhook/2.3.0": { + "type": "package", + "dependencies": { + "Discord.Net.Core": "2.3.0", + "Discord.Net.Rest": "2.3.0" + }, + "compile": { + "lib/netstandard2.1/Discord.Net.Webhook.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Discord.Net.Webhook.dll": {} + } + }, + "Discord.Net.WebSocket/2.3.0": { + "type": "package", + "dependencies": { + "Discord.Net.Core": "2.3.0", + "Discord.Net.Rest": "2.3.0" + }, + "compile": { + "lib/netstandard2.1/Discord.Net.WebSocket.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Discord.Net.WebSocket.dll": {} + } + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Newtonsoft.Json/12.0.2": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + }, + "Stub.System.Data.SQLite.Core.NetStandard/1.0.113.2": { + "type": "package", + "compile": { + "lib/netstandard2.1/System.Data.SQLite.dll": {} + }, + "runtime": { + "lib/netstandard2.1/System.Data.SQLite.dll": {} + }, + "runtimeTargets": { + "runtimes/linux-x64/native/SQLite.Interop.dll": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/osx-x64/native/SQLite.Interop.dll": { + "assetType": "native", + "rid": "osx-x64" + }, + "runtimes/win-x64/native/SQLite.Interop.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/SQLite.Interop.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + } + }, + "System.Collections.Immutable/1.3.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.Collections.Immutable.dll": {} + }, + "runtime": { + "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": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + } + }, + "System.Interactive.Async/4.0.0": { + "type": "package", + "dependencies": { + "System.Linq.Async": "4.0.0" + }, + "compile": { + "lib/netcoreapp3.0/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Interactive.Async.dll": {} + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Async/4.0.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Linq.Async.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Linq.Async.dll": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "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" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + } + } + }, + "net5.0/linux-x64": { + "Discord.Net/2.3.0": { + "type": "package", + "dependencies": { + "Discord.Net.Commands": "2.3.0", + "Discord.Net.Core": "2.3.0", + "Discord.Net.Rest": "2.3.0", + "Discord.Net.WebSocket": "2.3.0", + "Discord.Net.Webhook": "2.3.0" + } + }, + "Discord.Net.Commands/2.3.0": { + "type": "package", + "dependencies": { + "Discord.Net.Core": "2.3.0" + }, + "compile": { + "lib/netstandard2.1/Discord.Net.Commands.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Discord.Net.Commands.dll": {} + } + }, + "Discord.Net.Core/2.3.0": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "12.0.2", + "System.Collections.Immutable": "1.3.1", + "System.Interactive.Async": "4.0.0" + }, + "compile": { + "lib/netstandard2.1/Discord.Net.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Discord.Net.Core.dll": {} + } + }, + "Discord.Net.Rest/2.3.0": { + "type": "package", + "dependencies": { + "Discord.Net.Core": "2.3.0" + }, + "compile": { + "lib/netstandard2.1/Discord.Net.Rest.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Discord.Net.Rest.dll": {} + } + }, + "Discord.Net.Webhook/2.3.0": { + "type": "package", + "dependencies": { + "Discord.Net.Core": "2.3.0", + "Discord.Net.Rest": "2.3.0" + }, + "compile": { + "lib/netstandard2.1/Discord.Net.Webhook.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Discord.Net.Webhook.dll": {} + } + }, + "Discord.Net.WebSocket/2.3.0": { + "type": "package", + "dependencies": { + "Discord.Net.Core": "2.3.0", + "Discord.Net.Rest": "2.3.0" + }, + "compile": { + "lib/netstandard2.1/Discord.Net.WebSocket.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Discord.Net.WebSocket.dll": {} + } + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Newtonsoft.Json/12.0.2": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + }, + "runtime.any.System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.dll": {} + } + }, + "runtime.any.System.Globalization/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Globalization.dll": {} + } + }, + "runtime.any.System.IO/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.IO.dll": {} + } + }, + "runtime.any.System.Reflection/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.dll": {} + } + }, + "runtime.any.System.Reflection.Primitives/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Primitives.dll": {} + } + }, + "runtime.any.System.Resources.ResourceManager/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Resources.ResourceManager.dll": {} + } + }, + "runtime.any.System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.dll": {} + } + }, + "runtime.any.System.Text.Encoding/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "runtime.any.System.Threading.Tasks/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "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" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.unix.System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.Debug.dll": {} + } + }, + "runtime.unix.System.Private.Uri/4.3.0": { + "type": "package", + "dependencies": { + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.0/System.Private.Uri.dll": {} + } + }, + "runtime.unix.System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "Stub.System.Data.SQLite.Core.NetStandard/1.0.113.2": { + "type": "package", + "compile": { + "lib/netstandard2.1/System.Data.SQLite.dll": {} + }, + "runtime": { + "lib/netstandard2.1/System.Data.SQLite.dll": {} + }, + "native": { + "runtimes/linux-x64/native/SQLite.Interop.dll": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "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" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + } + }, + "System.Collections.Immutable/1.3.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.Collections.Immutable.dll": {} + }, + "runtime": { + "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": { + "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" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "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" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + } + }, + "System.Interactive.Async/4.0.0": { + "type": "package", + "dependencies": { + "System.Linq.Async": "4.0.0" + }, + "compile": { + "lib/netcoreapp3.0/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Interactive.Async.dll": {} + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.any.System.IO": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Async/4.0.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Linq.Async.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Linq.Async.dll": {} + } + }, + "System.Private.Uri/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "runtime.unix.System.Private.Uri": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "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" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "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" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "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" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "runtime.any.System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "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" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "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" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "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" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + } + } + } + }, + "libraries": { + "Discord.Net/2.3.0": { + "sha512": "YILjBwqYdvich6v1rfO/OhdBrdhPQB/AKEohYISdOJ+LiwfMPCafAo3YN/VutmeAGpvmrdv1fP/D0T3rHo2JrQ==", + "type": "package", + "path": "discord.net/2.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "discord.net.2.3.0.nupkg.sha512", + "discord.net.nuspec" + ] + }, + "Discord.Net.Commands/2.3.0": { + "sha512": "D7/kpseW53Hmni0/Vr22VElIoitFFUa0XDaIiU+HwijObBf6+rfgquWNYF9hePV+xVyY0+eQ8FOtRmBMG7Cy4A==", + "type": "package", + "path": "discord.net.commands/2.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "discord.net.commands.2.3.0.nupkg.sha512", + "discord.net.commands.nuspec", + "lib/net461/Discord.Net.Commands.dll", + "lib/net461/Discord.Net.Commands.xml", + "lib/netstandard2.0/Discord.Net.Commands.dll", + "lib/netstandard2.0/Discord.Net.Commands.xml", + "lib/netstandard2.1/Discord.Net.Commands.dll", + "lib/netstandard2.1/Discord.Net.Commands.xml" + ] + }, + "Discord.Net.Core/2.3.0": { + "sha512": "W5mmQ7fzlQMPmKW/sJx9CrBjdSnC/V2Ao/OukpEr4L42NgyYJUjjs5wRoxKoOLU/b6hj3Q8g0FJ5IYrmt6KSnQ==", + "type": "package", + "path": "discord.net.core/2.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "discord.net.core.2.3.0.nupkg.sha512", + "discord.net.core.nuspec", + "lib/net461/Discord.Net.Core.dll", + "lib/net461/Discord.Net.Core.xml", + "lib/netstandard2.0/Discord.Net.Core.dll", + "lib/netstandard2.0/Discord.Net.Core.xml", + "lib/netstandard2.1/Discord.Net.Core.dll", + "lib/netstandard2.1/Discord.Net.Core.xml" + ] + }, + "Discord.Net.Rest/2.3.0": { + "sha512": "5m2nV4A9QIBtRsc7yIu9rQpc4Q7GpL6AaZ+xeAFdPx9dkUhikHIVZ0l1qqmn+pFSAUZ9e9fTsKzMfr7Loqz4aQ==", + "type": "package", + "path": "discord.net.rest/2.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "discord.net.rest.2.3.0.nupkg.sha512", + "discord.net.rest.nuspec", + "lib/net461/Discord.Net.Rest.dll", + "lib/net461/Discord.Net.Rest.xml", + "lib/netstandard2.0/Discord.Net.Rest.dll", + "lib/netstandard2.0/Discord.Net.Rest.xml", + "lib/netstandard2.1/Discord.Net.Rest.dll", + "lib/netstandard2.1/Discord.Net.Rest.xml" + ] + }, + "Discord.Net.Webhook/2.3.0": { + "sha512": "6DSRbYVLPDUbD7wBmMesaUbHkYud+WKxt8OeWTkifR6iR1DzSZX5i1GubmWaPsVjGYr1TA8usTepshla7Fiu9w==", + "type": "package", + "path": "discord.net.webhook/2.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "discord.net.webhook.2.3.0.nupkg.sha512", + "discord.net.webhook.nuspec", + "lib/netstandard2.0/Discord.Net.Webhook.dll", + "lib/netstandard2.0/Discord.Net.Webhook.xml", + "lib/netstandard2.1/Discord.Net.Webhook.dll", + "lib/netstandard2.1/Discord.Net.Webhook.xml" + ] + }, + "Discord.Net.WebSocket/2.3.0": { + "sha512": "mktzQvXy9oKF3j7F8/f3v9xcUmYxXb8oMBGD4czZRn0P/BOM4cz0OdmCHr5wVyMb0W7q0VxmnfKYNsN0kGzFNA==", + "type": "package", + "path": "discord.net.websocket/2.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "discord.net.websocket.2.3.0.nupkg.sha512", + "discord.net.websocket.nuspec", + "lib/net461/Discord.Net.WebSocket.dll", + "lib/net461/Discord.Net.WebSocket.xml", + "lib/netstandard2.0/Discord.Net.WebSocket.dll", + "lib/netstandard2.0/Discord.Net.WebSocket.xml", + "lib/netstandard2.1/Discord.Net.WebSocket.dll", + "lib/netstandard2.1/Discord.Net.WebSocket.xml" + ] + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "type": "package", + "path": "microsoft.netcore.platforms/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Newtonsoft.Json/12.0.2": { + "sha512": "rTK0s2EKlfHsQsH6Yx2smvcTCeyoDNgCW7FEYyV01drPlh2T243PR2DiDXqtC5N4GDm4Ma/lkxfW5a/4793vbA==", + "type": "package", + "path": "newtonsoft.json/12.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml", + "newtonsoft.json.12.0.2.nupkg.sha512", + "newtonsoft.json.nuspec" + ] + }, + "runtime.any.System.Collections/4.3.0": { + "sha512": "23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==", + "type": "package", + "path": "runtime.any.system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.dll", + "lib/netstandard1.3/System.Collections.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.collections.4.3.0.nupkg.sha512", + "runtime.any.system.collections.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Globalization/4.3.0": { + "sha512": "sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw==", + "type": "package", + "path": "runtime.any.system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Globalization.dll", + "lib/netstandard1.3/System.Globalization.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.globalization.4.3.0.nupkg.sha512", + "runtime.any.system.globalization.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.IO/4.3.0": { + "sha512": "SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ==", + "type": "package", + "path": "runtime.any.system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.IO.dll", + "lib/netstandard1.5/System.IO.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.io.4.3.0.nupkg.sha512", + "runtime.any.system.io.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Reflection/4.3.0": { + "sha512": "hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ==", + "type": "package", + "path": "runtime.any.system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.dll", + "lib/netstandard1.5/System.Reflection.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.4.3.0.nupkg.sha512", + "runtime.any.system.reflection.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Reflection.Primitives/4.3.0": { + "sha512": "Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg==", + "type": "package", + "path": "runtime.any.system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/netstandard1.3/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512", + "runtime.any.system.reflection.primitives.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Resources.ResourceManager/4.3.0": { + "sha512": "Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ==", + "type": "package", + "path": "runtime.any.system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/netstandard1.3/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512", + "runtime.any.system.resources.resourcemanager.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Runtime/4.3.0": { + "sha512": "fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==", + "type": "package", + "path": "runtime.any.system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.dll", + "lib/netstandard1.5/System.Runtime.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.4.3.0.nupkg.sha512", + "runtime.any.system.runtime.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Text.Encoding/4.3.0": { + "sha512": "+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ==", + "type": "package", + "path": "runtime.any.system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.Encoding.dll", + "lib/netstandard1.3/System.Text.Encoding.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.text.encoding.4.3.0.nupkg.sha512", + "runtime.any.system.text.encoding.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Threading.Tasks/4.3.0": { + "sha512": "OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w==", + "type": "package", + "path": "runtime.any.system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "lib/netstandard1.3/System.Threading.Tasks.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.threading.tasks.4.3.0.nupkg.sha512", + "runtime.any.system.threading.tasks.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "type": "package", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "type": "package", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "type": "package", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "type": "package", + "path": "runtime.native.system/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.3.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec" + ] + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "type": "package", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "type": "package", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" + ] + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "type": "package", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "type": "package", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "type": "package", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "type": "package", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.unix.System.Diagnostics.Debug/4.3.0": { + "sha512": "WV8KLRHWVUVUDduFnvGMHt0FsEt2wK6xPl1EgDKlaMx2KnZ43A/O0GzP8wIuvAC7mq4T9V1mm90r+PXkL9FPdQ==", + "type": "package", + "path": "runtime.unix.system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.diagnostics.debug.4.3.0.nupkg.sha512", + "runtime.unix.system.diagnostics.debug.nuspec", + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.Debug.dll" + ] + }, + "runtime.unix.System.Private.Uri/4.3.0": { + "sha512": "ooWzobr5RAq34r9uan1r/WPXJYG1XWy9KanrxNvEnBzbFdQbMG7Y3bVi4QxR7xZMNLOxLLTAyXvnSkfj5boZSg==", + "type": "package", + "path": "runtime.unix.system.private.uri/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.private.uri.4.3.0.nupkg.sha512", + "runtime.unix.system.private.uri.nuspec", + "runtimes/unix/lib/netstandard1.0/System.Private.Uri.dll" + ] + }, + "runtime.unix.System.Runtime.Extensions/4.3.0": { + "sha512": "zQiTBVpiLftTQZW8GFsV0gjYikB1WMkEPIxF5O6RkUrSV/OgvRRTYgeFQha/0keBpuS0HYweraGRwhfhJ7dj7w==", + "type": "package", + "path": "runtime.unix.system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.runtime.extensions.4.3.0.nupkg.sha512", + "runtime.unix.system.runtime.extensions.nuspec", + "runtimes/unix/lib/netstandard1.5/System.Runtime.Extensions.dll" + ] + }, + "Stub.System.Data.SQLite.Core.NetStandard/1.0.113.2": { + "sha512": "yGIM9xFyPHl79HluNTSQarvAOIJ68pmzmlMayVN6Nivu/7TiaHt7WqptolvwmuKdAXei8OzENh9RNdh7d6evjQ==", + "type": "package", + "path": "stub.system.data.sqlite.core.netstandard/1.0.113.2", + "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" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Immutable/1.3.1": { + "sha512": "n+AGX7zmiZumW9aggOkXaHzUeAS3EfeTErnkKCusyONUozbTv+kMb8VE36m+ldV6kF9g57G2c641KCdgH9E0pg==", + "type": "package", + "path": "system.collections.immutable/1.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Collections.Immutable.dll", + "lib/netstandard1.0/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "system.collections.immutable.1.3.1.nupkg.sha512", + "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", + "path": "system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.Interactive.Async/4.0.0": { + "sha512": "tYEzSDQ3rn0G7sGgjcNB91C3dDRJc8m8Lavvu88dwt8FEwKPGZdp/tFs+lQTdqHDV9UItkGIwI8Aa6gGTvzLoQ==", + "type": "package", + "path": "system.interactive.async/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/System.Interactive.Async.dll", + "lib/net461/System.Interactive.Async.xml", + "lib/netcoreapp3.0/System.Interactive.Async.dll", + "lib/netcoreapp3.0/System.Interactive.Async.xml", + "lib/netstandard2.0/System.Interactive.Async.dll", + "lib/netstandard2.0/System.Interactive.Async.xml", + "lib/netstandard2.1/System.Interactive.Async.dll", + "lib/netstandard2.1/System.Interactive.Async.xml", + "system.interactive.async.4.0.0.nupkg.sha512", + "system.interactive.async.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.Linq/4.3.0": { + "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "type": "package", + "path": "system.linq/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.3.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Linq.Async/4.0.0": { + "sha512": "WbiYEedFZeM+psmMyoCt1AKbZppAZg8Eq1ZTQ+521fGNeXqlgJj0tZYV5n1LsKRO5osQuitYxGNuzPTy3213sg==", + "type": "package", + "path": "system.linq.async/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/System.Linq.Async.dll", + "lib/net461/System.Linq.Async.xml", + "lib/netcoreapp3.0/System.Linq.Async.dll", + "lib/netcoreapp3.0/System.Linq.Async.xml", + "lib/netstandard2.0/System.Linq.Async.dll", + "lib/netstandard2.0/System.Linq.Async.xml", + "lib/netstandard2.1/System.Linq.Async.dll", + "lib/netstandard2.1/System.Linq.Async.xml", + "ref/net461/System.Linq.Async.dll", + "ref/net461/System.Linq.Async.xml", + "ref/netcoreapp3.0/System.Linq.Async.dll", + "ref/netcoreapp3.0/System.Linq.Async.xml", + "ref/netstandard2.0/System.Linq.Async.dll", + "ref/netstandard2.0/System.Linq.Async.xml", + "ref/netstandard2.1/System.Linq.Async.dll", + "ref/netstandard2.1/System.Linq.Async.xml", + "system.linq.async.4.0.0.nupkg.sha512", + "system.linq.async.nuspec" + ] + }, + "System.Private.Uri/4.3.0": { + "sha512": "I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==", + "type": "package", + "path": "system.private.uri/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "system.private.uri.4.3.0.nupkg.sha512", + "system.private.uri.nuspec" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Threading/4.3.0": { + "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "type": "package", + "path": "system.threading/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.3.0.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "net5.0": [ + "Discord.Net >= 2.3.0", + "System.Data.SQLite.Core >= 1.0.113.7" + ] + }, + "packageFolders": { + "C:\\Users\\David\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}, + "C:\\Microsoft\\Xamarin\\NuGet\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\David\\Google Drive\\Programmieren\\Discord_Simple-Embed-Bot\\Discord_Simple-Embed-Bot\\Discord_Simple-Embed-Bot.csproj", + "projectName": "Discord_Simple-Embed-Bot", + "projectPath": "C:\\Users\\David\\Google Drive\\Programmieren\\Discord_Simple-Embed-Bot\\Discord_Simple-Embed-Bot\\Discord_Simple-Embed-Bot.csproj", + "packagesPath": "C:\\Users\\David\\.nuget\\packages\\", + "outputPath": "C:\\Users\\David\\Google Drive\\Programmieren\\Discord_Simple-Embed-Bot\\Discord_Simple-Embed-Bot\\obj\\publish\\linux-x64\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Microsoft\\Xamarin\\NuGet\\" + ], + "configFilePaths": [ + "C:\\Users\\David\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "dependencies": { + "Discord.Net": { + "target": "Package", + "version": "[2.3.0, )" + }, + "System.Data.SQLite.Core": { + "target": "Package", + "version": "[1.0.113.7, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Runtime.linux-x64", + "version": "[5.0.0, 5.0.0]" + }, + { + "name": "Microsoft.NETCore.App.Host.linux-x64", + "version": "[5.0.0, 5.0.0]" + }, + { + "name": "Microsoft.NETCore.App.Runtime.linux-x64", + "version": "[5.0.0, 5.0.0]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.200-preview.20601.7\\RuntimeIdentifierGraph.json" + } + }, + "runtimes": { + "linux-x64": { + "#import": [] + } + } + } +} \ No newline at end of file diff --git a/Discord_Simple-Embed-Bot/obj/publish/linux-x64/project.nuget.cache b/Discord_Simple-Embed-Bot/obj/publish/linux-x64/project.nuget.cache new file mode 100644 index 0000000..2bef558 --- /dev/null +++ b/Discord_Simple-Embed-Bot/obj/publish/linux-x64/project.nuget.cache @@ -0,0 +1,64 @@ +{ + "version": 2, + "dgSpecHash": "u6BrFugJfjKiSM8wvlxxKXEUksXJFPxniaqgyq0IH2j9t3DtG5vJWljJTqeuZZo73vH5XqHJuWFdygV2p3TwSw==", + "success": true, + "projectFilePath": "C:\\Users\\David\\Google Drive\\Programmieren\\Discord_Simple-Embed-Bot\\Discord_Simple-Embed-Bot\\Discord_Simple-Embed-Bot.csproj", + "expectedPackageFiles": [ + "C:\\Users\\David\\.nuget\\packages\\discord.net\\2.3.0\\discord.net.2.3.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\discord.net.commands\\2.3.0\\discord.net.commands.2.3.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\discord.net.core\\2.3.0\\discord.net.core.2.3.0.nupkg.sha512", + "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.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\\runtime.any.system.collections\\4.3.0\\runtime.any.system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\runtime.any.system.globalization\\4.3.0\\runtime.any.system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\runtime.any.system.io\\4.3.0\\runtime.any.system.io.4.3.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\runtime.any.system.reflection\\4.3.0\\runtime.any.system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\runtime.any.system.reflection.primitives\\4.3.0\\runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\runtime.any.system.resources.resourcemanager\\4.3.0\\runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\runtime.any.system.runtime\\4.3.0\\runtime.any.system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\runtime.any.system.text.encoding\\4.3.0\\runtime.any.system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\runtime.any.system.threading.tasks\\4.3.0\\runtime.any.system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\runtime.ubuntu.16.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.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\runtime.unix.system.diagnostics.debug\\4.3.0\\runtime.unix.system.diagnostics.debug.4.3.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\runtime.unix.system.private.uri\\4.3.0\\runtime.unix.system.private.uri.4.3.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\runtime.unix.system.runtime.extensions\\4.3.0\\runtime.unix.system.runtime.extensions.4.3.0.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\\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.private.uri\\4.3.0\\system.private.uri.4.3.0.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", + "C:\\Users\\David\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\microsoft.netcore.app.runtime.linux-x64\\5.0.0\\microsoft.netcore.app.runtime.linux-x64.5.0.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\microsoft.aspnetcore.app.runtime.linux-x64\\5.0.0\\microsoft.aspnetcore.app.runtime.linux-x64.5.0.0.nupkg.sha512", + "C:\\Users\\David\\.nuget\\packages\\microsoft.netcore.app.host.linux-x64\\5.0.0\\microsoft.netcore.app.host.linux-x64.5.0.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..9dd8cca --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2021 Stone-Red-Code + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE.