From the course: Creating a DevOps Ecosystem for .NET MAUI Developers

Unlock this course with a free trial

Join today to access over 24,900 courses taught by industry experts.

Setting up a basic build in Azure Pipelines

Setting up a basic build in Azure Pipelines - .NET MAUI Tutorial

From the course: Creating a DevOps Ecosystem for .NET MAUI Developers

Setting up a basic build in Azure Pipelines

- [Instructor] With Azure DevOps connected to our GitHub repository, we can set up a basic pipeline. Eventually we'll want this to build for all our platforms we support, but for now we'll set up a build to prepare everything for us. This will be a continuous integration build, so we need to have a couple things. We want this build to be started every time a pool request is added against the main branch. We need to make sure any dependencies required for the build are downloaded. We also want to make sure the code compiles. We can just do this for one platform unless we have platform specific code. If we have platform specific code, we will need to build for all possible platforms. Finally, we need to run any unit test. For this video we are going to handle when the pipeline is kicked off and setting up all the dependencies. For future videos, we will actually build the code and run unit test. So we're going to start by opening the pipeline section and creating a new pipeline. So a…

Contents