0
ricardo created
Hello, how are you?
We are facing some issues while setting up our solution to deploy throug Azure Pipelines. Following the procedures specified in official documentation hosted here (https://docs.aspnetzero.com/en/aspnet-core-mvc/latest/Setting-Up-an-Azure-Pipeline-Mvc-Core), but it seems outdated.
Recents changes to Azure DevOps solution have removed the Classic Editor option, and now its enforced to use YAML, whatever the deployment method has been chosen. Can some professional assist us on how to deploy by the YAML method? Or sent us an updated documentation.
Best Regards Paulo Estraich
1 Answer(s)
-
0
Hi @ricardo
We will update related document. In the meantime, you just need to run commands below to deploy your app.
yarn
in the root directory of MVC app.npm run build
in the root directory of MVC app.dotnet publish
in the root directory of MVC app.
Could you try this ?