Search code examples
azure-devopsazure-deployment

Transform web.config for Azure Website Deployment for each release environment


In Visual Studio Team Services (was Visual Studio Online), I have three release environments each with an Azure Website Deploy step.

I can transform the web.config for the build step by specifying the "BuildConfiguration" variable (e.g. Uat) which picks up the Web.Uat.config.

However I have multiple release environments that use this build configuration which all need to transform the web config (e.g. Dev,Test,Uat,Live).

Is it possible to specify the the web config transform to use for each release environment before the Azure Website deploy step?

Note: I realise that simple appsettings and connectionstrings can be specified in the Azure Portal under "All Settings" for the website but I need to do much more than transform these simple settings and already have configured the web config transforms for each environment within my solution


Solution

  • The tokenizer task which comes as a part of Release Management Utility Tasks allows to transform config files depending upon the environment.

    A single JSON config file containing all the configuration for all the environments can be used and the task will automatically pick up the right configuration depending upon the environment.

    {
      "<environment>": {
        "CustomVariables": {
        "Variable1": "value1",
        "Variable2": "value2",
      },
        "ConfigChanges": [
            {
              "KeyName": "/configuration/appSettings/add[@key='ServiceURL']",
              "Attribute":"value",
              "Value":"https://ServiceURL"
            },
            {
              "KeyName": "/configuration/appSettings/add[@key='EnableDebugging']",
              "Attribute":"value",
              "Value":"false"
            },
            {
              "KeyName":“/configuration/connectionStrings/add[@name='databaseentities']”,
              "Attribute": "connectionString",
              "value": "Integrated Security=True;Persist Security Info=False;Initial Catalog=DB;Data Source=servername"
            }
        ]
    }
    

    Like this you can have many environments and their configuration in a single JSON file and the tokenizer task will modify your config depending upon the environment on which the deployment is going on.

    Read the details on the above link to know more.