mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-25 05:56:58 +01:00
Document the ProjectInstaller
This commit is contained in:
+6
@@ -54,7 +54,13 @@
|
||||
|
||||
#endregion
|
||||
|
||||
/// <summary>
|
||||
/// The project's <see cref="System.ServiceProcess.ServiceProcessInstaller"/>
|
||||
/// </summary>
|
||||
private System.ServiceProcess.ServiceProcessInstaller serviceProcessInstaller1;
|
||||
/// <summary>
|
||||
/// The project's <see cref="System.ServiceProcess.ServiceInstaller"/>
|
||||
/// </summary>
|
||||
private System.ServiceProcess.ServiceInstaller serviceInstaller1;
|
||||
}
|
||||
}
|
||||
@@ -3,9 +3,15 @@ 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)]
|
||||
partial class ProjectInstaller : Installer
|
||||
{
|
||||
/// <summary>
|
||||
/// Construct a <see cref="ProjectInstaller"/>
|
||||
/// </summary>
|
||||
public ProjectInstaller()
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
Reference in New Issue
Block a user