I came up with a rude method that works well for me.
I have the following batch of script.
@echo off echo KILL BILLd for /L %%i in (1,1,10) do ( Taskkill /IM aspnet_compiler.exe /F timeout 1 )
(Above, 10 = seconds)
Then I create a shortcut for this batch script in the same folder, which allows me to do additional ones.
- Assign an icon image for my quick launch bar.
- Set it to minimize.
- Assign a global keyboard shortcut.
In VS2010, I installed CTRL + SHIFT + B , like all my builds. (do not rebuild).
For the shortcut and since my fingers tend to still move in this area when I see a forgotten code change. Keyboard shortcut CTRL + SHIFT + ALT + B.
source share