使用 trunk Boo 编译 Ayende 的 Binsor
我正在尝试更新我们的参考资料,包括 Boo。编译 Binsor 时,我遇到了一堆错误,我一次解决一个错误。经过大量源浏览和谷歌搜索后,我无法弄清楚如何修复以下行(TransformUnknownReferences.cs,第 115 行):
ExternalConstructor constructor = new ExternalConstructor(TypeSystemServices, constructorInfo);
ExternalConstructor 构造函数,从修订版 3260 开始,是:
public ExternalConstructor(IReflectionTypeSystemProvider provider, ConstructorInfo ci)
我还没有弄清楚 TypeSystemServices 来自哪里,或者如何我从 Binsor 代码中的这一点进入 IReflectionTypeSystemProvider。如果任何具有深厚 Binsor 和/或 Boo 知识的人知道一个简单的修复方法,请说出来:)。
更好的是某种隐藏的 Binsor 存储库,其中的代码在过去六个月内已更新。
I'm trying to update our references, including Boo. When compiling Binsor, I'm getting a bunch of errors, which I'm hacking away one at a time. After much source browsing and googling, I'm unable to figure out how to fix the following line (TransformUnknownReferences.cs, line 115):
ExternalConstructor constructor = new ExternalConstructor(TypeSystemServices, constructorInfo);
The ExternalConstructor constructor, as of revision 3260, is:
public ExternalConstructor(IReflectionTypeSystemProvider provider, ConstructorInfo ci)
I have not figured out where TypeSystemServices comes from, or how I get to an IReflectionTypeSystemProvider from this point in the Binsor code. If anyone with deep Binsor and/or Boo knowledge knows of an easy fix, please speak up :).
Better yet would be some sort of hidden Binsor repository, where the code has been updated during the last six months.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该代码非常旧。 Rhino.Commons 的当前存储库位于 github 上。
That code is very old. The current repository of Rhino.Commons is on github.