What is the difference between the development team and the MSbuild command line

What is the difference between Developer and the MSbuild command line that you use to create general purpose applications? Does use matter and how?

Command line utilities

+7
c #
source share
1 answer

Simply put, the difference is which teams are available. However, for the most part, you can consider VS Command Prompt to be super-installed on the MSBuild command line. The VS command line simply adds additional parameters, such as %PATH% , to enable the VS compiler, performance tools, TypeScript, run dnvm setup, and a few other things.

If you're really interested, check out the C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\Tools VsMSBuildCmd.bat for VsMSBuildCmd.bat and VsDevCmd.bat .

+7
source share

All Articles