Guess I have to do everything myself (sigh) ,-)
using System; using System.ComponentModel; using System.IO; namespace Hawk { [RunInstaller(true)] public class Installer : System.Configuration.Install.Installer { public override void Install(System.Collections.IDictionary stateSaver) { base.Install(stateSaver); try { string assemblyPath = this.Context.Parameters["assemblypath"];
source share