.netinteropgacsetup-projectregasm

Use Visual Studio Setup Project to automatically register and GAC a COM Interop DLL


I've created a .NET assembly for COM interop and it is working well on my development machine. I'm currently trying to figure out how to deploy the DLL to a target machine using Visual Studio's "Setup Project." How can I use the VIsual Studio setup project to do the following things:

Any other advice or concerns would be much appreciated.


Solution

  • Gacutil.exe won't be available on the target machine. Not a problem, MSI can get the job done. Right-click "File System on Target Machine", Add, GAC. Right-click that added folder, Add, Project Output. That ensures the assembly is gac-ed.

    It can also register the assembly like Regasm.exe does. Set the Register property of the project output reference to vsdrpCOM.