PowerShell - 具有Join-Path的Add-Type

时间:2017-02-03 05:42:04

标签: powershell add-type

当我使用以下代码时,不会加载程序集和包含的类型,也不会引发错误。

Add-Type -Path (Join-Path $PSScriptRoot "..\..\SDK\Bin\Microsoft.Crm.Sdk.Proxy.dll");

只有当我将路径保存在专用变量中时才能正常工作:

$assemblyPath = (Join-Path $PSScriptRoot "..\..\SDK\Bin\Microsoft.Crm.Sdk.Proxy.dll")
Add-Type -Path $assemblyPath;

知道为什么第一种方法不起作用?

0 个答案:

没有答案