fix for .NET assemblies loading - wasn't correctly calling with a working dir
This commit is contained in:
parent
e2a56f1047
commit
1a392bd7cd
1 changed files with 1 additions and 1 deletions
|
|
@ -196,7 +196,7 @@ if (Test-Path $BS.Path.config) {
|
|||
$thisPath = Get-Item $Path -ErrorAction Stop
|
||||
|
||||
if ($thisPath.PSIsContainer) {
|
||||
Get-ChildItem -Filter '*.dll' | % {
|
||||
Get-ChildItem -Path $thisPath -Filter '*.dll' | % {
|
||||
loadassembly $_.FullName
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue