views:

25

answers:

1

I know how to publish a single application in my solution by right clicking the project name and clicking properties then going to publish tab. How do you do this for the entire solution so that you only have one installer for all of them?

A: 

Do you have project references? If your project which you publish depends on another project, it should be automatically compiled also.

If you want to make more complex publishing scenarios, I recommend to use MSBuild or NAnt. Here is a short tutorial of MSBuild.

Tuomas Hietanen