Deployment question

  • Thread starter Thread starter Chris Dunaway
  • Start date Start date
C

Chris Dunaway

I have a Windows Forms App and have created an install project for it. It
installs correctly.

The app has a plug-in type architecture and I want to install a plugin. In
the plug-in's project, I added another setup project and it build an .msi
file with all the plug-ins files.

I can install this manually from the command line and it installs
correctly. Now I want to include this .msi on the install media for the
main app and I want it to be installed when the main app is installed.

How can I include the .msi file on the install media and call it from the
main app's setup routine?

Thanks,
 
I resolved this issue by just adding the plug-in project to the main app's
solution. Then it's outputs were available in the setup project.
 
Back
Top