有什么方法可以将我的 C# 项目添加为 IronPython / IronRuby 中的参考吗?

发布于 2024-08-26 20:10:33 字数 106 浏览 6 评论 0原文

我知道如何将现有 .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 技术交流群。

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

发布评论

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

评论(2

天涯沦落人 2024-09-02 20:10:33

您无法添加对项目的引用,因为它是 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) or require (IronRuby) with the full path of your project assembly like c:\dev\MyProject\bin\Debug\MyProject.dll.

☆獨立☆ 2024-09-02 20:10:33

我知道您可以使用 SharpDevelop 来做到这一点。
有点像这样:

http://i42.tinypic.com/hwb8z9.gif

I know you can do that using SharpDevelop.
Kinda like this:

http://i42.tinypic.com/hwb8z9.gif

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