diff --git a/appveyor.yml b/appveyor.yml index 50ac3f57..8cc25e28 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 0.23.{build} +version: 0.25.{build} pull_requests: do_not_increment_build_number: true diff --git a/source/nanoFramework.Tools.DebugLibrary.Net/nanoFramework.Tools.DebugLibrary.Net.csproj b/source/nanoFramework.Tools.DebugLibrary.Net/nanoFramework.Tools.DebugLibrary.Net.csproj index 9d2a94c6..4b5f4d27 100644 --- a/source/nanoFramework.Tools.DebugLibrary.Net/nanoFramework.Tools.DebugLibrary.Net.csproj +++ b/source/nanoFramework.Tools.DebugLibrary.Net/nanoFramework.Tools.DebugLibrary.Net.csproj @@ -16,7 +16,7 @@ nanoFramework.Tools.Debugger.Net - 0.4.0-preview024 + 0.4.0-preview025 This .NET library provides a debug client for nanoFramework devices using USB or Serial connection to a board. nanoFramework project contributors nanoFramework debug library for .NET diff --git a/source/nanoFramework.Tools.DebugLibrary.Shared/WireProtocol/Commands.cs b/source/nanoFramework.Tools.DebugLibrary.Shared/WireProtocol/Commands.cs index 0634c1c4..6ca002ca 100644 --- a/source/nanoFramework.Tools.DebugLibrary.Shared/WireProtocol/Commands.cs +++ b/source/nanoFramework.Tools.DebugLibrary.Shared/WireProtocol/Commands.cs @@ -247,7 +247,7 @@ public class Reply : IConverter public void PrepareForDeserialize(int size, byte[] data, Converter converter) { - int num = (size - 4) / (3 * 4); // size - sizof(m_count) divided by size of deplpoymentdata struct (3*sizeof(uint)) + int num = (size - 4) / (3 * 4); // size - sizof(m_count) divided by size of deployment data struct (3*sizeof(uint)) m_map = Enumerable.Range(0, num).Select(x => new DeploymentData()).ToList(); diff --git a/source/nanoFramework.Tools.DebugLibrary.Shared/WireProtocol/Engine.cs b/source/nanoFramework.Tools.DebugLibrary.Shared/WireProtocol/Engine.cs index 439e2c8a..edc0a2a8 100644 --- a/source/nanoFramework.Tools.DebugLibrary.Shared/WireProtocol/Engine.cs +++ b/source/nanoFramework.Tools.DebugLibrary.Shared/WireProtocol/Engine.cs @@ -753,7 +753,7 @@ public async Task GetExecutionBasePtrAsync() } else { - return (0, true); + return (0, false); } } diff --git a/source/nanoFramework.Tools.DebugLibrary.UWP/nanoFramework.Tools.DebugLibrary.UWP.csproj b/source/nanoFramework.Tools.DebugLibrary.UWP/nanoFramework.Tools.DebugLibrary.UWP.csproj index 9395b318..dfa9ee31 100644 --- a/source/nanoFramework.Tools.DebugLibrary.UWP/nanoFramework.Tools.DebugLibrary.UWP.csproj +++ b/source/nanoFramework.Tools.DebugLibrary.UWP/nanoFramework.Tools.DebugLibrary.UWP.csproj @@ -17,7 +17,7 @@ 512 {A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} nanoFramework.Tools.Debugger.UWP - 0.4.0-preview024 + 0.4.0-preview025 This UWP library provides a debug client for nanoFramework devices using USB or Serial connection to a board. nanoFramework project contributors nanoFramework debug library for UWP