From 011873bc2a633a12aae361fb09cbc595e7f3ee08 Mon Sep 17 00:00:00 2001 From: Dustin Campbell Date: Thu, 31 Aug 2017 09:35:15 -0700 Subject: [PATCH 1/2] Update to OmniSharp 1.24.0 --- package.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/package.json b/package.json index d6fd06b737..a5581d3dee 100644 --- a/package.json +++ b/package.json @@ -68,8 +68,8 @@ "runtimeDependencies": [ { "description": "OmniSharp for Windows (.NET 4.6 / x86)", - "url": "https://download.visualstudio.microsoft.com/download/pr/11114591/53def2e097a7e2c1a8bf567c6d81ad7a/omnisharp-win-x86-1.23.2.zip", - "fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-win-x86-1.23.2.zip", + "url": "https://download.visualstudio.microsoft.com/download/pr/11282659/d3523ba653c471f25673db611cbeeeaa/omnisharp-win-x86-1.24.0.zip", + "fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-win-x86-1.24.0.zip", "installPath": ".omnisharp", "platforms": [ "win32" @@ -81,8 +81,8 @@ }, { "description": "OmniSharp for Windows (.NET 4.6 / x64)", - "url": "https://download.visualstudio.microsoft.com/download/pr/11114590/f5469e805c6dcbe675e6a1d94fd78cc0/omnisharp-win-x64-1.23.2.zip", - "fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-win-x64-1.23.2.zip", + "url": "https://download.visualstudio.microsoft.com/download/pr/11282658/615811383c3de01eccbccc563b0b4c98/omnisharp-win-x64-1.24.0.zip", + "fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-win-x64-1.24.0.zip", "installPath": ".omnisharp", "platforms": [ "win32" @@ -94,8 +94,8 @@ }, { "description": "OmniSharp for OSX", - "url": "https://download.visualstudio.microsoft.com/download/pr/11114589/63b1de65cb20eb8f423449f864e1ac97/omnisharp-osx-1.23.2.zip", - "fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-osx-1.23.2.zip", + "url": "https://download.visualstudio.microsoft.com/download/pr/11282657/b6d0e966268f171703583304fdc00f34/omnisharp-osx-1.24.0.zip", + "fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-osx-1.24.0.zip", "installPath": ".omnisharp", "platforms": [ "darwin" @@ -108,8 +108,8 @@ }, { "description": "OmniSharp for Linux (x86)", - "url": "https://download.visualstudio.microsoft.com/download/pr/11114588/1b7020f25d4bb682983b831d97810489/omnisharp-linux-x86-1.23.2.zip", - "fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-linux-x86-1.23.2.zip", + "url": "https://download.visualstudio.microsoft.com/download/pr/11282656/23876b6bc2591a9015115112d1a66054/omnisharp-linux-x86-1.24.0.zip", + "fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-linux-x86-1.24.0.zip", "installPath": ".omnisharp", "platforms": [ "linux" @@ -126,8 +126,8 @@ }, { "description": "OmniSharp for Linux (x64)", - "url": "https://download.visualstudio.microsoft.com/download/pr/11114587/5d10adc99d8c7e561dadc2ab31031397/omnisharp-linux-x64-1.23.2.zip", - "fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-linux-x64-1.23.2.zip", + "url": "https://download.visualstudio.microsoft.com/download/pr/11282655/2ca8f4278798fda889963c33f4af8f97/omnisharp-linux-x64-1.24.0.zip", + "fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-linux-x64-1.24.0.zip", "installPath": ".omnisharp", "platforms": [ "linux" From aacdda136daf819cf33a58d2c3e451a1d14f6032 Mon Sep 17 00:00:00 2001 From: Dustin Campbell Date: Thu, 31 Aug 2017 10:08:20 -0700 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a7187dff97..4e61e2127f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,14 @@ ## 1.13.0 _(Not Yet Released)_ #### Debugger + * Improved logic for resolving breakpoints in local functions and lambdas ([#1678](https://github.com/OmniSharp/omnisharp-vscode/issues/1678)) +#### Testing + +* Fix error that occurs when running or debugging tests with latest xUnit 2.3.0 builds. ([#1733](https://github.com/OmniSharp/omnisharp-vscode/issues/1733), [omnisharp-rolsyn#944](https://github.com/OmniSharp/omnisharp-roslyn/issues/944), PR: [omnisharp-roslyn#945](https://github.com/OmniSharp/omnisharp-roslyn/pull/945)) +* Pass `--no-restore` when invoking `dotnet build` to ensure that implicit restore does not run, making the build and the test run a bit faster. ([omnisharp-roslyn##942](https://github.com/OmniSharp/omnisharp-roslyn/issues/942), PR: [omnisharp-roslyn#945](https://github.com/OmniSharp/omnisharp-roslyn/pull/945)) + ## 1.12.1 (August 14, 2017) * 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))