Skip to content

Commit aa1e017

Browse files
authored
Merge pull request #3379 from OmniSharp/update-omnisharp-1.34.6
Update OmniSharp to 1.34.6
2 parents 8a83d8a + 74018a1 commit aa1e017

File tree

5 files changed

+43
-32
lines changed

5 files changed

+43
-32
lines changed

.vscode/launch.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,8 @@
144144
"updatePackageDependencies"
145145
],
146146
"env": {
147-
"NEW_DEPS_URLS": "https://download.visualstudio.microsoft.com/download/pr/0093813b-a367-4d2a-beaf-a56ed844b4a5/e9a161e44376a20a44bc2401ea586632/omnisharp-linux-x64-1.34.5.zip,https://download.visualstudio.microsoft.com/download/pr/0093813b-a367-4d2a-beaf-a56ed844b4a5/19a580a49dd9629e3b425d0e18debffe/omnisharp-linux-x86-1.34.5.zip,https://download.visualstudio.microsoft.com/download/pr/0093813b-a367-4d2a-beaf-a56ed844b4a5/f5acacd403cf5d9d905c1eb8bdd96186/omnisharp-osx-1.34.5.zip,https://download.visualstudio.microsoft.com/download/pr/0093813b-a367-4d2a-beaf-a56ed844b4a5/54ea7bc195be890db2fc0e8f5f9d3662/omnisharp-win-x64-1.34.5.zip,https://download.visualstudio.microsoft.com/download/pr/0093813b-a367-4d2a-beaf-a56ed844b4a5/6dcb3a71c29bbcf0ffff994954b2a3ee/omnisharp-win-x86-1.34.5.zip" ,
148-
"NEW_DEPS_VERSION": "1.34.5"
147+
"NEW_DEPS_URLS": "https://download.visualstudio.microsoft.com/download/pr/36250cc5-e52b-4732-b072-c2ea483a6932/f81dc4171725c406f7c688f6f3c522d1/omnisharp-linux-x64-1.34.6.zip,https://download.visualstudio.microsoft.com/download/pr/36250cc5-e52b-4732-b072-c2ea483a6932/85600d3584be2df2ce60d19ce3cdba62/omnisharp-linux-x86-1.34.6.zip,https://download.visualstudio.microsoft.com/download/pr/36250cc5-e52b-4732-b072-c2ea483a6932/574930c1fd28ea972b4779968af83d75/omnisharp-osx-1.34.6.zip,https://download.visualstudio.microsoft.com/download/pr/36250cc5-e52b-4732-b072-c2ea483a6932/9f92695e51334a462a5f48f2f66d8bb8/omnisharp-win-x64-1.34.6.zip,https://download.visualstudio.microsoft.com/download/pr/36250cc5-e52b-4732-b072-c2ea483a6932/ab1f2f141d5ecde035e7c75505358714/omnisharp-win-x86-1.34.6.zip" ,
148+
"NEW_DEPS_VERSION": "1.34.6"
149149
},
150150
"cwd": "${workspaceFolder}"
151151
}

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Known Issues in 1.21.5
1+
## Known Issues in 1.21.6
22

