vote up 3 vote down star

Simple task, but for some reason no simple solution just yet.

We've all got web.config files - and I haven't worked anywhere yet that doesn't have the problem where someone yells across the room "Sh*t, I've just uploaded the wrong web.config file".

Is there a simple way of being able to auto generate a web.config file that will contain the right things for copying to release? An example of these being:

  • Swap connection string over to use live database
  • Change
  • Switch over to use the live/release logging system, and live/release security settings
  • (in our case we need to change the SessionState mode to InProc from StateServer - this isn't normal)

If you have others, let me know and I'll update it here so it's easy for someone else to find

Maintaining 2 config files works, but is a royal pain, and is usually the reason something's gone wrong while you're pushing things live.

flag

1  
I would add that it should switch over to the live logging system, and live security settings. – Russell Steen Nov 3 at 13:03
Good one! I have added it. – IP Nov 3 at 13:05

6 Answers

vote up 5 vote down check

Yes there is.

Check out Visual Studio 2008/2005 Web Deployment Projects. It has all the options you want.

alt text

alt text

link|flag
Giving this one a go now...looks very good – IP Nov 3 at 13:19
This is copying the project files from the main web project, into the deployed code output. Is there a way to stop this? – IP Nov 3 at 13:47
It compiles your asp.net project code-behind files into single assembly and prepares them for deployment - which is a good thing. All code-behind classes are compiled into assemblies and merged them into one final single output assembly. You can delay-sign the final output assembly. Checkout Output Assembly option in the web deployment projects. – curious_geek Nov 3 at 14:49
Fantastic, this is working very well. It's replacing sections in my web.config just as I needed. The only thing that doesn't appear to be working the merge - it's pulling across dlls in my bin folder, but just copying them straight to the output folder... – IP Nov 3 at 15:32
For your reference I've added another screen-shot. It shows you how to merge the output assemblies into one final single assembly. – curious_geek Nov 3 at 16:15
show 1 more comment
vote up 2 vote down

How are you deploying your builds. In my environment, this used to be a pain point too, but now we use cruisecontrol.net and script our builds in nant. In our script, we detect the environment and have different versions of the config settings for each environment. See: http://www.mattwrock.com/post/2009/10/22/The-Perfect-Build-Part-3-Continuous-Integration-with-CruiseControlnet-and-NANT-for-Visual-Studio-Projects.aspx for my blogpost onthe subject of using cruisecontrol.net for build management. Skip to the end fora brief description of how we handle config versions.

link|flag
vote up 1 vote down

Visual Studio 2010 supports something like this. Check it out here.

link|flag
Very cool! Thank you. – Kovu Nov 3 at 13:11
vote up 0 vote down
  1. Keep web.config out of Source Control (everybody has it's own where can mess up, etc)
  2. Person responsible for deployment adds changes to web.config (f.eks. one who has overwritten web.config last time ;) )
  3. Keep track on changes in web.config in wiki/bugtracker/txt document/whatever

At least it works for team made of 12 devs and 4 analysts.

link|flag
Hmm, yeah, this is what happens a lot of the time. But there's got to be a way of achieving ultimate safety by making it automated. I don't like the idea of not checking in the web.config file – IP Nov 3 at 13:13
1  
This advice sounds dubious! – Paul Suart Nov 3 at 13:21
Interesting in theory, but I disagree - fundamentally there are only two issues: 1) Differences between test and live (debug settings mostly) and 2) Instance specific config. You deal with the latter by moving it out of web.config and the former using appropriate build tools. – Murph Nov 3 at 13:49
vote up 0 vote down

I don't think you can 100% avoid this.

The last years of work ever and ever shows: where human worked, there are fails.

So, here are 3 ideas from my last company, not the best maybe, but better then nothing:

  1. Write an batch file or an C#.Net Application that change your web.config on a doubleclick
  2. Write a "ToDo on Release"-List
  3. Do pair-realesing (== pair programming while realease :))
link|flag
vote up 0 vote down

In my most recent project I wrote a PowerShell script which loaded the web.config file, modified the necessary XML elements, and saved the file back out again. A bit like this:

param($mode, $src)
$ErrorActionPreference = "stop"
$config = [xml](Get-Content $src)

if ($mode -eq "Production")
{
    $config.SelectSingleNode("/configuration/system.web/compilation").SetAttribute("debug", "false")
    $config.SelectSingleNode("/configuration/system.web/customErrors").SetAttribute("mode", "off")
    $config.SelectSingleNode("/configuration/system.net/mailSettings/smtp/network").SetAttribute("host", "live.mail.server")
    $config.SelectSingleNode("/configuration/connectionStrings/add[@name='myConnectionString']").SetAttribute("connectionString", "Server=SQL; Database=Live")
}
elseif ($mode -eq "Testing")
{
    # etc.
}

$config.Save($src)

This script overwrites the input file with the modifications, but it should be easy to modify it to save to a different file if needed. I have a build script that uses web deployment projects to build the web app, outputting the binaries minus the source code to a different folder - then the build script runs this script to rewrite web.config. The result is a folder containing all the files ready to be placed on the production server.

link|flag

Your Answer

Get an OpenID
or

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