Service Install failed.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I tried to install my first service and I get the message
No public installers with the RunInstallerAttribute.Yes attribute could be
found
I do have a Public Class ProjectInstaller.
Where can I find the RunInstallerAttribute.?
 
You need it declared on your installer class:

[RunInstallerAttribute(true)]
public class MyProjectInstaller: Installer
 
Back
Top