msi project

  • Thread starter Thread starter Ofer Berkovich
  • Start date Start date
O

Ofer Berkovich

Hi,

I have some projects (VS .NET C#), for each project I have a deployment
project to produce msi.

I want to make a deployment project that will include all the other msi
project, to install all the project in one click.

I try to run a custom action that will run each msi, after the main nsi
extracted them to a directory, but I can't run more than one msi at a time.

what is the best solution to my problem?

Thaks
 
Ofer,
What I would suggest you to do is add only one deployment project to
a/the solution (which holds all your projects. if there is none, add all
the projects to one solution) and then add all project outputs for the
deployment project. You can do this by right-clicking the deployment
project, then click on add -> project outputs. VS.Net will show a set of all
projects in the solution, just select the ones you need for deployment.

Regards,
 
Back
Top