When I run a build, sometimes I see a code change I forgot. So I want to cancel the build. Due to the build locking up my IDE, I have to use Ctrl+Break, however, it does not respond fast enough.
I am looking for a command line approach so I can just hit a batch file in my quick launch. I tried this command:
Taskkill /IM aspnet_compiler.exe /F
However, this only stops the current project from building and the next one in my multi-project solution starts up.
How can i cancel a build using command line?
I had to add the /t
flag in order to kill the entire MSBuild.exe
process tree. That is:
taskkill /im msbuild.exe /f /t
In my case, I start MSBuild.exe
from Gnu Emacs and for some reason Gnu Emacs isn't always able to kill the MSBuild.exe
if I want to restart it. I use this as a backup. I'm doing c++ in VS2010.
The following stops the builds for all projects, across all instances of Visual Studio:
taskkill /im msbuild.exe /f
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With