Last active
December 21, 2015 18:19
-
-
Save dgroft/6346213 to your computer and use it in GitHub Desktop.
Launching Visual Studio 2008 with temporary environment variables and temporarily appending to PATH.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
' invoke vsvars32.bat. just do it. | |
call "C:\Program Files\Microsoft Visual Studio 9.0\Common7\Tools\vsvars32.bat" | |
' temporary environment variables assignment | |
' set ENV_VAR = value | |
' temporary path modification | |
set path=%path%;C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\bin;C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE | |
' launch visual studio | |
devenv SuperAwesomeSolution.sln |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment