* Changes for 1.21.0

* update package.json
This commit is contained in:
Akshita Agarwal 2019-07-15 16:06:11 -07:00 коммит произвёл GitHub
Родитель 9bbd27ebcb
Коммит 134664d0a2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
4 изменённых файлов: 65 добавлений и 51 удалений

4
.vscode/launch.json поставляемый
Просмотреть файл

@ -144,8 +144,8 @@
"updatePackageDependencies"
],
"env": {
"NEW_DEPS_URLS": "https://download.visualstudio.microsoft.com/download/pr/bf1ed1e6-f3c4-43e3-b588-b03f9de22e25/7c3ffe2da48278f50831681aa5ed8b45/omnisharp-linux-x64-1.33.0.zip,https://download.visualstudio.microsoft.com/download/pr/bf1ed1e6-f3c4-43e3-b588-b03f9de22e25/cff62c40fd9434e0efc53aacbdd4b203/omnisharp-linux-x86-1.33.0.zip,https://download.visualstudio.microsoft.com/download/pr/bf1ed1e6-f3c4-43e3-b588-b03f9de22e25/2cb2af92a6f8133cc50d5d0680d490a8/omnisharp-osx-1.33.0.zip,https://download.visualstudio.microsoft.com/download/pr/bf1ed1e6-f3c4-43e3-b588-b03f9de22e25/010f456b59bf3d8797a04f247c2f9e67/omnisharp-win-x64-1.33.0.zip,https://download.visualstudio.microsoft.com/download/pr/bf1ed1e6-f3c4-43e3-b588-b03f9de22e25/583e3891715c82b4f2a29ef567166073/omnisharp-win-x86-1.33.0.zip" ,
"NEW_DEPS_VERSION": "1.33.0"
"NEW_DEPS_URLS": "https://download.visualstudio.microsoft.com/download/pr/73cab26d-cc33-42ee-bbee-4ee2399bcd00/78355d5ef10b31e8b72e077b6bbabbca/omnisharp-linux-x64-1.34.0.zip,https://download.visualstudio.microsoft.com/download/pr/73cab26d-cc33-42ee-bbee-4ee2399bcd00/572c0f88abe6a55a6a5a474f0c8f1965/omnisharp-linux-x86-1.34.0.zip,https://download.visualstudio.microsoft.com/download/pr/73cab26d-cc33-42ee-bbee-4ee2399bcd00/df8feab37b0c49457b9f6fe62f940207/omnisharp-osx-1.34.0.zip,https://download.visualstudio.microsoft.com/download/pr/73cab26d-cc33-42ee-bbee-4ee2399bcd00/8ac6cdbef1b99c6dc6485a79020d2c49/omnisharp-win-x64-1.34.0.zip,https://download.visualstudio.microsoft.com/download/pr/73cab26d-cc33-42ee-bbee-4ee2399bcd00/235f92e460725e0b2053f94d69858241/omnisharp-win-x86-1.34.0.zip" ,
"NEW_DEPS_VERSION": "1.34.0"
},
"cwd": "${workspaceFolder}"
}

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

