有什么方法可以将我的 C# 项目添加为 IronPython / IronRuby 中的参考吗?
我知道如何将现有 .dll 引用到 IronPython,但是有什么方法可以像在 Visual Studio 项目之间那样将我的项目添加为引用吗?
或者创建一个单独的类库是最佳实践?
I know how to reference an existing .dll to IronPython, but is there any way to add my project as a reference like I can between Visual Studio projects?
Or is it best practice to create a separate class library?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您无法添加对项目的引用,因为它是 Visual Studio 的东西。
我建议在开发过程中,使用项目程序集的完整路径调用
import
(IronPython) 或require
(IronRuby),例如 c:\dev\MyProject\bin\调试\MyProject.dll。You can't add reference to a project since it's a Visual Studio thing.
I suggest that during the development process, call
import
(IronPython) orrequire
(IronRuby) with the full path of your project assembly like c:\dev\MyProject\bin\Debug\MyProject.dll.我知道您可以使用 SharpDevelop 来做到这一点。
有点像这样:
http://i42.tinypic.com/hwb8z9.gif
I know you can do that using SharpDevelop.
Kinda like this:
http://i42.tinypic.com/hwb8z9.gif