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.?

Signature
Arne Garvander
Certified Geek
Phil Wilson - 14 Mar 2006 00:54 GMT
You need it declared on your installer class:
[RunInstallerAttribute(true)]
public class MyProjectInstaller: Installer

Signature
Phil Wilson [MVP Windows Installer]
----
>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.?