Continuous delivery is the software engineering approach of extending the continuous integration pipeline to deploy the build output (or build drop) on an environment. Traditionally, every application's delivery pipeline consists of multiple stages, such as development, integration, UAT, and production. At each stage the build drop or build output goes through multiple stages of testing and finally release to production. Each stage/environment has a team responsible for validating the environment after applying the new update by running through multiple categories of tests, like acceptance tests, regression tests, integration tests, functional tests, load tests and performance tests. Continuous delivery makes the routine affair of deployments easy: by defining deployment in terms of code and configuration, we are making it less error prone and more predictable.
VSTS allows you to automate...