From the course: Azure Microservices with .NET Core for Developers

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Configuring the build pipeline

Configuring the build pipeline - Azure Tutorial

From the course: Azure Microservices with .NET Core for Developers

Start my 1-month free trial

Configuring the build pipeline

- [Instructor] Let's configure this bill pipeline. First, we need to select the agent where the build is going to execute on. Because we're using a cross platform technology such as the NET Core, we can choose any agent. As you can see, you can select Windows, Linux or Mac OS. In this case, I'm going to leave the default option of Ubuntu of 1604. You might remember that our unit test project has the tests suffix in its name. In this section, is where you can specify the name pattern for the projects to test. Great, now, because of the Dark net court version that we're using, we have to make sure that it's installed in the agent that we've chosen before running the test. For this reason, let's add a new task in the pipeline to install the correct SDK in the agent. Let's search for core and I'm going to add these use dotNET core task, and I'm going to drag and drop it. So it's the first element in the list. Here, I'm going…

Contents