如何在 Visual Studio 中使用 IronPython 应用程序中的 C# 类库?
我是 Visual Studio 的新用户,我试图弄清楚如何从同一解决方案中的 IronPython 项目加载作为解决方案一部分构建的 C# 类库。
基本上,我正在尝试执行中的场景在 Visual Studio 中调试类库,但使用 IronPython 脚本而不是控制台应用程序。
通常在解决方案之外我会使用:
import clr
clr.AddReferenceToFile(fname)
我应该为 fname
添加什么?
I am a new user of Visual Studio, and I am trying to figure out how to load a C# class library built as part of a solution from an IronPython project in the same solution.
Basically, I am trying to do the scenario in How to debug a class library in Visual Studio but using an IronPython script instead of the console application.
Normally outside a solution I would use:
import clr
clr.AddReferenceToFile(fname)
What should I put in for fname
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以配置
SearchPath
目录然后:
或者您也可以指定完整路径:
这是一篇 博客文章 描述IronPython 中加载程序集的不同函数。
You could configure the
SearchPath
directoryand then:
or you could also specify the full path:
Here's a blog post describing the different functions for loading assemblies in IronPython.