如何为.Net项目的Nant创建构建文件

发布于 2024-12-08 02:55:19 字数 175 浏览 0 评论 0原文

我已经创建了 c# 解决方案(.sln)文件以及 .cs 文件的构建文件,但是如果我想在解决方案中的多个项目中仅创建一个项目的构建文件,我会收到其中一些错误就像转义序列字符“\”等。

我将项目文件包含为

I have created build files of c# solution(.sln) files as well as the .cs file, but if i want to create a build file of only one project out of more than one project in a solution, i gets error some of those are like escape sequence character "\" etc.

I am including the project file as <include name="projectname.csproj" />

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夢归不見 2024-12-15 02:55:19

NAnt 不直接使用项目文件。使用 csc 任务或 msbuild 来构建解决方案。您可以在文档中阅读有关这些任务的更多信息。

更新:
您可以在 http://nant.sourceforge.net/release/latest/ 阅读最新文档帮助/

更新2:
以下是答案的链接,显示如何通过调用 msbuild 来实现此目的: < msbuild>任务或带有 NAnt 的 msbuild.exe?

NAnt does not use the project files directly. Either use the csc task or the msbuild to build a solution. You can read more in the documentation abou these tasks.

UPDATE:
You can read the latest documentation at http://nant.sourceforge.net/release/latest/help/

UPDATE 2:
Here's a link to an answer ashowing how you can achieve this by calling msbuild: <msbuild> task or msbuild.exe with NAnt?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文