Click here to Skip to main content
15,884,388 members
Articles / Operating Systems / Windows

One Web Setup Project for Deploying on Multiple Environments

Rate me:
Please Sign up or sign in to vote.
4.50/5 (2 votes)
26 Jan 2009CPOL2 min read 29.4K   7   2
A solution to create one web setup project for multiple environments

Introduction

A common task in a project is preparing for a deployment. The easiest way to do this is making use of a Web Setup Project. But how do we make this Web Setup Project suitable for multiple environments, because it's most likely that there are environments like Development, Test, Acceptance and Production.

Solution

The key to this solution is the "Condition" property. If you add a file to the Web Setup Project (In the File System view right mouse button on the Web Application Folder, then Add -> File) and select it, you can find the "Condition" property in the properties window.

Solution

We add the following value to the "Condition" property ENV="Prod", this is for the production environment, for the test environment it will be something like this ENV="Test".

We also set the "TargetName" property to Web.Config so the Web Setup Project will output the configuration file as Web.Config.

Well you can add unlimited Web.Config files to your Web Setup Project, they are all output as Web.Config but not all at the same time. So how can we choose the correct Web.Config for your environment, well like this:

%windir%\system32\msiexec.exe /i "Setup.msi" ENV="Prod"
  • msiexec.exe (the Windows installer)
  • /i (is the install switch)
  • "Setup.msi" (compiled output of the Web Setup Project)
  • ENV="Prod" (the condition value)

If you run this, the setup will be started. After the setup is finished, you will notice that only the Web.Config is installed with the "Condition" property set to ENV="Prod".

To make this all fool proof, you can make a shortcut to this command line, like this:

Shortcut

Now when you click on this shortcut, you get the same result.

Conclusion

So with this solution, you can make one Web Setup Project for all your environments and create a better and stable deployment solution.

History

  • 26th January, 2009: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Netherlands Netherlands
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralOne tip to avoid including all config files Pin
Member 40803134-Feb-09 8:56
Member 40803134-Feb-09 8:56 
GeneralThanks Pin
Member 40803134-Feb-09 8:46
Member 40803134-Feb-09 8:46 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.