无法在powershell脚本中加载Ninject dll

时间:2014-07-13 17:53:41

标签: .net powershell ninject

我正在尝试在我的一个PowerShell脚本中加载Ninject.dll。用于加载dll的命令是:

Add-Type -Path ".\Ninject.dll"

如果我使用以下命令打印出当前AppDomain中加载的dll:

$assm = [System.AppDomain]::CurrentDomain.GetAssemblies()
$assm | ForEach-Object {Write-Host $_.FullName -foregroundcolor cyan}

然后我可以看到Ninject dll确实已加载到当前的AppDomain

enter image description here

稍后当我尝试在内核实例上调用方法调用时,我收到以下错误

enter image description here

知道可能出现什么问题吗?

0 个答案:

没有答案