This commit is contained in:
Akshita 2019-04-12 17:14:24 -07:00
Родитель ec82803457
Коммит 98d5399608
3 изменённых файлов: 6 добавлений и 5 удалений

Просмотреть файл

@ -1,4 +1,4 @@
## Known Issues in 1.18.0
## Known Issues in 1.18.1
* Known limitations with the preview Razor (cshtml) language service to be addressed in a future release:
* Only ASP.NET Core projects are supported (no support for ASP.NET projects)
@ -11,7 +11,7 @@
* There currently is no completion support for package references in csproj files. ([#1156](https://github.com/OmniSharp/omnisharp-vscode/issues/1156))
* As an alternative, consider installing the [MSBuild Project Tools](https://marketplace.visualstudio.com/items?itemName=tintoy.msbuild-project-tools) extension by @tintoy.
## 1.18.1 (April 11, 2019)
## 1.18.1 (April 16, 2019)
* Improved support for .NET Core 3
## 1.18.0 (March 26, 2019)

Просмотреть файл

@ -20,8 +20,9 @@ The C# extension is powered by [OmniSharp](https://github.com/OmniSharp/omnishar
* [Documentation](https://code.visualstudio.com/docs/languages/csharp)
* [Video Tutorial compiling with .NET Core](https://channel9.msdn.com/Blogs/dotnet/Get-started-VSCode-Csharp-NET-Core-Windows)
### What's new in 1.18.0
### What's new in 1.18.1
* Added support for roslyn analyzers, code fixes and rulesets which can be enabled via`omnisharp.enableRoslynAnalyzers` setting.
* Added a `csharp.maxProjectFileCountForDiagnosticAnalysis` setting to configure the file limit when the extension stops reporting errors for whole workspace. When this threshold is reached, the diagnostics are reported for currently opened files only.
* Added a `omnisharp.enableMsBuildLoadProjectsOnDemand` setting to load project for files that were opened in the editor. This enables faster navigation of the codebase for the larger codebases.
* Added initial support for C# 8.
@ -30,7 +31,7 @@ The C# extension is powered by [OmniSharp](https://github.com/OmniSharp/omnishar
* Added support for set next statement. This feature allows developers to change what code is executed next in the target program.
* Added support for showing return values in the variables window.
See our [change log](https://github.com/OmniSharp/omnisharp-vscode/blob/v1.18.0/CHANGELOG.md) for more detail.
See our [change log](https://github.com/OmniSharp/omnisharp-vscode/blob/v1.18.1/CHANGELOG.md) for more detail.
### Supported Operating Systems for Debugging

Просмотреть файл

@ -1,7 +1,7 @@
{
"name": "csharp",
"publisher": "ms-vscode",
"version": "1.18.1",
"version": "1.18.1-beta1",
"description": "C# for Visual Studio Code (powered by OmniSharp).",
"displayName": "C#",
"author": "Microsoft Corporation",