Document the ProjectInstaller

This commit is contained in:
Cyberboss
2017-10-20 19:20:29 -04:00
parent 589224d1d2
commit 3fd79371d9
2 changed files with 12 additions and 0 deletions
+6
View File
@@ -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;
}
}
+6
View File
@@ -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();