如何在Iron Python脚本中加载可移植的.NET库?

时间:2013-05-08 14:03:27

标签: python .net portable-class-library

从Python脚本加载可移植.NET库(在标准.NET和Silverlight环境中使用)时遇到了严重问题。

.NET DLL文件版本为4.0.3.319.233(System.Core.DLL),IronPython为2.7.1,以32位/ x86模式运行。在.NET 4下使用C#的Visual Studio 2010 4.还安装了用于可移植库使用的Microsoft .NET更新KB2468871(版本2)。

如果我尝试从Python脚本加载库:

clr.AddReferenceToFileAndPath(UsedPath+"\\MyNamespace\\MyPortableLibrary.dll")

无法访问它,当脚本到达某个类型时,它会说: “namespace#”中的“[可移植程序集中的类型]”是只读“ 指示程序集尚未加载(或作为Silverlight,并且不能由Python脚本使用)。

将代码更改为:(来自System.Reflection的汇编类)

PortableAssembly = Assembly.LoadFrom(UsedPath+"\\MyNamespace\\MyPortableLibrary.dll") # load through .NET Reflection, Python won't load Portable assembly properly!
clr.AddReference(PortableAssembly)

导致错误: 发生了 exceptions.IOError 消息:[Errno 2]无法加载文件或程序集'System.Core,Version = 2.0.5.0,Culture = neutral,PublicKeyToken = 7cec85d7bea7798e,Retargetable = Yes'或其依赖项之一。系统找不到指定的文件。

最后一个代码似乎有效,当从另一个.NET程序中自动调用Python脚本,实例化它自己的Python引擎时,但是当从Visual Studio中的Python项目执行脚本时会出现上述错误。 VisualStudio中的Python设置,Tools \ Options \ Python Tools \ Interpreter选项适用于x86 / 32位模式。所有环境参数都显示使用了.NET 4。

我现在有多种方法可以从C#/ .NET生成的Python引擎中修复它,但是如何在基本的IronPython运行时环境中加载可移植程序集,以便它在正确的.NET 4环境中工作,不试图加载任何.NET 2的东西?

更新: 我在MS KB2468871更新后重新启动并重建了我的可移植库,并且还为VS卸载了IronPython和Python工具,用版本2.7.3和1.5(VS2010)替换它们。 “System.Core,Version = 2.0.5.0”的错误仍然存​​在。

2 个答案:

答案 0 :(得分:0)

FileNotFoundException表示正在使用Assembly.LoadFile而不是Assembly.LoadFrom加载程序集,但未正确处理程序集策略。我不确定Visual Studio中的Python代码是如何工作的,但如果您在加载可移植程序集之前能够运行任何引导程序代码,请尝试我在此处显示的代码: PCL Retargetable Assembly not redirected inside MS CRM Plugin

答案 1 :(得分:-1)

使用sys.path将pathes添加到.net dll所在的位置:

import sys
sys.path.append("c:\MyDotNetDir");

import clr
clr.AddReference("MyDotNetAssembly.dll")

# do not forget to import the namespace

import Erik.MyDotNetAssemblyNamespace

inst = Erik.MyDotNetAssemblyNamespace.MyDotNetObject()