博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
msbuild编译
阅读量:5014 次
发布时间:2019-06-12

本文共 393 字,大约阅读时间需要 1 分钟。

@echo off

cd /d %~dp0

if exist output.log del /q /f output.log

if exist success.txt del /q /f success.txt
call "%VS140COMNTOOLS%vsvars32.bat"
msbuild.exe ***.sln /t:Rebuild /p:Configuration=Release /p:Platform=win32 /p:VisualStudioVersion=14.0 /l:FileLogger,Microsoft.Build.Engine;logfile=output.log /m
if %errorlevel% equ 0 echo > success.txt

转载于:https://www.cnblogs.com/hqu-ye/p/9409453.html

你可能感兴趣的文章
[leetcode]Count and Say
查看>>
cookie、session和token的概念入门
查看>>
保护网站页面内容+版权
查看>>
Golang模拟客户端POST表单功能文件上传
查看>>
重启进程
查看>>
js 进度条效果
查看>>
RelativeLayout
查看>>
distinct!!!!!!!!!!!!!!!!!!
查看>>
input type
查看>>
Javascript脚本 :Function 对象的定义和使用
查看>>
工作疑问之AWS ubuntu16.04 修改网卡名
查看>>
data:image/png;base64
查看>>
private关键字
查看>>
通过Performance Log确定磁盘有性能问题?
查看>>
form快速转json serialize
查看>>
POJ_1185_炮兵阵地 dp+状态压缩
查看>>
【笔记】Collection
查看>>
java-运算符,IO输入输出,文件操作
查看>>
各种笔记备忘
查看>>
[linux驱动]linux块设备学习笔记(一)
查看>>