Skip to content

Commit b7304ea

Browse files
Update debugger to 1.13.0 package (#1713)
* Update debugger to 1.13.0 package This includes the following changes: 1. Run the debugger on .NET Core 2.0 RTW (instead of preview2) 2. Breakpoint binding disambiguation fix (#1678) 3. Sending 'process' event (requested by VS For Mac team) 4. Entry point event stopping reason * Update changelog for Debugger 1.13.0
1 parent 1fb30b7 commit b7304ea

File tree

2 files changed

+13
-8
lines changed

2 files changed

+13
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
1-
## Known Issues in 1.12.0
1+
## Known Issues in 1.13.0
22

33
* There currently is no completion support for package references in csproj files. ([#1156](https://github.com/OmniSharp/omnisharp-vscode/issues/1156))
44

5+
## 1.13.0 _(Not Yet Released)_
6+
7+
#### Debugger
8+
* Improved logic for resolving breakpoints in local functions and lambdas ([#1678](https://github.com/OmniSharp/omnisharp-vscode/issues/1678))
9+
510
## 1.12.1 (August 14, 2017)
611

712
* MSBuild support properly sets CscToolExe to 'csc.exe' to address issues when a project's MSBuild targets have set it to 'mcs.exe'. ([#1707](https://github.com/OmniSharp/omnisharp-vscode/issues/1707))

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "csharp",
33
"publisher": "ms-vscode",
4-
"version": "1.12.1",
4+
"version": "1.13.0-beta1",
55
"description": "C# for Visual Studio Code (powered by OmniSharp).",
66
"displayName": "C#",
77
"author": "Microsoft Corporation",
@@ -143,8 +143,8 @@
143143
},
144144
{
145145
"description": ".NET Core Debugger (Windows / x64)",
146-
"url": "https://download.visualstudio.microsoft.com/download/pr/10975649/e7e53245607ac00f315a629e2ed934b9/coreclr-debug-win7-x64.zip",
147-
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-12-5/coreclr-debug-win7-x64.zip",
146+
"url": "https://download.visualstudio.microsoft.com/download/pr/11121545/61b8ee7aa56d99502a7ae3a19547e73b/coreclr-debug-win7-x64.zip",
147+
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-13-0/coreclr-debug-win7-x64.zip",
148148
"installPath": ".debugger",
149149
"platforms": [
150150
"win32"
@@ -156,8 +156,8 @@
156156
},
157157
{
158158
"description": ".NET Core Debugger (macOS / x64)",
159-
"url": "https://download.visualstudio.microsoft.com/download/pr/10975649/e7e53245607ac00f315a629e2ed934b9/coreclr-debug-osx.10.11-x64.zip",
160-
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-12-5/coreclr-debug-osx.10.11-x64.zip",
159+
"url": "https://download.visualstudio.microsoft.com/download/pr/11121545/61b8ee7aa56d99502a7ae3a19547e73b/coreclr-debug-osx.10.11-x64.zip",
160+
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-13-0/coreclr-debug-osx.10.11-x64.zip",
161161
"installPath": ".debugger",
162162
"platforms": [
163163
"darwin"
@@ -173,8 +173,8 @@
173173
},
174174
{
175175
"description": ".NET Core Debugger (linux / x64)",
176-
"url": "https://download.visualstudio.microsoft.com/download/pr/10975649/e7e53245607ac00f315a629e2ed934b9/coreclr-debug-linux-x64.zip",
177-
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-12-5/coreclr-debug-linux-x64.zip",
176+
"url": "https://download.visualstudio.microsoft.com/download/pr/11121545/61b8ee7aa56d99502a7ae3a19547e73b/coreclr-debug-linux-x64.zip",
177+
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-13-0/coreclr-debug-linux-x64.zip",
178178
"installPath": ".debugger",
179179
"platforms": [
180180
"linux"

0 commit comments

Comments
 (0)