Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I Build and Publish .Net Website using Azure DevOPs Pipeline

Is there support for building and publishing a .net Website (not a webapp) in Azure Devops?

like image 445
Mike Murphy Avatar asked May 13 '19 19:05

Mike Murphy


1 Answers

How do I Build and Publish .Net Website using Azure DevOPs Pipeline

The short answer is yes.

Azure DevOPs support configure continuous integration (CI) and continuous delivery (CD) for .NET core or ASP.NET application, the ASP.NET application including the ASP.NET web site.

There is a template ASP.NET, which you can use it to build the website project (Adjust your tasks as needed):

enter image description here

Check this document Continuous Integration Using Azure DevOps Pipelines And .NET Project for some more details.

Hope this helps.

like image 200
Leo Liu-MSFT Avatar answered Nov 19 '22 06:11

Leo Liu-MSFT