在我的power shell脚本中,我正在加载一个自定义程序集,然后通过New-Object
实例化该程序集的类。
Assembly.LoadFile()
成功执行,但New-Object
语句给出了以下异常。
New-Object : Exception calling ".ctor" with "1" argument(s): "Could not load file or assembly 'MyAssembly, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' or one of i
ts dependencies. The system cannot find the file specified."
脚本:
[System.Reflection.Assembly]::LoadFile("MyAssembly.dll")
$a=New-Object MyAssembly.MyClass -ArgumentList "arg1"
此自定义程序集仅引用以下程序集
System
System.Core
System.Runtime.Serialization
System.Xml.Linq
System.Data
System.Xml
我尝试显式加载System.Runtime.Serialization dll,如下所示。但同样的例外
[System.Reflection.Assembly]::Load("System.Runtime.Serialization, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")
有什么想法吗?
答案 0 :(得分:6)
不要使用LoadFile
。由于您使用的是Powershell V2,因此首选方法为Add-Type
Add-Type -AssemblyName "MyLibrary.dll"
http://www.dougfinke.com/blog/index.php/2010/08/29/how-to-load-net-assemblies-in-a-powershell-session/列出了将库导入当前shell运行空间的不同方法列表。
http://technet.microsoft.com/en-us/library/hh849914.aspx是关于Add-Type的technet文档,其示例包括如何在加载的库中使用静态方法
答案 1 :(得分:0)
当我尝试从64位Windows Powershell ISE调用32位Oracle.DataAccess.dll时遇到了这个问题。后来我在Windows Powershell ISE(x86)中使用了相同的代码,我能够调用Oracle.DataAccess.dll文件。干杯!