mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-26 14:37:44 +01:00
* 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
23 lines
440 B
C#
23 lines
440 B
C#
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());
|
|
}
|
|
}
|
|
}
|