@ -9,14 +9,40 @@
* 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.20.0 (Not yet released)
## 1.21.0 (July 15, 2019)
* Added a `omnisharp.enableEditorConfigSupport` setting to enable support for .editorconfig [#3136](https://github.com/OmniSharp/omnisharp-vscode/pull/3136) (_Contributed by_ [@hoffs](https://github.com/hoffs))(PR: [omnisharp-roslyn#1526](https://github.com/OmniSharp/omnisharp-roslyn/pull/1526) (_Contributed by_ [@filipw](https://github.com/filipw)))
* Modified the auto generated tasks in tasks.json to generate full paths and disable summary to fix the problem of no source links in the problems panel. (PR:[#3145](https://github.com/OmniSharp/omnisharp-vscode/pull/3145))
* Added support for Roslyn code actions that normally need UI - they used to be explicitly sipped by OmniSharp, now it surfaces them with predefined defaults instead. ([omnisharp-roslyn#1220](https://github.com/OmniSharp/omnisharp-roslyn/issues/1220), PR: [#1406](https://github.com/OmniSharp/omnisharp-roslyn/pull/1406)) These are:
* extract interface
* generate constructor
* generate overrides
* generate *Equals* and *GetHashCode*
* Improved analyzers performance by introducing background analysis support ([omnisharp-roslyn#1507](https://github.com/OmniSharp/omnisharp-roslyn/pull/1507))
* According to [official Microsoft .NET Core support policy](https://dotnet.microsoft.com/platform/support/policy/dotnet-core), .NET Core 1.0 and 1.1 (`project.json`-based .NET Core flavors) have reached end of life and went out of support on 27 June 2019. OmniSharp features to support that, which have been obsolete and disabled by default since version 1.32.2 (2018-08-07), are now completely removed.
* Fixed a bug where some internal services didn't respect the disabling of a project system ([omnisharp-roslyn#1543](https://github.com/OmniSharp/omnisharp-roslyn/pull/1543))
* Improved the MSBuild selection logic. The standalone instance inside OmniSharp is now preferred over VS2017, with VS2019 given the highest priority. This ensures that .NET Core 3.0 works correctly. It is also possible manually provide an MSBuild path using OmniSharp configuration, which is then always selected. ([omnisharp-roslyn#1541](https://github.com/OmniSharp/omnisharp-roslyn/issues/1541), PR: [omnisharp-roslyn#1545](https://github.com/OmniSharp/omnisharp-roslyn/pull/1545))
```JSON
{
"MSBuild": {
"MSBuildOverride": {
"MSBuildPath": "C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Enterprise\\MSBuild\\15.0\\Bin",
"Name": "vs2017 msbuild"
}
}
}
```
* Added support for *AdditionalFiles* in csproj files ([omnisharp-roslyn#1510](https://github.com/OmniSharp/omnisharp-roslyn/issues/1510), PR: [omnisharp-roslyn#1547](https://github.com/OmniSharp/omnisharp-roslyn/pull/1547))
* Fixed a bug in *.editorconfig* where formatting settings were not correctly passed into external code fixes ([omnisharp-roslyn#1558](https://github.com/OmniSharp/omnisharp-roslyn/issues/1558), PR: [omnisharp-roslyn#1559](https://github.com/OmniSharp/omnisharp-roslyn/pull/1559))
## 1.20.0 (June 11, 2019)
* Updated the auto-generated launch.json to use new mechanism for starting web browser. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser
* Improved support for .NET Core 3
* Updates to Razor support
* Made QuickInfo display more consistent with Visual Studio. ([#2610](https://github.com/OmniSharp/omnisharp-vscode/issues/2610)) (_Contributed by_ [@paladique](https://github.com/paladique))(PR: [#3090](https://github.com/OmniSharp/omnisharp-vscode/pull/3090/))
* Added support for fading unnecessary code and using statements [#2873](https://github.com/OmniSharp/omnisharp-vscode/pull/2873)
* Added a `omnisharp.enableEditorConfigSupport` setting to enable support for .editorconfig [#3136](https://github.com/OmniSharp/omnisharp-vscode/pull/3136) (_Contributed by_ [@hoffs](https://github.com/hoffs))(PR: [omnisharp-roslyn#1526](https://github.com/OmniSharp/omnisharp-roslyn/pull/1526) (_Contributed by_ [@filipw](https://github.com/filipw)))
## 1.19.1 (May 6, 2019)

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

@ -20,28 +20,16 @@ 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.20.0
### What's new in 1.21.0
* Updated the auto-generated launch.json to use new mechanism for starting web browser. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser
* Improved support for .NET Core 3
* Updates to Razor support
* Made QuickInfo display more consistent with Visual Studio. ([#2610](https://github.com/OmniSharp/omnisharp-vscode/issues/2610)) (_Contributed by_ [@paladique](https://github.com/paladique))(PR: [#3090](https://github.com/OmniSharp/omnisharp-vscode/pull/3090/))
* Added support for fading unnecessary code and using statements [#2873](https://github.com/OmniSharp/omnisharp-vscode/pull/2873)
* Added a `omnisharp.enableEditorConfigSupport` setting to enable support for .editorconfig.
* Modified the auto generated tasks in tasks.json to generate full paths and disable summary to fix the problem of no source links in the problems panel.
* Improved analyzers performance by introducing background analysis support
* End of support for .NET Core 1.0 and 1.1 (`project.json`-based .NET Core flavors).
* Added support for *AdditionalFiles* in csproj files
* Improved the MSBuild selection logic. The standalone instance inside OmniSharp is now preferred over VS2017, with VS2019 given the highest priority.
### What's new in 1.19.1
* Updated debugger to work correctly on Linux distributions with openssl 1.1 such as Ubuntu 19.04.
* Fixed OmniSharp hanging on wildcard Nuget package references.
* OmniSharp now uses correct 4.7.2 framework sku to prompt for installation of .NET 4.7.2 if missing.
### What's new in 1.19.0
* Improved support for .NET Core 3
* Added support for roslyn analyzers, code fixes and rulesets which can be enabled via`omnisharp.enableRoslynAnalyzers` setting.
* Improved Razor diagnostics
* Razor tooling support for tag helpers
See our [change log](https://github.com/OmniSharp/omnisharp-vscode/blob/v1.19.1/CHANGELOG.md) for more detail.
See our [change log](https://github.com/OmniSharp/omnisharp-vscode/blob/v1.21.0/CHANGELOG.md) for more detail.
### Supported Operating Systems for Debugging

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

@ -1,7 +1,7 @@
{
"name": "csharp",
"publisher": "ms-vscode",
"version": "1.21.0-beta1",
"version": "1.21.0-beta2",
"description": "C# for Visual Studio Code (powered by OmniSharp).",
"displayName": "C#",
"author": "Microsoft Corporation",
@ -29,7 +29,7 @@
"dotnet"
],
"defaults": {
"omniSharp": "1.33.0",
"omniSharp": "1.34.0",
"razor": "1.0.0-alpha3-20190627.5"
},
"main": "./dist/extension",
@ -159,41 +159,41 @@
{
"id": "OmniSharp",
"description": "OmniSharp for Windows (.NET 4.6 / x86)",
"url": "https://download.visualstudio.microsoft.com/download/pr/bf1ed1e6-f3c4-43e3-b588-b03f9de22e25/583e3891715c82b4f2a29ef567166073/omnisharp-win-x86-1.33.0.zip",
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-win-x86-1.33.0.zip",
"installPath": ".omnisharp/1.33.0",
"url": "https://download.visualstudio.microsoft.com/download/pr/73cab26d-cc33-42ee-bbee-4ee2399bcd00/235f92e460725e0b2053f94d69858241/omnisharp-win-x86-1.34.0.zip",
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-win-x86-1.34.0.zip",
"installPath": ".omnisharp/1.34.0",
"platforms": [
"win32"
],
"architectures": [
"x86"
],
"installTestPath": "./.omnisharp/1.33.0/OmniSharp.exe",
"installTestPath": "./.omnisharp/1.34.0/OmniSharp.exe",
"platformId": "win-x86",
"integrity": "AB941DD01541D65549463E85D1706E754573B97CB0541DAC01304FB431BDBF64"
"integrity": "CD385D22C5FF2B9B9A9F6CABC2B55C6478455513AA89411E2E37795EC669F0F6"
},
{
"id": "OmniSharp",
"description": "OmniSharp for Windows (.NET 4.6 / x64)",
"url": "https://download.visualstudio.microsoft.com/download/pr/bf1ed1e6-f3c4-43e3-b588-b03f9de22e25/010f456b59bf3d8797a04f247c2f9e67/omnisharp-win-x64-1.33.0.zip",
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-win-x64-1.33.0.zip",
"installPath": ".omnisharp/1.33.0",
"url": "https://download.visualstudio.microsoft.com/download/pr/73cab26d-cc33-42ee-bbee-4ee2399bcd00/8ac6cdbef1b99c6dc6485a79020d2c49/omnisharp-win-x64-1.34.0.zip",
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-win-x64-1.34.0.zip",
"installPath": ".omnisharp/1.34.0",
"platforms": [
"win32"
],
"architectures": [
"x86_64"
],
"installTestPath": "./.omnisharp/1.33.0/OmniSharp.exe",
"installTestPath": "./.omnisharp/1.34.0/OmniSharp.exe",
"platformId": "win-x64",
"integrity": "BB62EF2561C203EC764C9DF0C92D78BE93A4C5E2A4A98919BC74DB413BBA00EE"
"integrity": "22E0EB3C37F9B999916A186DA852591E732BE61F7B3706B7FF1B83FB6E4A3878"
},
{
"id": "OmniSharp",
"description": "OmniSharp for OSX",
"url": "https://download.visualstudio.microsoft.com/download/pr/bf1ed1e6-f3c4-43e3-b588-b03f9de22e25/2cb2af92a6f8133cc50d5d0680d490a8/omnisharp-osx-1.33.0.zip",
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-osx-1.33.0.zip",
"installPath": ".omnisharp/1.33.0",
"url": "https://download.visualstudio.microsoft.com/download/pr/73cab26d-cc33-42ee-bbee-4ee2399bcd00/df8feab37b0c49457b9f6fe62f940207/omnisharp-osx-1.34.0.zip",
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-osx-1.34.0.zip",
"installPath": ".omnisharp/1.34.0",
"platforms": [
"darwin"
],
@ -201,16 +201,16 @@
"./mono.osx",
"./run"
],
"installTestPath": "./.omnisharp/1.33.0/run",
"installTestPath": "./.omnisharp/1.34.0/run",
"platformId": "osx",
"integrity": "C34BD7BB39CA34E0C7BB839650F75586129F30D1D758E7023EF6957E2CAA87F6"
"integrity": "3C2DE49C24590F6C3C91A9FB421DFC65C0A0AFA4A2C5A5743411CB21DE46170D"
},
{
"id": "OmniSharp",
"description": "OmniSharp for Linux (x86)",
"url": "https://download.visualstudio.microsoft.com/download/pr/bf1ed1e6-f3c4-43e3-b588-b03f9de22e25/cff62c40fd9434e0efc53aacbdd4b203/omnisharp-linux-x86-1.33.0.zip",
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-linux-x86-1.33.0.zip",
"installPath": ".omnisharp/1.33.0",
"url": "https://download.visualstudio.microsoft.com/download/pr/73cab26d-cc33-42ee-bbee-4ee2399bcd00/572c0f88abe6a55a6a5a474f0c8f1965/omnisharp-linux-x86-1.34.0.zip",
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-linux-x86-1.34.0.zip",
"installPath": ".omnisharp/1.34.0",
"platforms": [
"linux"
],
@ -222,16 +222,16 @@
"./mono.linux-x86",
"./run"
],
"installTestPath": "./.omnisharp/1.33.0/run",
"installTestPath": "./.omnisharp/1.34.0/run",
"platformId": "linux-x86",
"integrity": "AC08A6B229F4876368B236229E0528C2CC54F0DA73DFC708BEF04D2B1B5EF3AA"
"integrity": "7211D70DF39C4CAA65BAA8FD2244C317AAAE316FFA75C9A64256DD91C8977B60"
},
{
"id": "OmniSharp",
"description": "OmniSharp for Linux (x64)",
"url": "https://download.visualstudio.microsoft.com/download/pr/bf1ed1e6-f3c4-43e3-b588-b03f9de22e25/7c3ffe2da48278f50831681aa5ed8b45/omnisharp-linux-x64-1.33.0.zip",
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-linux-x64-1.33.0.zip",
"installPath": ".omnisharp/1.33.0",
"url": "https://download.visualstudio.microsoft.com/download/pr/73cab26d-cc33-42ee-bbee-4ee2399bcd00/78355d5ef10b31e8b72e077b6bbabbca/omnisharp-linux-x64-1.34.0.zip",
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-linux-x64-1.34.0.zip",
"installPath": ".omnisharp/1.34.0",
"platforms": [
"linux"
],
@ -242,9 +242,9 @@
"./mono.linux-x86_64",
"./run"
],
"installTestPath": "./.omnisharp/1.33.0/run",
"installTestPath": "./.omnisharp/1.34.0/run",
"platformId": "linux-x64",
"integrity": "E342F4D73297121E81AF30DCEC2BA99FC64C39E9DE6B205B2682717616BBD808"
"integrity": "8B730E00D0AE1BBC245AE2DA70CD24EFC07D81695822B553FA3868EFEF9F0627"
},
{
"id": "Debugger",