Build

https://docs.microsoft.com/en-us/visualstudio/ide/reference/build-devenv-exe

Builds a solution using a specified solution configuration file.

Devenv SolutionName /build SolnConfigName [/project ProjName [/projectconfig ProjConfigName]] 

Rebuild

https://docs.microsoft.com/en-us/visualstudio/ide/reference/rebuild-devenv-exe

Cleans and then builds the specified solution configuration.

devenv SolutionName /rebuild SolnConfigName [/project ProjName] [/projectconfig ProjConfigName]  

This example cleans and rebuilds the project CSharpWinApp, using the Debug project build configuration within the Debug solution configuration of MySolution.

devenv "C:\Documents and Settings\someuser\My Documents\Visual Studio\Projects\MySolution\MySolution.sln" /rebuild Debug /project "CSharpWinApp\CSharpWinApp.csproj" /projectconfig Debug

Jenkins中使用

在Jenkins中使用的时候,需要用devenv.com而不是devenv.exe

最新文章

  1. SVN服务器搭建之提交日志模版构建
  2. 大数的乘法(C++)
  3. AS错误:Please configure your build for VectorDrawableCompat.
  4. WebApp远程调试工具
  5. Android Handler的使用
  6. 2014年企业改善IT风险管理的5个办法
  7. 1741: [Usaco2005 nov]Asteroids 穿越小行星群
  8. Android Studio 或 IntelliJ IDEA获取数字签名的方法
  9. hdu1695 GCD(莫比乌斯入门题)
  10. UnicodeEncodeError: 'gbk' codec can't encode character '\xa0' in position 46:illegal multibyte sequence
  11. ArcGIS中实现指定面积蜂窝(正六边形)方法
  12. linux下安装xhprof
  13. Android,View转换bitmap,bitmap转换drawable
  14. centos7下安装docker(15.7容器跨主机网络---calico)
  15. golang使用chan注意事项
  16. java-学习5
  17. Nginx常用配置整理
  18. Caused by: org.apache.ibatis.binding.BindingException: Parameter 'parameter' not found.解决
  19. 中华人民共和国建筑工业行业标准—IFC详细解读 第五篇
  20. The Road to learn React书籍学习笔记(第一章)

热门文章

  1. ie8及其以下版本兼容性问题之文本省略
  2. 关于MVC4.0版本以上的RegisterBundles用法
  3. vim之快速跳转
  4. HDU_1907_基础博弈nim游戏
  5. Can't find variable: SockJS vue项目
  6. H5-data属性的一个问题
  7. Nginx.conf介绍
  8. 子元素设置margin-top作用到了父元素
  9. eas之添加表格列宽自动调整设置
  10. 【剑指Offer】50、数组中重复的数字