如何为.Net项目的Nant创建构建文件
我已经创建了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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?