I’ve built a class library and registered it for com access using visual studio build options. This library will be accessed by excel VBA. How do I create an MSI to instal this on another computer that will be using the same excel file?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.
Use Visual Studio Setup Project to automatically register and GAC a COM Interop DLL