What is the difference between using #39;devenv#39; and #39;msbuild#39; in CruiseControl.NET builds?(在 CruiseControl.NET 构建中使用“devenv和“msbuild有什么区别?)
问题描述
使用 <devenv> 的主要区别是什么?标签和 <msbuild>标签在 CruiseControl.NET 中?
What is the main difference between using the <devenv> tag and the <msbuild> tag is in CruiseControl.NET?
我知道它们调用不同的可执行文件,但有时我会得到不同的结果(就编译时的通过/失败而言),我想知道为什么两个构建命令之间存在差异.
I understand they call different executables, but sometimes I get different results (as far as pass/fail at compile time), and I would like to know why there is a difference between the two build commands.
推荐答案
基本上 devenv (Visual Studio) 封装了 MSBuild 并添加了许多 Visual Studio 特定的属性.
Basically devenv (Visual Studio) wraps MSBuild and add lots of Visual Studio specific properties.
要使用 devenv,您需要在计算机上安装 Visual Studio.要使用 MSBuild,您只需要拥有 .NET 框架.
To use devenv you need Visual Studio installed on your computer. To use MSBuild you only need to have the .NET framework.
这篇关于在 CruiseControl.NET 构建中使用“devenv"和“msbuild"有什么区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 CruiseControl.NET 构建中使用“devenv"和“msbuild"有什么区别?
基础教程推荐
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- c# Math.Sqrt 实现 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- rabbitmq 的 REST API 2022-01-01