如何为简单的msbuild命令制作批处理文件

时间:2014-11-03 06:13:18

标签: msbuild

我有一个ms构建命令,它想要作为批处理文件执行,以便我可以进一步自动化它。 那么任何人都可以告诉我如何制作一个批处理文件(* .bat),只需点击一下按钮就可以执行命令了吗?

命令:

set msBuildDir=%WINDIR%\Microsoft.NET\Framework\v4.0.30319
call %msBuildDir%\msbuild.exe "D:\tmc600\WIX_Related_files\RIO600_ConnPack_Ver.1.5_WIX\tmc_SetupProject.wixproj" /p:Platform="x86" /p:configuration="Release"

1 个答案:

答案 0 :(得分:0)

尝试按写入方式运行set命令并替换" call"用"开始"在通话命令中。

  @echo off
  Your set command
  start "" "%msBuildDir%\msbuild.exe" "D:\tmc600\WIX_Related_files\RIO600_ConnPack_Ver.1.5_WIX\tmc_SetupProject.wixproj" /p:Platform="x86" /p:configuration="Release"
  pause

另存为name.bat。您可能需要在“开始”中处理参数。这里有一个很好的解释:http://ss64.com/nt/start.html