How to upgrade (merge) web.config with web deploy (msdeploy)? How to upgrade (merge) web.config with web deploy (msdeploy)? asp.net asp.net

How to upgrade (merge) web.config with web deploy (msdeploy)?


Suggestion from personal experience:

Isolate customisations

Your customers should have the ability to customise their set up and the best way is to provide them with something like an override file. That way you install the new package and follow by superimposing your customer's customisations on top of your standard setup. If its a brand new install then there will be nothing to superimpose.

> top-level             --    > standard files      |           images         | This will never be touched or changed by customer           settings.txt   |                        __    > customer files           --           images                | Customer hacks this to their heart's content           settings.txt_override |                               --

Yes, this does mean that some kind of merging process needs to happen and there needs to be some script that does that but this approach has several advantages.

  1. For settings that suddenly become redundant just issue a warning to that effect
  2. If a customer has their own logo provide the ability to specify this in the override file
  3. The message is clear to customers. Stay off standard files.
  4. If customers request more customisable settings then write the default if it does not exist into the override file during upgrades.

Vilx, in answer to your question, the logic for knowing whether it is an upgrade or not must be contained in the script itself.

To run an upgrade script before installation

msdeploy -verb:sync -source:contentPath="C:\Test1" -dest:contentPath="C:\Test2" -preSync:runcommand="c:\UpgradeScript.bat"

Or to run an upgrade script after installation

msdeploy -verb:sync -source:contentPath="C:\Test1" -dest:contentPath="C:\Test2" -postSync:runcommand="c:\UpgradeScript.bat"

More info here

As to how you know its an upgrade your script could check for a text file called "version.txt" and if it exists the upgrade bat script will run. Version to be contained within the text file. Bit basic but it should work.

This also has the added advantage of giving you the ability of more elegantly merging customer's custom settings between versions as you know which properties could be overriden for that particular version.


There are some general suggestions (not specific to msdeploy), but I hope that helps:

  • I think you'll need to provide several installers anyway: for the initial setup and for each version-to-version upgrade.

  • I would suggest to let your clients to merge the config files themselves. You could just provide them either detailed desciption of waht was added/changed/removed, and/or include the utility that simplifies the merge. Maybe this and this links will give you some pointers.

  • as for merging the replaced logos, other client's customization, I think the best approach would be to support branding your application. I mean - move all branding details to the place where your new/upgrade installers won't touch that.

  • as for the rest of the adjustments made by your clients, they do that on their own risk, so the only help you could provide them is to include the detailed list of changes (maybe even the list of changed files since the previous version) and the How-To article about merging the sources with tools like Araxis Merge or similar

  • Or.. you could create a utility and include it to the installer, which will try to do all the tricky merging stuff on client's machine. I would not recommend this way as it requires a lot of efforts/resources to maintain.

  • One more thing: you could focus on backup-ing the previous client copy before upgrade. So even client will have troubles with upgrading - that will be always possible to roll back. The only thing here for you is to provide a good feedback channel which your clients can use to shoot their troubles. This feedback will allow you to figure out what the troubles your clients have and how to make their upgrade process more comfortable.


I would build on what the above have said, but I would do it with transformations, and strict documentation about who configures what. The way you have it now relies on customer intervention against a config that is mission critical to the app deploy process.

Create three config file areas. One for development, one for the "production generic" build, and one that is an empty template for the customer to edit.

  • The development instance should be self explanatory. This is the transform that takes the production generic template and creates a web config for your development server. (it sounds like you are shooting for a CI type process here)
  • The "production generic" transform should set the app up for a hypothetically perfect instance of the app. This is what the install would look like if the architect had his way.
  • The customer transform is used by the customers to set up the web config as required to meet their own needs. Write some documentation and see what happens. Edit the docs as you help customers through the process.

It that what you were looking for? Thoughts?