using System;using System.Collections.Generic;using System.ComponentModel;using System.Configuration.Install;namespace BarcodeAdmin{ [RunInstaller(true)] public partial class Installer1 : Installer { public Installer1() { InitializeComponent(); } public override void Install(System.Collections.IDictionary stateSaver) { base.Install(stateSaver); } }}
However, I still get the same error.In the Custom Actions, under install, I havePrimary output from BarcodeAdmin (Active)with BarcodeAdmin being my main project. All the properties in the custom action are left at their default values. Once I can get this to run with an empty Install method, I can add in my code, but for now, I'm lost. Can anyone help me out with this?