Azure web deployment / publishing is constantly stuck

every time I try to publish my web application to get it, it gets stuck, how can I determine what the problem is? logs, etc., I see nothing but output, but this is not enough to diagnose the problem.

enter image description here

+7
azure web-deployment webdeploy
source share
2 answers

Thus, I ran into this problem in order to set the parallel assembly parameters of the visual studio to 1.

this will force the visual studio to build each individual project one by one, and this way you can diagnose if something happens wrong at the assembly stage or not.

fortunately nothing happened to the build scene for me, and my project got well published.

+8
source share

The same thing that I came across many times, the process got stuck while publishing a web application. This is due to network speed. Maybe at that time your network speed is slow. Make sure your network speed is high when publishing your network. This is a job for me.

+1
source share

All Articles