vote up 14 vote down star
13

Does anyone know of any good tools/utilities for managing Web.Config files between different build/deployment environments?

For example, I have a WCF project that in development I don't want to enable SSL, but I do want it enabled in production. I want different logging settings, different DB connection strings, different error handling, different file paths... Even some different Unity framework bindings (wire up mocks for unit testing instead of the real objects for deployment).

Maintaining individual copies of the Web.Config is a pain, because adding a new web service means editing multiple files and keeping them in sync.

I've also noticed that if you muck with the Web.Config too much by hand, Visual Studio will choke if you try to use the "add item" wizard to, say, add a new Web Service for WCF, since it has to modify the Web.Config to add the endpoint,a nd can't parse it any more. So I have to be careful not to invalidate the existing Web.Config.

I also thought about just using some regex to do replacements and just building a new Web.Config in a pre-build command. That seems like the best option so far...

Any other ideas? It seems like this should be a very common issue, since the Web.Config should probably never be the same between development and production deployments.


Update:

I decided to write a quick console app that will take all the xml files in a given directory and merge them into one, and only include certain files based on the name.

So I can make in a directory:

WebConfig_All

<configuration>
  <configSections>
    ...
  </configSections>
  <system.web>
    ...
  </system.web>
</configuration>

connectionStrings_Debug

<configuration>
  <connectionStrings>
    <add name="connstr" connectionString="...dev..." />
  </connectionStrings>
</configuration>

connectionStrings_Release

<configuration>
  <connectionStrings>
    <add name="connstr" connectionString="...prod..." />
  </connectionStrings>
</configuration>

Then run my command line tool, and pass in the configuration (Debug, Release, custom...) And it will merge all the files that end in "All" or "<configuration>".

So now I have 80% of my Web.Config in a single WebConfig_All file,a nd the 20% custom stuff in seperate files per build configuration. I can then run my command line tool as a pre-build task in VisualStudio, or from NAnt, or wherever I want...

I also made my XML merge logic good enough to handle stuff like:

<x>
  <y a="1">
    <z a="1"/>
  </y>
</x>

merge with

<x>
  <y a="1">
    <z a="2"/>
  </y>
  <y a="2"/>
</x>

results in:

<x>
  <y a="1">
    <z a="1"/>
    <z a="2"/>
  </y>
  <y a="2"/>
</x>

Looking good so far... :)

flag

9 Answers

vote up 2 vote down check

We split out all region specific settings into thier own config file. Under the root of the web app we create a config folder and place the region specific settings there. So whatever files are living under the root of config will get picked up.

our web.config looks something like:

.
.
.
<appSettings configSource="config\appSettings.config"/>
<nlog configSource="config\nlog.config"/>
<applicationSettings>
	<MyApp.UI.Properties.Settings configSource="config\Settings.APGUI.config"/>
	<MyApp.BusinessServices.Properties.Settings configSource="config\Settings.Business.config"/>
	<MyApp.Auditing.Properties.Settings configSource="config\Settings.Auditing.config"/>
</applicationSettings>
.
.
.

So if we are deploying to the release region the build tool will just have an action to replace the files in the root of config with the files from the appropriate region folder. The file structure looks something like:

ADDED: This is how the source control structure looks, the deployed app would just have the config dir with no sub folders or course

\Root
   web.config    
   \Config    
       appsettings.config    
       services.config    
       logging.config    
       \release    
          appsettings.config    
          services.config    
          logging.config    
       \debug
          appsettings.config    
          services.config    
          logging.config

It is pretty clean and supported by any automated build tool(copying/replacing files). The nice side affect is that developers can create different flavors and keep them under source control without affecting the "real" configs.

link|flag
I do like the use of the configSource attribute. Maybe I can incorporate that in some way. It would be nice if visualstudio could translate them automatically at build time and use the marcos from the run tools... so you could specify "configSource=Config\$(ConfigurationName)\My.Config" – rally25rs Jan 12 at 14:59
This is a GREAT solution! Where I'm at, the developers use Visual Studio for development work, then we have a build machine using CruiseControl and NAnt that creates the different releases (test, stage, production, ...). This is perfect for us, because we could just create a NAnt task to copy the appropriate config files based on the release being built (or you could use MSBuild or Visual Studio to do the same thing if it suits your environment better). – Ogre Psalm33 Apr 30 at 13:06
vote up 4 vote down

You could use Build Events to manage your web configs. Hanselman has a good article about it.

Basically you have all your different web.configs in the solution you then create (some) new build types. Depending on the build type you run a web.config is copied over the referenced one!

link|flag
I too like this setup using a pre-build event in Visual Studio to overwrite the web.config with the correct web.config configuration (.debug, .release, .deploy). Although it requires you to maintain several configuration files, it is a clean and simple setup. By the way it's "Hanselman" and not "Hanselmen". – PropellerHead Jun 21 at 6:19
Fixed the spelling error thanks! – cgreeno Jun 21 at 13:59
exactly what I wrote @ the same time :) – Cohen Jul 6 at 17:07
vote up 3 vote down

You want the XmlMassUpdate task in MSBuildCommunityTasks (does what you're trying to do with your xml console app)

http://msbuildtasks.tigris.org/

use it like this

  <XmlMassUpdate Condition=" '@(ConfigTemplateFile)'!='' And '@(ConfigSubstitutionsFile)'!=''"
    ContentFile="@(ConfigTemplateFile)"
    SubstitutionsFile="@(ConfigSubstitutionsFile)"
    MergedFile="@(ConfigFile)"
    ContentRoot="/configuration"
    SubstitutionsRoot="/configuration/substitutions/$(Configuration)"/>
link|flag
vote up 1 vote down

I like to use a build task to automate changing the config file for the desired environment.

link|flag
vote up 1 vote down

I use the method explained by Scott Hanselman (he explains it much better than I can reproduce this so follow the link :) ) It has worked fine for me...

link|flag
vote up 1 vote down

I use this tool: xmlpreprocess

we maintain separate 'property' files for each environment that are merged in by the deployment script.

link|flag
vote up 0 vote down

I have traditionally used the multiple web.configs as you mentioned. It can be a pain but it is mitigated by file compare tools such as BeyoneComapare2 or KDIff...

link|flag
I love Beyond Compare! One of my top 5 favorite tools ever. – rally25rs Jan 9 at 20:27
vote up 0 vote down

Annoyance:

I mentioned my little cmd line app to merge XML docs in my 1st update... Well to do that I just use XmlDocument, and eventually just .Save() it to an FileStream.

Unfortuantely, the nodes aren't really in any particular order, and apparently, .NET requires the <configSections> element be the 1st child of the document.

I thought all these fancy tools were supposed to make programming life easier?

link|flag
vote up 0 vote down

We use tags in our config files, that are replaced at build time to reflect the intended deployment environment. I've been inspired by Lavablast blog

It's nice to have only one template config file to manage.

The drawback is that you can't easily have custom "sections".

link|flag

Your Answer

Get an OpenID
or

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