9

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

riQQ
  • 9,878
  • 7
  • 49
  • 66
Mike Murphy
  • 910
  • 2
  • 11
  • 27
  • Just checking in to see if the information provided was helpful. Please let us know if you would like further assistance. – Leo Liu May 16 '19 at 01:07
  • Did you get a solution to deployment of an asp.net website? It does not produce a package and IISWebAppDeploymentOnMachineGroup is built around a package, right? – mlhDev Dec 31 '20 at 15:33
  • I am also searching for this. Is there any update on this? Could you please tell me if you found a solution? – jayaprakash R May 09 '23 at 11:42

1 Answers1

0

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.

desertnaut
  • 57,590
  • 26
  • 140
  • 166
Leo Liu
  • 71,098
  • 10
  • 114
  • 135
  • 1
    Was the question about a Website, not a Web Application. This template is for a web application. – Andy McCluggage Sep 15 '21 at 15:44
  • 1
    That Azure Task is for the wrong kind of solution; It does not reflect the needs the original poster and is not helpful to people looking for a solution. Try instead to read the original post and understand the needs of the person asking the question before spamming an automated and incorrect response. I'm having the same issue as the OP and your solution does not work. – honestduane May 25 '23 at 17:42