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"有什么区别?
基础教程推荐
- 如果有人提交恶意软件Nuget包怎么办? 2022-01-01
- WPF 模态进度窗口 2022-01-01
- .NET SerialPort DataReceived 事件未触发 2022-01-01
- 我应该在后面的代码中直接使用 Linq To SQL 还是使 2022-01-01
- C# 从 List<List<int>> 中删除重 2022-01-01
- 禁止输入少量字符,例如'<'、'&a 2022-01-01
- Azure Functions:CosmosDBTrigger 未在 Visual Studio 中触发 2022-01-01
- 如何使用 .Net 检查 Active Directory 服务器是否已启动并正在运行? 2022-01-01
- 当值可以是对象或空数组时反序列化 JSON 2022-01-01
- Moq It.Is<>不匹配 2022-01-01
