0

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.

Jurijs Kovzels
  • 5,420
  • 3
  • 23
  • 37

1 Answers1

1

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.

Mostafa
  • 3,296
  • 2
  • 26
  • 43