devenv xxx.sln /make allwhere xxx is the name of the application. This will create both the debug and release versions of the application executable. If you want to compile only one of them, type
devenv xxx.sln /make "all - debug"or
devenv xxx.sln /make "all - release"For each command, the executable user will be created in Debug
Debug\xxx.exe -F ..\..\sample.xxx
devenv user.sln /make all /rebuildin order to clean and rebuild everything.