Jurijs Kovzels
Jurijs Kovzels

Reputation: 6220

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

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.

Upvotes: 0

Views: 58

Answers (1)

Mostafa
Mostafa

Reputation: 3302

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.

Upvotes: 1

Related Questions