I have a problem using the events in VS 2008
I want to kill the process of explorer before the build and start it again once the build is done
this is what I put in the pre event:
taskkill /f /im "explorer.exe"
taskkill /f /im "iexplore.exe"
and in the post event:
start explorer.exe
startiexplore.exe
www.yahoo.comwhen I rebuild my application I can see that the events are called, and working fine (the explorer process is closed and then reopened and I get the yahoo window)
but the build process is stuck on line 9
the last line in the output window is: c:\windows\microsoft.net\framework\v3.5\Csc.exe /noconfig /nowarn:1701,1702 / errorreport:prompt /warn:4 /define:DEBUG;TRACE /references..... (cant see the rest)
does VS do something after the post build event is called?