inksmithy
inksmithy

Reputation: 546

How can a running web deployment process be cancelled?

I'm attempting to deploy my web app to a local test server using VS2010 One Click Publish and it seems I've put incorrect settings in to the web deployment dialogue. I didn't realise this until I'd pressed the publish button.

After thinking the deployment was taking an unusually long time, I looked at the Output window and say the following error:

C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v10.0\Web\Microsoft.Web.Publishing.targets(3847,5): Warning : Retrying the sync because a socket error (10054) occurred.  
Retrying operation 'Serialization' on object sitemanifest (sourcePath). Attempt 1 of 10.

Now I think I know what I've done wrong, this question isn't about that.

Each attempt is taking about three or four minutes. How can I stop the web deployment process when it is doing something like this?

Upvotes: 2

Views: 296

Answers (1)

tdykstra
tdykstra

Reputation: 6060

You can press CTRL-BREAK during publishing to cancel the process.

Upvotes: 2

Related Questions