Files
tgstation-server/TGInstallerWrapper/Program.cs
T
Cyberboss f2d6eb2ae3 Rewrite the installer using reflection
Since the installer uses embedded native code for DD to be able
to call it, we can't directly embed it in the installer exe. Let's just
use the method we used for the .msi + reflection instead.
2017-10-16 17:04:06 -04:00

20 lines
357 B
C#

using System;
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());
}
}
}