我在visual-studio-2010中为 Visual Studio 命令提示符打开 Visual Studio 命令行的版本。在内部用于构建库/项目,然后对生成的 DLL 文件执行一些额外的步骤。
将这些行复制到您的Compile and execute other steps.cmd
文件或类似文件中。
@echo off
REM Load Visual Studio's build tools
call "%ProgramFiles(x86)%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86
REM Choose what you want to do, 1 or 2 by (un)commenting
REM 1. Add your cl.exe (or msbuild.exe or other) commands here
REM msbuild.exe MyProject.csproj
REM cl.exe
REM custom-step.exe %*
REM pause
REM 2. Open a normal interactive system command shell with all variables loaded
%comspec% /k
在这个版本的脚本中,我之后“停留”在交互式命令行模式。注释以REM %comspec% /k
仅将脚本用于非交互目的。