mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-30 08:33:19 +01:00
21 lines
518 B
C#
21 lines
518 B
C#
using System.ComponentModel;
|
|
using System.Configuration.Install;
|
|
|
|
namespace TGServerService
|
|
{
|
|
/// <summary>
|
|
/// This tells the .msi there is a Windows <see cref="System.ServiceProcess.ServiceBase"/> in this <see cref="System.Reflection.Assembly"/> that needs installation
|
|
/// </summary>
|
|
[RunInstaller(true)]
|
|
public partial class ProjectInstaller : Installer
|
|
{
|
|
/// <summary>
|
|
/// Construct a <see cref="ProjectInstaller"/>
|
|
/// </summary>
|
|
public ProjectInstaller()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|