Reputation: 1001
I have an error when I publish my dll from appveyor to azure by FTP, because the dll is current used by azure. When I stop my app on azure portal, there are no error. The error message is for the dll: The remote server returned an error: (550) File unavailable (e.g., file not found, no access)
How to deploy my application with not manual stop web site on azure before deploy with FTP from appveyor ?
Upvotes: 0
Views: 128
Reputation: 96
You can create a new Deployment slot on your app.
With a deployment slot you can publish a new version, test it and if is correct swap with production slot.
Upvotes: 1