Base solution for your next web application
Open Closed

Deployment through Azure PipeLine #11867


User avatar
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)
  • User Avatar
    0
    ismcagdas created
    Support Team

    Hi @ricardo

    We will update related document. In the meantime, you just need to run commands below to deploy your app.

    1. yarn in the root directory of MVC app.
    2. npm run build in the root directory of MVC app.
    3. dotnet publish in the root directory of MVC app.

    Could you try this ?