Reputation: 107
we are on VS2015, but want to migrate on VS2019. We have big build file, inside of it we build 17+ solutions. in the beginning of the build file there is
call "%VS140COMNTOOLS%vsvars32.bat"
it's targeting
C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\Tools
if we open C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\Tools
there is no any vsvars32.bat
so, what is an equivalent of this VS2015's file for VS2019?
Upvotes: 3
Views: 7498
Reputation: 345
“The VsDevCmd.bat file sets the appropriate environment variables to enable command-line builds.”
“ Note Visual Studio 2015 and earlier versions used VSVARS32.bat, not VsDevCmd.bat for the same purpose.”
Upvotes: 4