How to create a Batch File for Visual Studio Command Prompt

后端 未结 7 829
既然无缘
既然无缘 2020-12-02 22:29

I want to create a batch file for Visual Studio 2008 x64 Cross Tools Command Prompt to do something continuesly in my PC, here is the senario.<

7条回答
  •  佛祖请我去吃肉
    2020-12-02 22:57

    Make the first line of your batch file set up the VS environment:

    call "C:\Program Files\Microsoft Visual Studio 2008\VC\vcvarsall.bat" x86_amd64
    svn update
    delete some files
    MSBuild MySolutiuon.sln
    ... more commands ...
    

    x86_amd64 is the argument used for x64 Cross Tools Command Prompt.

    Once vcvarsall.bat has run, msbuild will be available in the path for the rest of the commands in your batch file.

    Alternatively, if you aren't using Visual C++, you might prefer to set up the environment with this line (instead of the call to vcvarsall.bat):

    For VS 2008:

    call "%vs90comntools%vsvars32.bat"
    

    For VS 2010:

    call "%vs100comntools%vsvars32.bat"
    

    For VS 2012:

    call "%vs110comntools%vsvars32.bat"
    

    For VS 2013:

    call "%vs120comntools%vsvars32.bat"
    

    For VS 2015:

    call "%vs140comntools%vsvars32.bat"
    

    For VS 2017:

    Batch is now called vc not vs.

    call "%vs140comntools%\..\..\VC\Auxiliary\Build\vcvars32.bat"
    

    or better

    call "%vs140comntools%\VsDevCmd.bat"
    

提交回复
热议问题