6
votes

We are in process of creating architecture for VSTS CI/CD to deploy our web app to our Azure App Services. We want to exclude the web.config while deploying it to the Azure server as we are directly modifying the web.config on the different environment. CI Tasks looks like this: CI Taks

CD Task: Deploy Azure App Service I am aware of other ways of updating the web.config https://docs.microsoft.com/en-us/vsts/build-release/tasks/transforms-variable-substitution, but in our case we want to skip the web.config file. I couldn’t find the option to skip file in during release in VSTS as mentioned in this thread How do I exclude the .cs files within an artifact from a vs-team-services CI build? Is there a way to exclude certain files while building and deploying the release?

4
Is your build process generating a webdeploy package?Daniel Mann
Hey Daniel. Answer is 'Yes'bluemoon522

4 Answers

17
votes

Added -skip:objectName=filePath,absolutePath=web\.config in additional arguments. This skips updating the web.config file during deployment. Azure App Service Deployment

8
votes

You can exclude the web.config before publishing artifacts in your build definition: copy the web packages files to a directory (such as $(build.binariesdirectory)), then copy the files exclude web.config to another folder (such as $(Build.ArtifactStagingDirectory)/package), and zip the files under $(Build.ArtifactStagingDirectory)/package. And finally publish the zip file as build artifacts.

Details changes in the build definition as below:

  1. Change the MSbuild arguments as /p:OutDir="$(build.binariesdirectory)\\" in Visual Studio Build task.

    enter image description here

  2. Add a Copy Files task after Visual Studio Build task. Settings for this task as below:

    enter image description here

  3. Add Archive Files task after Copy Files task. And settings as below:

    enter image description here

  4. Change the Publish Artifacts task as below:

    enter image description here

Now the build artifacts are exclude web.config file.

1
votes

Additional arguments

-skip:objectName=filePath,absolutePath=\\Configuration\\AppSettings\\Base.config

enter image description here

1
votes

you can add

-skip:objectName=filePath,absolutePath='.*\PackageTmp\Web.config$'

in Additional Arguments in "Deploy IIS WebSite/App" deployment VSTS task, this will not deploy your root web.config file.