diff --git a/DiscordBotConsoleLauncher/DiscordBotConsoleLauncher.csproj b/DiscordBotConsoleLauncher/DiscordBotConsoleLauncher.csproj deleted file mode 100644 index 396c1aa..0000000 --- a/DiscordBotConsoleLauncher/DiscordBotConsoleLauncher.csproj +++ /dev/null @@ -1,14 +0,0 @@ - - - - Exe - net6.0 - enable - enable - - - - - - - diff --git a/DiscordBotConsoleLauncher/Program.cs b/DiscordBotConsoleLauncher/Program.cs deleted file mode 100644 index 47b010d..0000000 --- a/DiscordBotConsoleLauncher/Program.cs +++ /dev/null @@ -1,21 +0,0 @@ -using PluginManager.Online.Updates; - -try -{ - bool requireUpdate = await PluginUpdater.CheckForUpdates("DiscordBotConsoleLauncher"); - if (requireUpdate) - { - var update = await PluginUpdater.DownloadUpdateInfo("DiscordBotConsoleLauncher"); - if (update == Update.Empty) - return; - - Console.WriteLine("Found an update: "); - Console.WriteLine(update.ToString()); - } -} -catch (Exception ex) -{ - Console.WriteLine("An exception was thrown. "); - Console.WriteLine(ex.Message); - Environment.Exit(-2); -} \ No newline at end of file