mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-29 16:11:05 +01:00
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.
20 lines
357 B
C#
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());
|
|
}
|
|
}
|
|
}
|