Reputation: 6220
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
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