Azure Devops - Create a CI / Build Pipeline
I n this article, we will cover how to add new pipeline to Devops project. Go to https://dev.azure.com /. Sign in with your credentials. Open the Devops Organization and Open the listed project. To understand, how to create Devops Organization and project, Go to my previous article . Now, We will create CI/ Build pipeline for C# project so that developers can work on code and checkin their changes. Pipeline will generate build artifacts, which will be further sent to CD / Deployment pipeline for deployment on various servers like Pre-Prod or Prod servers. Please see the below image for more understanding. CI stands for Continuous Integration and CD stands for Continuous Deployment. Go to Pipelines in the left menu. Click on New Pipeline. This screen will appear. There are two ways to create pipeline One way is using classic editor and other is using yaml code. classic editor is the way of creating pipelines as was done in TFS earlier....