From 64746af3716de5201c0de42baa7e76ee6ad4f7bc Mon Sep 17 00:00:00 2001 From: Adrian Stevens Date: Mon, 31 May 2021 22:02:43 -0700 Subject: [PATCH] Minor cleanup in AssemblyManager --- Meadow.CLI.Core/DeviceManagement/AssemblyManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Meadow.CLI.Core/DeviceManagement/AssemblyManager.cs b/Meadow.CLI.Core/DeviceManagement/AssemblyManager.cs index b30c48e3..15df40bd 100644 --- a/Meadow.CLI.Core/DeviceManagement/AssemblyManager.cs +++ b/Meadow.CLI.Core/DeviceManagement/AssemblyManager.cs @@ -36,7 +36,7 @@ static Collection GetAssemblyNameReferences(string fileNa fileName = Path.Combine(path, fileName); } - if (Path.GetExtension(fileName) != ".exe") + if (Path.GetExtension(fileName) != ".exe" && Path.GetExtension(fileName) != ".dll") { fileName += ".dll"; }