Cruise Control include.projects 无法识别

发布于 2024-11-24 08:31:47 字数 569 浏览 3 评论 0原文

我有一个非常基本的 ccnet.config 文件,在其中我尝试使用 include.projects 标签来包含一个非常基本的项目。由于某种原因,当我使用此标签时,CCNet 服务器将无法启动,并且我在 windows EventLog 中收到以下错误:

ThoughtWorks.CruiseControl.Core.Config.ConfigurationException:无法 从配置文档实例化 CruiseControl 项目。 配置文档可能缺少所需的 Xml 节点 正确填充 CruiseControl 配置。 没有加载类型 用与 Xml 节点匹配的 ReflectorType 属性进行标记 (包括.项目)

这是我的 ccnet.config:

<cruisecontrol>
    <include.projects file="MyTestProject.config" />
</cruisecontrol>

任何建议表示赞赏!

谢谢

I have a very basic ccnet.config file, in which I am trying to use the include.projects tag to include a very basic project. For some reason, when I use this tag the CCNet Server won't start, and I get the following error in windows EventLog:

ThoughtWorks.CruiseControl.Core.Config.ConfigurationException: Unable
to instantiate CruiseControl projects from configuration document.
Configuration document is likely missing Xml nodes required for
properly populating CruiseControl configuration. No loaded type is
marked up with a ReflectorType attribute that matches the Xml node
(include.projects)
.

Here is my ccnet.config:

<cruisecontrol>
    <include.projects file="MyTestProject.config" />
</cruisecontrol>

Any advice appreciated!

Thanks

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

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

发布评论

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

评论(1

愁杀 2024-12-01 08:31:47

正如文档中详细介绍的,正确的语法是:

<cruisecontrol xmlns:cb="urn:ccnet.config.builder">
  <cb:include href="MyTestProject.config"/>
</cruisecontrol>

As detailed in the documentation, correct syntax is:

<cruisecontrol xmlns:cb="urn:ccnet.config.builder">
  <cb:include href="MyTestProject.config"/>
</cruisecontrol>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文