Skip to content

Commit 99f5812

Browse files
Merge pull request #1497 from gregg-miskelly/Debugger-1-10-1
Update the debugger to 1-10-1
2 parents dc1908d + 4c827b3 commit 99f5812

File tree

2 files changed

+29
-25
lines changed

2 files changed

+29
-25
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@
3636
* Improve response from running/debugging tests to include output from build and test summary. ([#419](https://github.com/OmniSharp/omnisharp-vscode/issues/419), [#455](https://github.com/OmniSharp/omnisharp-vscode/issues/455), PRs: [#1436](https://github.com/OmniSharp/omnisharp-vscode/pull/1436), [#1486](https://github.com/OmniSharp/omnisharp-vscode/pull/1486))
3737
* Added `csharp.unitTestDebugingOptions` setting to pass launch.json-style debug options (example: `justMyCode`) when unit test debugging.
3838

39+
#### Debugger
40+
* Resolves crash on OSX when the target process loads an embedded PDB ([#1456](https://github.com/OmniSharp/omnisharp-vscode/issues/1456)). This commonly affects users trying to debug XUnit tests.
41+
* Enhanced exception peek display to provide additional exception properties.
42+
3943
#### Other Updates and Fixes
4044

4145
* New `csharp.suppressHiddenDiagnostics` setting that can be set to true to display hidden diagnostics, such as 'unnecessary using directive'. ([#1429](https://github.com/OmniSharp/omnisharp-vscode/issues/1429), PR: [#1435](https://github.com/OmniSharp/omnisharp-vscode/pull/1435)) _(Contributed by [@cruz82](https://github.com/cruz82))_

package.json

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "csharp",
33
"publisher": "ms-vscode",
4-
"version": "1.10.0-beta3",
4+
"version": "1.10.0-beta4",
55
"description": "C# for Visual Studio Code (powered by OmniSharp).",
66
"displayName": "C#",
77
"author": "Microsoft Corporation",
@@ -157,8 +157,8 @@
157157
},
158158
{
159159
"description": ".NET Core Debugger (Windows / x64)",
160-
"url": "https://vsdebugger.azureedge.net/coreclr-debug-1-10-0/coreclr-debug-win7-x64.zip",
161-
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-10-0/coreclr-debug-win7-x64.zip",
160+
"url": "https://vsdebugger.azureedge.net/coreclr-debug-1-10-1/coreclr-debug-win7-x64.zip",
161+
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-10-1/coreclr-debug-win7-x64.zip",
162162
"installPath": ".debugger",
163163
"runtimeIds": [
164164
"win7-x64"
@@ -167,8 +167,8 @@
167167
},
168168
{
169169
"description": ".NET Core Debugger (macOS / x64)",
170-
"url": "https://vsdebugger.azureedge.net/coreclr-debug-1-10-0/coreclr-debug-osx.10.11-x64.zip",
171-
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-10-0/coreclr-debug-osx.10.11-x64.zip",
170+
"url": "https://vsdebugger.azureedge.net/coreclr-debug-1-10-1/coreclr-debug-osx.10.11-x64.zip",
171+
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-10-1/coreclr-debug-osx.10.11-x64.zip",
172172
"installPath": ".debugger",
173173
"runtimeIds": [
174174
"osx.10.11-x64"
@@ -181,8 +181,8 @@
181181
},
182182
{
183183
"description": ".NET Core Debugger (CentOS / x64)",
184-
"url": "https://vsdebugger.azureedge.net/coreclr-debug-1-10-0/coreclr-debug-centos.7-x64.zip",
185-
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-10-0/coreclr-debug-centos.7-x64.zip",
184+
"url": "https://vsdebugger.azureedge.net/coreclr-debug-1-10-1/coreclr-debug-centos.7-x64.zip",
185+
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-10-1/coreclr-debug-centos.7-x64.zip",
186186
"installPath": ".debugger",
187187
"runtimeIds": [
188188
"centos.7-x64"
@@ -195,8 +195,8 @@
195195
},
196196
{
197197
"description": ".NET Core Debugger (Debian / x64)",
198-
"url": "https://vsdebugger.azureedge.net/coreclr-debug-1-10-0/coreclr-debug-debian.8-x64.zip",
199-
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-10-0/coreclr-debug-debian.8-x64.zip",
198+
"url": "https://vsdebugger.azureedge.net/coreclr-debug-1-10-1/coreclr-debug-debian.8-x64.zip",
199+
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-10-1/coreclr-debug-debian.8-x64.zip",
200200
"installPath": ".debugger",
201201
"runtimeIds": [
202202
"debian.8-x64"
@@ -209,8 +209,8 @@
209209
},
210210
{
211211
"description": ".NET Core Debugger (Fedora 23 / x64)",
212-
"url": "https://vsdebugger.azureedge.net/coreclr-debug-1-10-0/coreclr-debug-fedora.23-x64.zip",
213-
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-10-0/coreclr-debug-fedora.23-x64.zip",
212+
"url": "https://vsdebugger.azureedge.net/coreclr-debug-1-10-1/coreclr-debug-fedora.23-x64.zip",
213+
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-10-1/coreclr-debug-fedora.23-x64.zip",
214214
"installPath": ".debugger",
215215
"runtimeIds": [
216216
"fedora.23-x64"
@@ -223,8 +223,8 @@
223223
},
224224
{
225225
"description": ".NET Core Debugger (Fedora 24 / x64)",
226-
"url": "https://vsdebugger.azureedge.net/coreclr-debug-1-10-0/coreclr-debug-fedora.24-x64.zip",
227-
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-10-0/coreclr-debug-fedora.24-x64.zip",
226+
"url": "https://vsdebugger.azureedge.net/coreclr-debug-1-10-1/coreclr-debug-fedora.24-x64.zip",
227+
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-10-1/coreclr-debug-fedora.24-x64.zip",
228228
"installPath": ".debugger",
229229
"runtimeIds": [
230230
"fedora.24-x64"
@@ -237,8 +237,8 @@
237237
},
238238
{
239239
"description": ".NET Core Debugger (OpenSUSE 13 / x64)",
240-
"url": "https://vsdebugger.azureedge.net/coreclr-debug-1-10-0/coreclr-debug-opensuse.13.2-x64.zip",
241-
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-10-0/coreclr-debug-opensuse.13.2-x64.zip",
240+
"url": "https://vsdebugger.azureedge.net/coreclr-debug-1-10-1/coreclr-debug-opensuse.13.2-x64.zip",
241+
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-10-1/coreclr-debug-opensuse.13.2-x64.zip",
242242
"installPath": ".debugger",
243243
"runtimeIds": [
244244
"opensuse.13.2-x64"
@@ -251,8 +251,8 @@
251251
},
252252
{
253253
"description": ".NET Core Debugger (OpenSUSE 42 / x64)",
254-
"url": "https://vsdebugger.azureedge.net/coreclr-debug-1-10-0/coreclr-debug-opensuse.42.1-x64.zip",
255-
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-10-0/coreclr-debug-opensuse.42.1-x64.zip",
254+
"url": "https://vsdebugger.azureedge.net/coreclr-debug-1-10-1/coreclr-debug-opensuse.42.1-x64.zip",
255+
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-10-1/coreclr-debug-opensuse.42.1-x64.zip",
256256
"installPath": ".debugger",
257257
"runtimeIds": [
258258
"opensuse.42.1-x64"
@@ -265,8 +265,8 @@
265265
},
266266
{
267267
"description": ".NET Core Debugger (RHEL / x64)",
268-
"url": "https://vsdebugger.azureedge.net/coreclr-debug-1-10-0/coreclr-debug-rhel.7.2-x64.zip",
269-
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-10-0/coreclr-debug-rhel.7.2-x64.zip",
268+
"url": "https://vsdebugger.azureedge.net/coreclr-debug-1-10-1/coreclr-debug-rhel.7.2-x64.zip",
269+
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-10-1/coreclr-debug-rhel.7.2-x64.zip",
270270
"installPath": ".debugger",
271271
"runtimeIds": [
272272
"rhel.7-x64"
@@ -279,8 +279,8 @@
279279
},
280280
{
281281
"description": ".NET Core Debugger (Ubuntu 14.04 / x64)",
282-
"url": "https://vsdebugger.azureedge.net/coreclr-debug-1-10-0/coreclr-debug-ubuntu.14.04-x64.zip",
283-
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-10-0/coreclr-debug-ubuntu.14.04-x64.zip",
282+
"url": "https://vsdebugger.azureedge.net/coreclr-debug-1-10-1/coreclr-debug-ubuntu.14.04-x64.zip",
283+
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-10-1/coreclr-debug-ubuntu.14.04-x64.zip",
284284
"installPath": ".debugger",
285285
"runtimeIds": [
286286
"ubuntu.14.04-x64"
@@ -293,8 +293,8 @@
293293
},
294294
{
295295
"description": ".NET Core Debugger (Ubuntu 16.04 / x64)",
296-
"url": "https://vsdebugger.azureedge.net/coreclr-debug-1-10-0/coreclr-debug-ubuntu.16.04-x64.zip",
297-
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-10-0/coreclr-debug-ubuntu.16.04-x64.zip",
296+
"url": "https://vsdebugger.azureedge.net/coreclr-debug-1-10-1/coreclr-debug-ubuntu.16.04-x64.zip",
297+
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-10-1/coreclr-debug-ubuntu.16.04-x64.zip",
298298
"installPath": ".debugger",
299299
"runtimeIds": [
300300
"ubuntu.16.04-x64"
@@ -307,8 +307,8 @@
307307
},
308308
{
309309
"description": ".NET Core Debugger (Ubuntu 16.10 / x64)",
310-
"url": "https://vsdebugger.azureedge.net/coreclr-debug-1-10-0/coreclr-debug-ubuntu.16.10-x64.zip",
311-
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-10-0/coreclr-debug-ubuntu.16.10-x64.zip",
310+
"url": "https://vsdebugger.azureedge.net/coreclr-debug-1-10-1/coreclr-debug-ubuntu.16.10-x64.zip",
311+
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-10-1/coreclr-debug-ubuntu.16.10-x64.zip",
312312
"installPath": ".debugger",
313313
"runtimeIds": [
314314
"ubuntu.16.10-x64"

0 commit comments

Comments
 (0)