I am working on converting my COM DLL from an inprocserver32 to a
localserver32. I am looking at the article referenced here:
http://blogs.msdn.com/adioltean/archive/2004/06/18/159479.aspx
I am trying to put the C# code for the service, installer, etc into my DLL
code.. and for some reason the using System.ServiceProcess namespace is not
found. Additionally, when I try to declare the Installer, it cannot find
System.Configuration.Install.Installer either.
HAve I missed something in the .NET environment I need to go get?
I am running Visual Studio 2003 .NET with what I believe is the most recent
patch (patched in Sept if not more recently)
Any ideas?
Andrew
Henk de Koning - 16 Dec 2004 10:07 GMT
You need to set references to the
System.ServiceProcess.dll and
System.Configuration.Install.dll
assemblies.
I think the latter is done for you, if you add an installer using the
designer (and the former if you choose a Windows Service project type).
> I am working on converting my COM DLL from an inprocserver32 to a
> localserver32. I am looking at the article referenced here:
[quoted text clipped - 14 lines]
>
> Andrew