Visual Studio 2008 can load a solution upon startup. Can it also run it automatically after it loads it? Like clicking on the "Run without debugging' button?
Addition: Michael Mrozek's answer was helpful & accepted. But for some reason, when V开发者_JAVA技巧S runs, its attaching the debugger. Looking for a way for debugger not to get attached.
DevEnv.exe
takes /Run
and /RunExit
arguments:
/Run Compiles and runs the specified solution.
/RunExit Compiles and runs the specified solution then closes the IDE.
I don't think solutions can be run immediately after being loaded. Why do you need this?
精彩评论