Skip to content

Commit b813aed

Browse files
Merge pull request #1815 from DustinCampbell/update
Lots of CHANGELOG updates
2 parents ae0be6f + a932a74 commit b813aed

File tree

2 files changed

+29
-11
lines changed

2 files changed

+29
-11
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,43 @@
55

66
## 1.13.0 _(Not Yet Released)_
77

8+
#### Cake
9+
10+
* Added support for *.cake files! (PRs: [#1681](https://github.com/OmniSharp/omnisharp-vscode/pull/1681), [omnisharp-roslyn#932](https://github.com/OmniSharp/omnisharp-roslyn/pull/932)) _(Contributed by [@mholo65](https://github.com/mholo65))_
11+
812
#### Debugger
913

1014
* Improved logic for resolving breakpoints in local functions and lambdas ([#1678](https://github.com/OmniSharp/omnisharp-vscode/issues/1678))
1115

16+
#### Editor
17+
18+
* Improved completion list behavior when matching substrings. (PRs: [#1813](https://github.com/OmniSharp/omnisharp-vscode/pull/1813), [omnisharp-roslyn#990](https://github.com/OmniSharp/omnisharp-roslyn/pull/990)) _(Contributed by [@filipw](https://github.com/filipw))_
19+
* Completion list now triggers on SPACE after `new`. ([#146](https://github.com/OmniSharp/omnisharp-vscode/issues/146), PR: [#1776](https://github.com/OmniSharp/omnisharp-vscode/pull/1776), [omnisharp-roslyn#975](https://github.com/OmniSharp/omnisharp-roslyn/pull/975))
20+
1221
#### Navigation
1322

1423
* Fixed issue with Go to Definition where it was not possible to navigate to a definition within the same file if the file was generated from metadata. (PR: [#1772](https://github.com/OmniSharp/omnisharp-vscode/pull/1772)) _(Contributed by [@filipw](https://github.com/filipw))_
24+
* Improved symbol search behavior when matching substrings. (PR: [omnisharp-roslyn#990](https://github.com/OmniSharp/omnisharp-roslyn/pull/990)) _(Contributed by [@filipw](https://github.com/filipw))_
1525

1626
#### Project System
1727

28+
* Significantly changed how MSBuild is located by OmniSharp, resulting in more project types loading properly. (PR: [omnisharp-roslyn#988](https://github.com/OmniSharp/omnisharp-roslyn/pull/988))
1829
* Fixed bug where `LangVersion` property was not read correctly from project file, blocking C# 7.1 development. ([omnisharp-roslyn#961](https://github.com/OmniSharp/omnisharp-roslyn/issues/961), PR: [omnisharp-roslyn#962](https://github.com/OmniSharp/omnisharp-roslyn/pull/962)]) _(Contributed by [@filipw](https://github.com/filipw))_
1930
* Fixed issue where signing key was not read correctly from project file, which can result in InternalsVisibleTo not being handled properly. (PR: [omnisharp-roslyn#964](https://github.com/OmniSharp/omnisharp-roslyn/pull/964))
31+
* Fixed long-standing problem with renaming files. ([#785](https://github.com/OmniSharp/omnisharp-vscode/issues/785), [#1792](https://github.com/OmniSharp/omnisharp-vscode/issues/1792), PR: [#1805](https://github.com/OmniSharp/omnisharp-vscode/pull/1805))
2032

2133
#### Testing
2234

2335
* 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), [#1749](https://github.com/OmniSharp/omnisharp-vscode/pull/1749))
2436
* Fix issue causing NUnit tests not to work when running or debugging tests. ([#1615](https://github.com/OmniSharp/omnisharp-vscode/issues/1635), PR: [#1760](https://github.com/OmniSharp/omnisharp-vscode/pull/1760)). _(Contributed by [@dgileadi](https://github.com/dgileadi))_
2537
* 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))
2638

39+
#### Other Updates and Fixes
40+
41+
* If Mono 5.2.0 or greater is installed, OmniSharp will be launched on that rather than the local Mono runtime that it carries with it. This allows, more Mono and Xamarin projects to load properly and improves OmniSharp performance (since it can run on Mono AOT'd binaries). ([#1779](https://github.com/OmniSharp/omnisharp-vscode/issues/1779), PR: [#1789](https://github.com/OmniSharp/omnisharp-vscode/pull/1789))
42+
* Support added for launching OmniSharp on folders and solutions across multi-root workspaces. ([#1762](https://github.com/OmniSharp/omnisharp-vscode/issues/1762), PR: [#1806](https://github.com/OmniSharp/omnisharp-vscode/pull/1806))
43+
* Added `csharp.referencesCodeLens.enabled` and `csharp.testsCodeLens.enabled` options to allow disabling/enabling for the 'references' and 'run/debug test' code lenses independently. ([#1570](https://github.com/OmniSharp/omnisharp-vscode/issues/1570), [#1807](https://github.com/OmniSharp/omnisharp-vscode/issues/1807), PRs: [#1781](https://github.com/OmniSharp/omnisharp-vscode/pull/1781), [#1809](https://github.com/OmniSharp/omnisharp-vscode/pull/1809))
44+
2745
## 1.12.1 (August 14, 2017)
2846

2947
* 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: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "csharp",
33
"publisher": "ms-vscode",
4-
"version": "1.13.0-beta3",
4+
"version": "1.13.0-beta4",
55
"description": "C# for Visual Studio Code (powered by OmniSharp).",
66
"displayName": "C#",
77
"author": "Microsoft Corporation",
@@ -68,8 +68,8 @@
6868
"runtimeDependencies": [
6969
{
7070
"description": "OmniSharp for Windows (.NET 4.6 / x86)",
71-
"url": "https://download.visualstudio.microsoft.com/download/pr/100072918/cbdb3770c4579f0e1c706e1cde5a9fd5/omnisharp-win-x86-1.25.0.zip",
72-
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-win-x86-1.25.0.zip",
71+
"url": "https://download.visualstudio.microsoft.com/download/pr/100229653/2bcdb52a3a25e1f7c42057c1755fdc84/omnisharp-win-x86-1.26.0.zip",
72+
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-win-x86-1.26.0.zip",
7373
"installPath": ".omnisharp",
7474
"platforms": [
7575
"win32"
@@ -81,8 +81,8 @@
8181
},
8282
{
8383
"description": "OmniSharp for Windows (.NET 4.6 / x64)",
84-
"url": "https://download.visualstudio.microsoft.com/download/pr/100072923/0dad9944356fbf70218702138980de43/omnisharp-win-x64-1.25.0.zip",
85-
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-win-x64-1.25.0.zip",
84+
"url": "https://download.visualstudio.microsoft.com/download/pr/100229652/5aebec76e7272330f89f22a9b6dc15fa/omnisharp-win-x64-1.26.0.zip",
85+
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-win-x64-1.26.0.zip",
8686
"installPath": ".omnisharp",
8787
"platforms": [
8888
"win32"
@@ -94,8 +94,8 @@
9494
},
9595
{
9696
"description": "OmniSharp for OSX",
97-
"url": "https://download.visualstudio.microsoft.com/download/pr/100072921/f4ac3f4988bd1f8952dc5d191280e1d5/omnisharp-osx-1.25.0.zip",
98-
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-osx-1.25.0.zip",
97+
"url": "https://download.visualstudio.microsoft.com/download/pr/100229651/8f7cef31adb7684806f817cf35581188/omnisharp-osx-1.26.0.zip",
98+
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-osx-1.26.0.zip",
9999
"installPath": ".omnisharp",
100100
"platforms": [
101101
"darwin"
@@ -108,8 +108,8 @@
108108
},
109109
{
110110
"description": "OmniSharp for Linux (x86)",
111-
"url": "https://download.visualstudio.microsoft.com/download/pr/100072919/d5bdc011577f429f5d1b92af92e8c272/omnisharp-linux-x86-1.25.0.zip",
112-
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-linux-x86-1.25.0.zip",
111+
"url": "https://download.visualstudio.microsoft.com/download/pr/100229714/11a6e85fc78b40cdb5a30e6da919efdc/omnisharp-linux-x86-1.26.0.zip",
112+
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-linux-x86-1.26.0.zip",
113113
"installPath": ".omnisharp",
114114
"platforms": [
115115
"linux"
@@ -126,8 +126,8 @@
126126
},
127127
{
128128
"description": "OmniSharp for Linux (x64)",
129-
"url": "https://download.visualstudio.microsoft.com/download/pr/100072922/147ad3a08e8aa350b5536bebc9b85151/omnisharp-linux-x64-1.25.0.zip",
130-
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-linux-x64-1.25.0.zip",
129+
"url": "https://download.visualstudio.microsoft.com/download/pr/100229650/607ee43103b6f5641bbd08b8ffcaf892/omnisharp-linux-x64-1.26.0.zip",
130+
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-linux-x64-1.26.0.zip",
131131
"installPath": ".omnisharp",
132132
"platforms": [
133133
"linux"

0 commit comments

Comments
 (0)