Skip to content

Instantly share code, notes, and snippets.

View kangaroo's full-sized avatar

Geoff Norton kangaroo

View GitHub Profile
diff --git a/package.json b/package.json
index 347024e..164987b 100644
--- a/package.json
+++ b/package.json
@@ -299,6 +299,25 @@
"installTestPath": "./.debugger/vsdbg-ui",
"integrity": "2F6657B3D3C1044E9293F9C7E498AF283600DEAAF052975EBFBDD1296C8C6C05"
},
+ {
+ "id": "Debugger",
diff --git a/Netduino_2_and_3_NETMF/Solutions/Netduino3Ethernet/TinyCLR/TinyCLR.proj b/Netduino_2_and_3_NETMF/Solutions/Netduino3Ethernet/TinyCLR/TinyCLR.proj
index 2c1c46d..ada6f5e 100755
--- a/Netduino_2_and_3_NETMF/Solutions/Netduino3Ethernet/TinyCLR/TinyCLR.proj
+++ b/Netduino_2_and_3_NETMF/Solutions/Netduino3Ethernet/TinyCLR/TinyCLR.proj
@@ -62,7 +62,6 @@
<Import Project="$(SPOCLIENT)\Solutions\Netduino3Ethernet\DeviceCode\Netduino_IP_LinkLayers_AX88796C\Netduino.IP.LinkLayers.AX88796C.featureproj" />
<Import Project="$(SPOCLIENT)\Solutions\Netduino3Ethernet\DeviceCode\SecretLabs_NETMF_Diagnostics\SecretLabs.NETMF.Diagnostics.featureproj" />
<Import Project="$(SPOCLIENT)\Solutions\Netduino3Ethernet\DeviceCode\GoBus\GoBus.featureproj" />
- <Import Project="$(SPOCLIENT)\Solutions\Netduino2\DeviceCode\GoBus\GoBus.featureproj" />
<Import Project="$(SPOCLIENT)\Solutions\Netduino3Ethernet\DeviceCode\SecretLabs_NETMF_Hardware_Netduino\SecretLabs.NETMF.Hardware.Netduino.featureproj" />
diff --git a/Netduino_2_and_3_NETMF/setenv_base.cmd b/Netduino_2_and_3_NETMF/setenv_base.cmd
index fa6e059..9074342 100755
--- a/Netduino_2_and_3_NETMF/setenv_base.cmd
+++ b/Netduino_2_and_3_NETMF/setenv_base.cmd
@@ -79,18 +79,26 @@ rem @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
rem set tool-chains variables
IF /I NOT "%COMPILER_TOOL%" == "VS" (
- IF NOT "%VS110COMNTOOLS%" == "" (
- CALL "%VS110COMNTOOLS%vsvars32.bat"
Process: vmx [1050]
Path: /Applications/Veertu.app/Contents/MacOS/vmx.app/Contents/MacOS/vmx
Identifier: com.veertu.Veertu
Version: 1.0 (1)
Code Type: X86-64 (Native)
Parent Process: Veertu [800]
Responsible: vmx [1050]
User ID: 501
Date/Time: 2016-07-13 10:09:58.031 -0700
NuGet Config files used:
/home/plasma/.config/NuGet/NuGet.Config
Feeds used:
https://www.myget.org/F/dotnet-buildtools/
Installed:
1 package(s) to /home/plasma/src/corefx/packages/Microsoft.DotNet.BuildTools/1.0.25-prerelease-00157/lib/portableTargets/packages/
/home/plasma/src/corefx/dir.props(58,3): error MSB4019: The imported project "/home/plasma/src/corefx/packaging.props" was not found. Confirm that the path in the <Import> declaration is correct, and that the file exists on disk. [/home/plasma/src/corefx/build.proj]
diff --git a/src/scripts/install-cli.ps1 b/src/scripts/install-cli.ps1
index 58357fc..a4f1036 100644
--- a/src/scripts/install-cli.ps1
+++ b/src/scripts/install-cli.ps1
@@ -16,7 +16,7 @@ $ProgressPreference="SilentlyContinue"
$Feed="https://dotnetcli.blob.core.windows.net/dotnet"
$Channel="dev"
-$DotNetFileName="dotnet-win-" + $TargetPlatform + ".$Version.zip"
+$DotNetFileName="dotnet-win-" + $TargetPlatform + "." + $Version.ToLower() + ".zip"
diff --git a/src/pal/src/exception/seh-unwind.cpp b/src/pal/src/exception/seh-unwind.cpp
index 9cc2112..c53e93b 100644
--- a/src/pal/src/exception/seh-unwind.cpp
+++ b/src/pal/src/exception/seh-unwind.cpp
@@ -169,7 +169,7 @@ static void GetContextPointer(unw_cursor_t *cursor, unw_context_t *unwContext, i
{
SIZE_T *pLoc = (SIZE_T *)saveLoc.u.addr;
// Filter out fake save locations that point to unwContext
- if ((pLoc < (SIZE_T *)unwContext) || ((SIZE_T *)(unwContext + 1) <= pLoc))
+ if (unwContext == NULL || (pLoc < (SIZE_T *)unwContext) || ((SIZE_T *)(unwContext + 1) <= pLoc))
#!/usr/bin/env bash
#
# Copyright (c) 2009-2012 VMware, Inc.
set -e
base_dir=$(readlink -nf $(dirname $0)/../..)
source $base_dir/lib/prelude_apply.bash
# Define variables
IO.popen(command).each do |line|
stdout.puts line.chomp
lines << line.chomp
end.close