mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-29 08:00:19 +01:00
Installer wrapper (#74) [TGSDeploy]
* Add a version command * Remove service update from commandline * Ayy lmao * Fix * Final touches * Last thing * Can't break backwards compat I suppose * Version bump to 3.0.85.0 * Final cleanup * This time I swear * VERY LAST FUCKING THING * CANT STOP FUCKING UP THE UI * AHHHH!!!!! * Do not become like me kids
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace TGInstallerWrapper
|
||||
{
|
||||
static class Program
|
||||
{
|
||||
/// <summary>
|
||||
/// The main entry point for the application.
|
||||
/// </summary>
|
||||
[STAThread]
|
||||
static void Main()
|
||||
{
|
||||
Application.EnableVisualStyles();
|
||||
Application.SetCompatibleTextRenderingDefault(false);
|
||||
Application.Run(new Main());
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user