33
* Known limitations with the preview Razor (cshtml) language service to be addressed in a future release:
44
* Only ASP.NET Core projects are supported (no support for ASP.NET projects)
@@ -9,7 +9,13 @@
99
* There currently is no completion support for package references in csproj files. ([#1156](https://github.com/OmniSharp/omnisharp-vscode/issues/1156))
1010
* As an alternative, consider installing the [MSBuild Project Tools](https://marketplace.visualstudio.com/items?itemName=tintoy.msbuild-project-tools) extension by @tintoy.
1111

12-
## 1.24.5 (October 9, 2019)
12+
## 1.21.6 (October 28, 2019)
13+
* Fixed a bug that caused CS0019 diagnostic to be erroneously reported when comparing to `default` ([omnisharp-roslyn/#1619](https://github.com/OmniSharp/omnisharp-roslyn/issues/1619), PR:[omnisharp-roslyn/#1634](https://github.com/OmniSharp/omnisharp-roslyn/pull/1634))
14+
* Fixed a concurrency bug in scripting/Cake support ([omnisharp-roslyn/#1627](https://github.com/OmniSharp/omnisharp-roslyn/pull/1627))
15+
* Correctly respect request cancellation token in metadata service ([omnisharp-roslyn/#1631](https://github.com/OmniSharp/omnisharp-roslyn/pull/1631))
16+
* Improved support for .NET Core 3
17+
18+
## 1.21.5 (October 9, 2019)
1319
* Fixed regression that caused "go to metadata" to not work ([omnisharp-roslyn/#1624](https://github.com/OmniSharp/omnisharp-roslyn/issues/1624), PR: [omnisharp-roslyn/#1625](https://github.com/OmniSharp/omnisharp-roslyn/pull/1625))
1420

1521
## 1.21.4 (September 30, 2019)

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ The C# extension is powered by [OmniSharp](https://github.com/OmniSharp/omnishar
2020
* [Documentation](https://code.visualstudio.com/docs/languages/csharp)
2121
* [Video Tutorial compiling with .NET Core](https://channel9.msdn.com/Blogs/dotnet/Get-started-VSCode-Csharp-NET-Core-Windows)
2222

23+
## What's new in 1.21.6
24+
* Fixed a bug that caused CS0019 diagnostic to be erroneously reported when comparing to `default` ([omnisharp-roslyn/#1619](https://github.com/OmniSharp/omnisharp-roslyn/issues/1619), PR:[omnisharp-roslyn/#1634](https://github.com/OmniSharp/omnisharp-roslyn/pull/1634))
25+
* Correctly respect request cancellation token in metadata service ([omnisharp-roslyn/#1631](https://github.com/OmniSharp/omnisharp-roslyn/pull/1631))
26+
* Improved support for .NET Core 3
27+
2328
## What's new in 1.21.5
2429
* Fixed regression that caused "go to metadata" to not work ([omnisharp-roslyn/#1624](https://github.com/OmniSharp/omnisharp-roslyn/issues/1624), PR: [omnisharp-roslyn/#1625](https://github.com/OmniSharp/omnisharp-roslyn/pull/1625))
2530

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "csharp",
33
"publisher": "ms-vscode",
4-
"version": "1.21.5",
4+
"version": "1.21.6",
55
"description": "C# for Visual Studio Code (powered by OmniSharp).",
66
"displayName": "C#",
77
"author": "Microsoft Corporation",
@@ -29,7 +29,7 @@
2929
"dotnet"
3030
],
3131
"defaults": {
32-
"omniSharp": "1.34.5",
32+
"omniSharp": "1.34.6",
3333
"razor": "1.0.0-alpha3-20190819.3"
3434
},
3535
"main": "./dist/extension",
@@ -159,58 +159,58 @@
159159
{
160160
"id": "OmniSharp",
161161
"description": "OmniSharp for Windows (.NET 4.6 / x86)",
162-
"url": "https://download.visualstudio.microsoft.com/download/pr/0093813b-a367-4d2a-beaf-a56ed844b4a5/6dcb3a71c29bbcf0ffff994954b2a3ee/omnisharp-win-x86-1.34.5.zip",
163-
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-win-x86-1.34.5.zip",
164-
"installPath": ".omnisharp/1.34.5",
162+
"url": "https://download.visualstudio.microsoft.com/download/pr/36250cc5-e52b-4732-b072-c2ea483a6932/ab1f2f141d5ecde035e7c75505358714/omnisharp-win-x86-1.34.6.zip",
163+
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-win-x86-1.34.6.zip",
164+
"installPath": ".omnisharp/1.34.6",
165165
"platforms": [
166166
"win32"
167167
],
168168
"architectures": [
169169
"x86"
170170
],
171-
"installTestPath": "./.omnisharp/1.34.5/OmniSharp.exe",
171+
"installTestPath": "./.omnisharp/1.34.6/OmniSharp.exe",
172172
"platformId": "win-x86",
173-
"integrity": "80D21906505EF6764941F45B9E62AD5A5E0EEF7AB6D1CFD32BF1340A1F9CD1B5"
173+
"integrity": "9138BC1AD6348DA4BC4E86E1345F1B715046AD54F1806C00ECF5E1D3F0501551"
174174
},
175175
{
176176
"id": "OmniSharp",
177177
"description": "OmniSharp for Windows (.NET 4.6 / x64)",
178-
"url": "https://download.visualstudio.microsoft.com/download/pr/0093813b-a367-4d2a-beaf-a56ed844b4a5/54ea7bc195be890db2fc0e8f5f9d3662/omnisharp-win-x64-1.34.5.zip",
179-
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-win-x64-1.34.5.zip",
180-
"installPath": ".omnisharp/1.34.5",
178+
"url": "https://download.visualstudio.microsoft.com/download/pr/36250cc5-e52b-4732-b072-c2ea483a6932/9f92695e51334a462a5f48f2f66d8bb8/omnisharp-win-x64-1.34.6.zip",
179+
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-win-x64-1.34.6.zip",
180+
"installPath": ".omnisharp/1.34.6",
181181
"platforms": [
182182
"win32"
183183
],
184184
"architectures": [
185185
"x86_64"
186186
],
187-
"installTestPath": "./.omnisharp/1.34.5/OmniSharp.exe",
187+
"installTestPath": "./.omnisharp/1.34.6/OmniSharp.exe",
188188
"platformId": "win-x64",
189-
"integrity": "A745558A5209639EA1B6C32E1575CF5BA09A5DA60DB7E5BE89F6F6C2E6E6FBDC"
189+
"integrity": "C3556B925BEA155A4590A0961FE4F823478E167BDB106A38C9B9969DBD4A89C8"
190190
},
191191
{
192192
"id": "OmniSharp",
193193
"description": "OmniSharp for OSX",
194-
"url": "https://download.visualstudio.microsoft.com/download/pr/0093813b-a367-4d2a-beaf-a56ed844b4a5/f5acacd403cf5d9d905c1eb8bdd96186/omnisharp-osx-1.34.5.zip",
195-
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-osx-1.34.5.zip",
196-
"installPath": ".omnisharp/1.34.5",
194+
"url": "https://download.visualstudio.microsoft.com/download/pr/36250cc5-e52b-4732-b072-c2ea483a6932/574930c1fd28ea972b4779968af83d75/omnisharp-osx-1.34.6.zip",
195+
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-osx-1.34.6.zip",
196+
"installPath": ".omnisharp/1.34.6",
197197
"platforms": [
198198
"darwin"
199199
],
200200
"binaries": [
201201
"./mono.osx",
202202
"./run"
203203
],
204-
"installTestPath": "./.omnisharp/1.34.5/run",
204+
"installTestPath": "./.omnisharp/1.34.6/run",
205205
"platformId": "osx",
206-
"integrity": "943CD005D52EC039E26DAF57C75549863EA0A3C9E9F7848CCF387120AE654E60"
206+
"integrity": "91A4CC23EA9DE75DE4EC1E60AEB25A08A781B6A07FF067E9D0A1ABF89F1A0AD1"
207207
},
208208
{
209209
"id": "OmniSharp",
210210
"description": "OmniSharp for Linux (x86)",
211-
"url": "https://download.visualstudio.microsoft.com/download/pr/0093813b-a367-4d2a-beaf-a56ed844b4a5/19a580a49dd9629e3b425d0e18debffe/omnisharp-linux-x86-1.34.5.zip",
212-
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-linux-x86-1.34.5.zip",
213-
"installPath": ".omnisharp/1.34.5",
211+
"url": "https://download.visualstudio.microsoft.com/download/pr/36250cc5-e52b-4732-b072-c2ea483a6932/85600d3584be2df2ce60d19ce3cdba62/omnisharp-linux-x86-1.34.6.zip",
212+
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-linux-x86-1.34.6.zip",
213+
"installPath": ".omnisharp/1.34.6",
214214
"platforms": [
215215
"linux"
216216
],
@@ -222,16 +222,16 @@
222222
"./mono.linux-x86",
223223
"./run"
224224
],
225-
"installTestPath": "./.omnisharp/1.34.5/run",
225+
"installTestPath": "./.omnisharp/1.34.6/run",
226226
"platformId": "linux-x86",
227-
"integrity": "D89FBCA1ED8C7B9018F87165FF58FAEE280A6B1401F429AE136D0E40BC3233EC"
227+
"integrity": "002E8541C9FD3867889C09369C651334486926C9F713AE9E74EFF263B7E8D1D7"
228228
},
229229
{
230230
"id": "OmniSharp",
231231
"description": "OmniSharp for Linux (x64)",
232-
"url": "https://download.visualstudio.microsoft.com/download/pr/0093813b-a367-4d2a-beaf-a56ed844b4a5/e9a161e44376a20a44bc2401ea586632/omnisharp-linux-x64-1.34.5.zip",
233-
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-linux-x64-1.34.5.zip",
234-
"installPath": ".omnisharp/1.34.5",
232+
"url": "https://download.visualstudio.microsoft.com/download/pr/36250cc5-e52b-4732-b072-c2ea483a6932/f81dc4171725c406f7c688f6f3c522d1/omnisharp-linux-x64-1.34.6.zip",
233+
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-linux-x64-1.34.6.zip",
234+
"installPath": ".omnisharp/1.34.6",
235235
"platforms": [
236236
"linux"
237237
],
@@ -242,9 +242,9 @@
242242
"./mono.linux-x86_64",
243243
"./run"
244244
],
245-
"installTestPath": "./.omnisharp/1.34.5/run",
245+
"installTestPath": "./.omnisharp/1.34.6/run",
246246
"platformId": "linux-x64",
247-
"integrity": "42ED84735D913DC19AC3C5EC6F750DC04D04F46878C64AE1844DFD1BD682658C"
247+
"integrity": "A5CAB62E3B775FB49D809611849EA1826CF15BF9F8FF7A9E8F163F9958669D8C"
248248
},
249249
{
250250
"id": "Debugger",

0 commit comments

Comments
 (0)