VsDevCmd vs VsMSBuildCmd

What is the difference between VsDevCmd.bat and VsMSBuildCmd.bat in Visual Studio 2015 (CTP 5)?

Both are located in C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\Tools aka VS140COMNTOOLS .

+7
visual-studio visual-studio-2015 msbuild
source share
1 answer

Considering the code for VsMSBuildCmd.bat , it sets the VS140COMNTOOLS environment VS140COMNTOOLS from the registry and also adds MSBuild to the PATH .

VsDevCmd.bat does the same plus adds a bunch of other directories to PATH and sets a few more environment variables, most of which are used by the Visual C ++ compiler. The path to the TypeScript compiler is also added.

+1
source share

All Articles