Skip to content

Commit 16ec715

Browse files
Update debugger packages to 1.14.7
For the last debugger insertion, there was an issue where the OSX package didn't actually contain updated debugger bits. This fixes that problem. In addition, this also includes the last two months of debugger changes. The primary difference from a C# extension standpoint is that this includes support for embedded source.
1 parent 3633e82 commit 16ec715

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
* Fixes symbol loading while debugging apps running under .NET Core 2.1 (ex: netcoreapp 2.1) on Linux and macOS
1111
* Fixes debug console message encoding issue on Windows ([#1775](https://github.com/OmniSharp/omnisharp-vscode/issues/1775)).
12+
* Adds support for extracting source files embedded in PDBs. See the C# [EmbeddedFiles](https://github.com/dotnet/roslyn/issues/19127) feature for more information.
1213
* Adds preliminary support for Linux ARM debugging
1314

1415
#### Editor

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "csharp",
33
"publisher": "ms-vscode",
4-
"version": "1.14.0-beta2",
4+
"version": "1.14.0-beta3",
55
"description": "C# for Visual Studio Code (powered by OmniSharp).",
66
"displayName": "C#",
77
"author": "Microsoft Corporation",
@@ -159,8 +159,8 @@
159159
},
160160
{
161161
"description": ".NET Core Debugger (Windows / x64)",
162-
"url": "https://download.visualstudio.microsoft.com/download/pr/100317420/a30d7e11bc435433d297adc824ee837f/coreclr-debug-win7-x64.zip",
163-
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-14-4/coreclr-debug-win7-x64.zip",
162+
"url": "https://download.visualstudio.microsoft.com/download/pr/11522728/3d79abf5bc635c3b55ad2ee590c1eb0e/coreclr-debug-win7-x64.zip",
163+
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-14-7/coreclr-debug-win7-x64.zip",
164164
"installPath": ".debugger",
165165
"platforms": [
166166
"win32"
@@ -172,8 +172,8 @@
172172
},
173173
{
174174
"description": ".NET Core Debugger (macOS / x64)",
175-
"url": "https://download.visualstudio.microsoft.com/download/pr/100317420/a30d7e11bc435433d297adc824ee837f/coreclr-debug-osx-x64.zip",
176-
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-14-4/coreclr-debug-osx.10.11-x64.zip",
175+
"url": "https://download.visualstudio.microsoft.com/download/pr/11522728/3d79abf5bc635c3b55ad2ee590c1eb0e/coreclr-debug-osx-x64.zip",
176+
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-14-7/coreclr-debug-osx-x64.zip",
177177
"installPath": ".debugger",
178178
"platforms": [
179179
"darwin"
@@ -189,8 +189,8 @@
189189
},
190190
{
191191
"description": ".NET Core Debugger (linux / x64)",
192-
"url": "https://download.visualstudio.microsoft.com/download/pr/100317420/a30d7e11bc435433d297adc824ee837f/coreclr-debug-linux-x64.zip",
193-
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-14-4/coreclr-debug-linux-x64.zip",
192+
"url": "https://download.visualstudio.microsoft.com/download/pr/11522728/3d79abf5bc635c3b55ad2ee590c1eb0e/coreclr-debug-linux-x64.zip",
193+
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-14-7/coreclr-debug-linux-x64.zip",
194194
"installPath": ".debugger",
195195
"platforms": [
196196
"linux"
@@ -2125,4 +2125,4 @@
21252125
}
21262126
]
21272127
}
2128-
}
2128+
}

0 commit comments

Comments
 (0)