Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an ASP.Net web site (ASPX and ASMX pages) with a single web.config file. We have a development version and a production version. Over time, the web.config files for development and production have diverged substantially.

What is the best practice for keeping both versions of web.config in source control (we use Tortoise SVN but I don't think that matters)? It seems like I could add the production web.config file with a name like "web.config.prod", and then when we turnover all the files we would just add the step of deleting the existing web.config and renaming web.config.prod to web.config.

This seems hackish, although I'm sure it would work. Is there not some mechanism for dealing with this built in to Visual Studio? It seems like this would be a common issue, but I haven't found any questions (with answers) about this.

share|improve this question

3 Answers

up vote 3 down vote accepted

We use the exact method you describe, it works great, for example we have:

  • web.config (for local development)
  • web.Dev.config (build server, builds on check-in)
  • web.QC.config (testing environment)
  • web.Prod.config (production)

The build script for each environment just deletes the web.config and renames the appropriate one in it's place. Doing this way allows you to easily source control all of them and very quickly do a diff and see what may be different between environments. Updating a config value across the board is much easier as well...the next time it's pushed to that environment, it'll get the new config.

share|improve this answer

I use nant for my builds. On the SVN I have a web.config.template that contains parameters that are expanded using a properties file. Each environment has its own properties file with different values.

So in short, I don't have the web.config on the SVN, but a template instead.

Something like this

http://www.cptloadtest.com/2007/09/22/Managing-Multiple-Environment-Configurations-Through-NAnt.aspx

NAnt: http://nant.sourceforge.net/

share|improve this answer

Visual Studio 2010 adds a new feature called XDT Transforms, which automatically combines multiple Web.config files for different configurations.

However, VS2008 does not include any such feature.

share|improve this answer
VS 2008 doesn't have this? We're stuck on 2008. – MusiGenesis Apr 14 '10 at 2:59
The only problem is that transformations for web.config files happens only when you "publish" the site. It cannot transform on build (with or without SlowCheetah [hanselman.com/blog/…) – George Mavritsakis Nov 9 '12 at 12:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.