VS工程的自动编译
一.实现功能:
编写"*.bat"文件完成VS解决方案的自动编译。
二.环境设置:
首先将MSBuild的路径添加到环境变量“Path”中去。MSBuild的路径32位形如:“C:\Windows\Microsoft.NET\Framework\v4.0.30319”;64位形如:“C:\Windows\Microsoft.NET\Framework64\v4.0.30319”。
三:*.bat文件编写
1.创建一个文本文档,将其后缀由"*.txt"修改为 “*.bat”;如release.bat.
2.在release.bat文档中输入如下内容
del /F /Q release/test.exe
echo 编译 test
cmd /c MSBuild test\test.sln /t:Clean /p:Configuration=Release /p:Platform="x86"
cmd /c MSBuild test\test.sln /t:build /p:Configuration=Release /p:Platform="x86"
@echo off
if not exist release\test.exe goto error
@echo on
echo=======================================
echo 编译成功
echo=======================================
pause
exit
:error
echo======================================
echo 编译出错
echo======================================
pause
注意:.bat所在目录,为编写的内容中的 “./”目录