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"有什么区别?
- 为什么 C# 中的堆栈大小正好是 1 MB? 2022-01-01
- 在 C# 中异步处理项目队列 2022-01-01
- CanBeNull和ReSharper-将其用于异步任务? 2022-01-01
- C# 通过连接字符串检索正确的 DbConnection 对象 2022-01-01
- 使用 rss + c# 2022-01-01
- 带问号的 nvarchar 列结果 2022-01-01
- 是否可以在 .Net 3.5 中进行通用控件? 2022-01-01
- Azure Active Directory 与 MVC,客户端和资源标识同一 2022-01-01
- Windows 喜欢在 LINUX 中使用 MONO 进行服务开发? 2022-01-01
- 在 LINQ to SQL 中使用 contains() 2022-01-01