I've a application built with ASP.NET, and would like to integrate Virtual Machine with CI/CD service of Azure DevOps. I'm sure that Web Deploy is installed in VM, Agent Pool is configurated and Azure Pipelines is "linked" with Agent Pool and Github repository. But when i execute the Pipeline, it don't generate any error ,however instead of compile or publish the code, it simply clone which is in repository and copy to _work/1/s
inside VM. Could someone help me?
0
votes
1 Answers
1
votes
There are probably no corresponding tasks for compiling or publishing in your pipeline.
As you are building a ASP.NET application and using Classic UI pipeline, you can apply ASP.NET template:
In the template:
The 'Build solution' task is for building and 'Publish Artifact' task is for publishing.
If you want to know detailed information of a task, click it and choose 'More Information'. It will link you to the document for the task.
To learn more about build and release tasks, you can read this document.
it don't generate any error
. It should be in the logs. – Shridhar R Kulkarni