From 1a392bd7cd8343158bcca70fea0780ec921e20b7 Mon Sep 17 00:00:00 2001 From: code-commit Date: Mon, 15 Jun 2026 18:47:16 +0000 Subject: [PATCH] fix for .NET assemblies loading - wasn't correctly calling with a working dir --- start.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start.ps1 b/start.ps1 index 3799d11..d095c2b 100644 --- a/start.ps1 +++ b/start.ps1 @@ -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 } }