using System.ComponentModel; using System.Configuration.Install; namespace TGServerService { /// /// This tells the .msi there is a Windows in this that needs installation /// [RunInstaller(true)] public partial class ProjectInstaller : Installer { /// /// Construct a /// public ProjectInstaller() { InitializeComponent(); } } }