Skip to content

Commit b7f067a

Browse files
Merge pull request #1841 from DustinCampbell/update-for-1.13
Updates for 1.13 release
2 parents 7d416b1 + 6a4c275 commit b7f067a

File tree

3 files changed

+21
-13
lines changed

3 files changed

+21
-13
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* There currently is no completion support for package references in csproj files. ([#1156](https://github.com/OmniSharp/omnisharp-vscode/issues/1156))
44
* As an alternative, consider installing the [MSBuild Project Tools](https://marketplace.visualstudio.com/items?itemName=tintoy.msbuild-project-tools) extension by @tintoy.
55

6-
## 1.13.0 _(Not Yet Released)_
6+
## 1.13.0 (November 7, 2017)
77

88
#### Cake
99

README.md

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,21 @@ The C# extension is powered by [OmniSharp](https://github.com/OmniSharp/omnishar
1818
* [Documentation](https://code.visualstudio.com/docs/languages/csharp)
1919
* [Video Tutorial compiling with .NET Core](https://channel9.msdn.com/Blogs/dotnet/Get-started-with-VS-Code-using-CSharp-and-NET-Core)
2020

21-
### What's New in 1.12.0
22-
23-
* Support for C# 7.1.
24-
* Support for latest .NET Core 2.0 preview.
25-
* Improvements to our support for Xamarin projects.
26-
* Several improvements to code actions, plus several new code fixes and refactorings.
27-
* The completion list now suggests variable names as you type.
28-
* Many other bug fixes
29-
30-
See our [change log](https://github.com/OmniSharp/omnisharp-vscode/blob/v1.12.0/CHANGELOG.md) for all of the updates.
21+
### What's New in 1.13.0
22+
23+
* Support for Cake files. (https://cakebuild.net/)
24+
* The language service now runs on Mono >= 5.2.0 when it is globally installed on macOS or Linux, resulting faster project load times.
25+
* If debugging is started when a launch.json is not present, picking ".NET Core" generates a launch.json dynamically that can correctly launch a .NET Core app without any additional changes.
26+
* Better reliability loading projects when Visual Studio 2017 (Windows) or Mono >= 5.2.0 (macOS/Linux) is installed.
27+
* Fixed issues with non-C# projects (such as F#) being treated as C# projects.
28+
* Addressed bugs when renaming files.
29+
* New options for controlling the display of the references and test CodeLens:
30+
* `csharp.referencesCodeLens.enabled`
31+
* `csharp.testsCodeLens.enabled`
32+
* Fixed problems with running/debugging xUnit 2.3.0 or NUnit tests.
33+
* Many other bug fixes!
34+
35+
See our [change log](https://github.com/OmniSharp/omnisharp-vscode/blob/v1.13.0/CHANGELOG.md) for all of the updates.
3136

3237
### Supported Operating Systems for Debugging
3338

package.json

Lines changed: 5 additions & 2 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-beta5",
4+
"version": "1.13.0",
55
"description": "C# for Visual Studio Code (powered by OmniSharp).",
66
"displayName": "C#",
77
"author": "Microsoft Corporation",
@@ -21,6 +21,9 @@
2121
"Linters",
2222
"Snippets"
2323
],
24+
"keywords": [
25+
"multi-root ready"
26+
],
2427
"main": "./out/src/main",
2528
"scripts": {
2629
"vscode:prepublish": "tsc -p ./",
@@ -74,7 +77,7 @@
7477
"tslint": "^3.15.1",
7578
"tslint-microsoft-contrib": "^2.0.12",
7679
"typescript": "^2.0.3",
77-
"vsce": "^1.7.0",
80+
"vsce": "^1.32.0",
7881
"vscode": "^1.1.6"
7982
},
8083
"runtimeDependencies": [

0 commit comments

Comments
 (0)