fix for .NET assemblies loading - wasn't correctly calling with a working dir

This commit is contained in:
code-commit 2026-06-15 18:47:16 +00:00
parent e2a56f1047
commit 1a392bd7cd

View file

@ -196,7 +196,7 @@ if (Test-Path $BS.Path.config) {
$thisPath = Get-Item $Path -ErrorAction Stop $thisPath = Get-Item $Path -ErrorAction Stop
if ($thisPath.PSIsContainer) { if ($thisPath.PSIsContainer) {
Get-ChildItem -Filter '*.dll' | % { Get-ChildItem -Path $thisPath -Filter '*.dll' | % {
loadassembly $_.FullName loadassembly $_.FullName
} }
} }