Installer class in System.Configuration.Install absent

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

Guest

Hi there

It is very strange, there is no namespace System.Configuration.Install in my C# version, and of course since the namespace isn't there, the Installer class isn't there either. Another thing is that my version doesn't recognize the attribute RunInstaller

Specs:
* Microsoft Dev. Env. 2003 / 7.1.308
* .NET Framework / 1.1.432

Thanks
Tom.
 
Hi

I've found the solution for the missing namespace (I added a reference to the assembly)

Now it still won't recognize the "RunInstaller" attribute :-

Thank
Tom.
 
TT (Tom Tempelaere) <"=?Utf-8?B?VFQgKFRvbSBUZW1wZWxhZXJlKQ==?=" <_N_
0SPA|/\|[email protected]|/\|APS0_N_> said:
It is very strange, there is no namespace
System.Configuration.Install in my C# version, and of course since
the namespace isn't there, the Installer class isn't there either.

Have you added a reference in your project to the
System.Configuration.Install.dll assembly?
Another thing is that my version doesn't recognize the attribute
RunInstaller.

Have you got a statement such as

using System.ComponentModel;

in your class?
 
Hi

Solved that too, needed the System.ComponentModel namespace

Tom


----- TT (Tom Tempelaere) wrote: ----

Now it still won't recognize the "RunInstaller" attribute :-
 
Back
Top