I'm trying to deploy a vb.net application using visual studio. I'm a little lost, does anybody know how to register a .dll via regsvr32 through the installer?
Well, I know how to go to "add" and merge modules. I got 3rd party .dll's that need to be installed and registered with the application in order to work.
Have you tried groups.google.com, I just found this by searching for "regsvr32 .net"
A .NET assembly can not be registered by regsvr32 directly, since it is not a COM dll. You have to generate a COM wrapper (which is generated by regasm.exe automatically) for it via tlbexp.exe utility, and register the wrapper dll with regsvr32.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.