|
1 | | -## Known Issues in 1.14.0 |
| 1 | +## Known Issues in 1.15.0 |
2 | 2 |
|
3 | 3 | * There currently is no completion support for package references in csproj files. ([#1156](https://github.com/OmniSharp/omnisharp-vscode/issues/1156)) |
4 | 4 | * As an alternative, consider installing the [MSBuild Project Tools](https://marketplace.visualstudio.com/items?itemName=tintoy.msbuild-project-tools) extension by @tintoy. |
5 | 5 |
|
6 | | -## 1.15.0 _(Not Yet Released)_ |
| 6 | +## 1.15.0 (May 10, 2018) |
7 | 7 |
|
8 | 8 | #### Debugger |
9 | 9 |
|
10 | 10 | * New features: |
| 11 | + |
11 | 12 | * Adds support for [Source Link](https://aka.ms/SourceLinkSpec), Symbol Servers and other more advanced symbol options ([#373](https://github.com/OmniSharp/omnisharp-vscode/issues/373)) |
12 | 13 | * Adds launch.json option to suppress Just-In-Time compiler optimizations. |
13 | 14 | * Due to the previous two items and work from the .NET Team, it is now possible to easily debug into ASP.NET itself in projects running against .NET Core 2.1. Instructions are in the [wiki](https://github.com/OmniSharp/omnisharp-vscode/wiki/Debugging-into-the-.NET-Framework-itself). |
14 | 15 | * Adds support for pulling in environment variables from `${cwd}/Properties/launchSettings.json`. This means that if you add environment variable configuration to your launchSettings.json file, they will now be used when you start your app from Visual Studio Code like they previously would be used from the command line (`dotnet run`), and from Visual Studio. ([#2017](https://github.com/OmniSharp/omnisharp-vscode/issues/2017)) |
15 | | - * Adds a Code Lens indicator for running and debugging all tests in a class. ([#420](https://github.com/OmniSharp/omnisharp-vscode/issues/420), PR: [#1961](https://github.com/OmniSharp/omnisharp-vscode/pull/1961); PR: [omnisharp-roslyn#1089](https://github.com/OmniSharp/omnisharp-roslyn/pull/1089)) |
16 | 16 |
|
17 | 17 | * Bug fixes: |
| 18 | + |
18 | 19 | * On Linux, this reduces the native dependencies of the debugger to match the .NET Core 2.1 runtime. The Linux .NET Core 2.1 runtime reduced its native dependencies over all the previous versions, but the debugger still had the same dependencies as .NET Core 2.0. With this fix, the debugger will now continue to work on Linux after installing the .NET Core runtime and nothing else. ([#2199](https://github.com/OmniSharp/omnisharp-vscode/issues/2199)) |
19 | 20 | * Fixes async call stacks with the .NET Core 2.1 runtime. ([#1892](https://github.com/OmniSharp/omnisharp-vscode/issues/1892)) |
20 | 21 | * Fixes the debugger's browser launch code when launching projects configured to use Application Insights. ([2177](https://github.com/OmniSharp/omnisharp-vscode/issues/2177)) |
21 | 22 |
|
| 23 | +#### Editor |
| 24 | + |
| 25 | +* Fixed regression where the "Generate Type in New File" code action would create an empty file. ([#2112](https://github.com/OmniSharp/omnisharp-vscode/issues/2112), PR: [omnisharp-roslyn#1143](https://github.com/OmniSharp/omnisharp-roslyn/pull/1143)) |
| 26 | +* Made several improvments to the display of tooltips in Signature Help. ([#1940](https://github.com/OmniSharp/omnisharp-vscode/issues/1940), PR: [#1958](https://github.com/OmniSharp/omnisharp-vscode/pull/1958)) |
| 27 | + |
22 | 28 | #### Options |
23 | 29 |
|
24 | 30 | * "omnisharp.path": This option has been updated to enable the user to specify different versions of OmniSharp, including prerelease versions. ([#1909](https://github.com/OmniSharp/omnisharp-vscode/issues/1909), PR: [#2039](https://github.com/OmniSharp/omnisharp-vscode/pull/2039)) |
|
36 | 42 | * "always": Always launch OmniSharp with `mono`. If version 5.2.0 or greater is not available on the PATH, an error will be printed. |
37 | 43 | * "never": Never launch OmniSharp on a globally-installed Mono. |
38 | 44 |
|
| 45 | +* It is now possible to suppress the "Some projects have trouble loading" popup using the `omnisharp.disableMSBuildDiagnosticWarning` option. ([#2110](https://github.com/OmniSharp/omnisharp-vscode/issues/2110) |
| 46 | + |
| 47 | +#### Project System |
| 48 | + |
| 49 | +* Several common globbing patterns are now excluded by default when OmniSharp scans for `*.csproj`, `*.cake`, or `*.csx` files to load. The deafault patterns are `**/node_modules/**/*`, `**/bin/**/*`, `**/obj/**/*`, `**/.git/**/*`. ([omnisharp-roslyn#896](https://github.com/OmniSharp/omnisharp-roslyn/issues/896), PR: [omnisharp-roslyn#1161](https://github.com/OmniSharp/omnisharp-roslyn/pull/1161)) _(Contributed by [@filipw](https://github.com/filipw))_ |
| 50 | +* The list of globbing patterns that are excluded by OmniSharp can be customized in an `omnisharp.json` file list so. |
| 51 | + ```JSON |
| 52 | + { |
| 53 | + "systemExcludeSearchPatterns": [ |
| 54 | + "**/test/**/*" |
| 55 | + ], |
| 56 | + "excludeSearchPatterns": [ |
| 57 | + "**/local/**/*" |
| 58 | + ] |
| 59 | + } |
| 60 | + ``` |
| 61 | + |
| 62 | + For more details on configuring OmniSharp see [Configuration Options](https://github.com/OmniSharp/omnisharp-roslyn/wiki/Configuration-Options) at the [omnisharp-roslyn](https://github.com/OmniSharp/omnisharp-roslyn) repo. ([omnisharp-roslyn#896](https://github.com/OmniSharp/omnisharp-roslyn/issues/896), PR: [omnisharp-roslyn#1161](https://github.com/OmniSharp/omnisharp-roslyn/pull/1161)) _(Contributed by [@filipw](https://github.com/filipw))_ |
| 63 | +* Improved handling of projects with XAML files. ([#2173](https://github.com/OmniSharp/omnisharp-vscode/issues/2173), PR: [omnisharp-roslyn#1157](https://github.com/OmniSharp/omnisharp-roslyn/pull/1157)) |
| 64 | +* MSBuild is now properly located on Windows for Visual Studio 2017 previews. ([omnisharp-roslyn#1166](https://github.com/OmniSharp/omnisharp-roslyn/pull/1166)) _(Contributed by [@rainersigwald](https://github.com/rainersigwald))_ |
| 65 | + |
| 66 | +#### Scripting |
| 67 | + |
| 68 | +* It is now possible to define the default target framework for C# scripts in an `omnisharp.json` file. |
| 69 | + |
| 70 | + ```JSON |
| 71 | + { |
| 72 | + "script": { |
| 73 | + "defaultTargetFramework": "netcoreapp2.0" |
| 74 | + } |
| 75 | + } |
| 76 | + ``` |
| 77 | + |
| 78 | + (PR: [omnisharp-roslyn#1154](https://github.com/OmniSharp/omnisharp-roslyn/pull/1154)) _(Contributed by [@filipw](https://github.com/filipw))_ |
| 79 | + |
39 | 80 | #### Status Bar |
40 | 81 |
|
41 | 82 | * Splits the OmniSharp status bar item into two parts, both of which appear on the left side of VS Code's status bar and have specific responsibilities. ([#2146](https://github.com/OmniSharp/omnisharp-vscode/issues/2146), PR: [#2133](https://github.com/OmniSharp/omnisharp-vscode/pull/2133)) |
| 83 | + |
42 | 84 | * OmniSharp Server info: |
43 | 85 | * Displays the current state of the OmniSharp server, such as Downloading, Installing, etc. The flame icon is green when the server is initialized and running properly, or red if there is an error. |
44 | 86 | * Selected Project info: |
45 | 87 | * Displays the name of the selected project regardless of the currently active document. |
46 | 88 | * If a project is already selected, it displays the name of the selected project. Clicking on it displays a menu to switch to other projects in the workspace. |
47 | 89 | * If there are multiple possible launch targets, it displays 'Select Project'. Clicking on it displays a menu to select one. |
48 | 90 |
|
| 91 | +#### Testing |
| 92 | + |
| 93 | +* Added "debug all tests" and "run all tests" to the CodeLens that appears above test classes to allow running or debugging all tests in a class. ([#420](https://github.com/OmniSharp/omnisharp-vscode/issues/420), PRs: [#1961](https://github.com/OmniSharp/omnisharp-vscode/pull/1961), [omnisharp-roslyn#1089](https://github.com/OmniSharp/omnisharp-roslyn/pull/1089) |
| 94 | + |
49 | 95 | #### Misc |
50 | 96 |
|
51 | | -* Enables suppressing the "Some projects have trouble loading" popup using the `omnisharp.disableMSBuildDiagnosticWarning` option ([#2110]https://github.com/OmniSharp/omnisharp-vscode/issues/2110) |
| 97 | +* Fixed script for creating offline VSIXs. ([#2137](https://github.com/OmniSharp/omnisharp-vscode/issues/2137), PR: [#2138](https://github.com/OmniSharp/omnisharp-vscode/pull/2138)) |
52 | 98 |
|
53 | 99 | ## 1.14.0 (February 14, 2018) |
54 | 100 |
|
|
0 commit comments