如何将 C# 项目引用添加到 Cruise Control.net

发布于 2024-10-15 07:06:11 字数 259 浏览 1 评论 0原文

我是巡航控制新手。我已经使用 ccnet.config 文件添加了项目,它显示并给出了编译错误。我发现该项目依赖于一个未被巡航控制编译的参考项目。如何解决这个问题。

假设我正在构建依赖于项目 B 的项目 A。项目 B 作为参考添加到项目 A 中。所有项目都在源代码管理中。我通过配置 ccnet.config 文件将项目 a 添加到巡航控制。当我单击“构建”时,提示缺少项目 B 的某些方法。当我检查文件夹时,我发现 Cruise Control 未从源代码管理获取项目 B 的最新版本。

I am new to cruise control. I have added the project using ccnet.config file and it shows and gives a compilation error. I found that the project is dependent on a reference project that is not being compiled by cruise control. how to fix this.

lets say I am building project A which is dependent on project B. Project B is added as a reference in project A. all the projects are in source control. I added the project a to cruise control by configuring ccnet.config file. when I click build is says some methods are missing that are part of project B. When I checked the folder I found that cruise control is not getting the latest version of project B from source control.

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

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

发布评论

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

评论(1

醉梦枕江山 2024-10-22 07:06:11

通常,C# 项目文件包含引用依赖项目的引用部分。确保依赖项的源代码可在 .csproj 文件用于引用它们的相同相对目录中的源项目中使用。使用 msbuild 编译 C# 项目也会自动编译依赖项。

Normally C# project files include a references section which reference dependent projects. Ensure that the source code for the dependencies is available to the source project in the same relative directories as the .csproj file is using to reference them. Compiling the C# project using msbuild will automatically compile the dependencies as well.

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