When I am trying to create an installation project, I get this error message when I try to build the installation class.
Unable to build custom action because the project output group does not have a key file.
What is wrong my custom action
I have a custom action that does some manipulation after the I have a custom action as follows.
public class InstallerHelper:Installer
{
public override void Install(System.Collections.IDictionary stateSaver)
{
base.Install(stateSaver);
Console.WriteLine("Hello World");
Console.ReadLine();
}
}