
register dll in COM+ and GAC
Bogdan,
You can not register assemblies programatically into the GAC in .NET.
You either have to use the GAC utility (which is recommended for DEV
purposes only) or have the assemblies installed in a Windows Installer
package.
To register ServicedComponents, you really don't have to, they will
register themselves the first time they are used. If you want to
pre-register them, you can use the RegistrationHelper class in the
System.EnterpriseServices namespace.
Hope this helps.
--
- Nicholas Paldino [.NET MVP]
Quote:
> I have some dll's and I want to register programatic in COM+ and GAC
> What must contains these dll's for do this or
> what is the code in exe application to do this!
> Thank you