Files
tgstation-server/TGServerService/ProjectInstaller.cs
T
Jordan BrownandAnturK 73c23a6b17 Service is now started only by the installer (#46)
* Service is now started only by the installer

* Unity
2017-06-12 12:06:26 +02:00

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