How to deploy ASP.NET 5 app to Azure without triggering build in Azure with VS code

57 Views Asked by At

What is the best way to deploy the output of dnu publish to Azure website? I do not want build to trigger at the Azure side, because it takes forever and often breaks.

1

There are 1 best solutions below

0
Mostafa On

One trick i do is to exclude un needed folders such as bower or node packages or any other folders by adding it to the exclude configuration in project.json.

check out a reference for the project.json exclude list to follow: http://docs.asp.net/en/latest/dnx/projects.html#building

hope this helps.