mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-29 08:00:19 +01:00
16 lines
267 B
C#
16 lines
267 B
C#
using System.ComponentModel;
|
|
using System.Configuration.Install;
|
|
using System.ServiceProcess;
|
|
|
|
namespace ServerService
|
|
{
|
|
[RunInstaller(true)]
|
|
public partial class ProjectInstaller : Installer
|
|
{
|
|
public ProjectInstaller()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|