diff --git a/Source/v2/Meadow.Cli/Meadow.CLI.csproj b/Source/v2/Meadow.Cli/Meadow.CLI.csproj
index 6576ce8e..188117f2 100644
--- a/Source/v2/Meadow.Cli/Meadow.CLI.csproj
+++ b/Source/v2/Meadow.Cli/Meadow.CLI.csproj
@@ -10,7 +10,7 @@
Wilderness Labs, Inc
Wilderness Labs, Inc
true
- 2.0.38.0
+ 2.0.39.0
AnyCPU
http://developer.wildernesslabs.co/Meadow/Meadow.CLI/
https://github.com/WildernessLabs/Meadow.CLI
diff --git a/Source/v2/Meadow.Cli/Properties/AssemblyInfo.cs b/Source/v2/Meadow.Cli/Properties/AssemblyInfo.cs
index b5a535b4..8e315dc4 100644
--- a/Source/v2/Meadow.Cli/Properties/AssemblyInfo.cs
+++ b/Source/v2/Meadow.Cli/Properties/AssemblyInfo.cs
@@ -6,5 +6,5 @@ namespace Meadow.CLI;
public static class Constants
{
- public const string CLI_VERSION = "2.0.38.0";
+ public const string CLI_VERSION = "2.0.39.0";
}
\ No newline at end of file
diff --git a/Source/v2/Meadow.Dfu/DfuUtils.cs b/Source/v2/Meadow.Dfu/DfuUtils.cs
index 954bf6f0..c87566db 100644
--- a/Source/v2/Meadow.Dfu/DfuUtils.cs
+++ b/Source/v2/Meadow.Dfu/DfuUtils.cs
@@ -58,10 +58,12 @@ private static void FormatDfuOutput(string logLine, ILogger? logger, DfuFlashFor
}
else //Console out
{
- Debug.WriteLine(logLine);
- Console.Write(logLine);
-
- Console.Write(logLine.Contains("%") ? "\r" : "\r\n");
+ if (!logLine.Contains("Device's firmware is corrupt") &&
+ !logLine.Contains("null"))
+ {
+ Console.Write(logLine);
+ Console.Write(logLine.Contains("%") ? "\r" : "\r\n");
+ }
}
}
diff --git a/Source/v2/Meadow.Tooling.Core/Package/PackageManager.cs b/Source/v2/Meadow.Tooling.Core/Package/PackageManager.cs
index d79283ce..93f8cd1e 100644
--- a/Source/v2/Meadow.Tooling.Core/Package/PackageManager.cs
+++ b/Source/v2/Meadow.Tooling.Core/Package/PackageManager.cs
@@ -262,7 +262,9 @@ void FindApp(string directory, List fileList)
{
var shortname = Path.GetFileName(dir);
- if (shortname == PostLinkDirectoryName || shortname == PreLinkDirectoryName)
+ if (shortname == PostLinkDirectoryName ||
+ shortname == PreLinkDirectoryName ||
+ shortname == PackageOutputDirectoryName)
{
continue;
}