Skip to content

Commit d2ca2a0

Browse files
author
Ravi Chande
authored
Merge branch 'master' into 16.1-beta1
2 parents e707473 + a813b0d commit d2ca2a0

File tree

3 files changed

+14
-13
lines changed

3 files changed

+14
-13
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
## Known Issues in 1.15.0
1+
## Known Issues in 1.16.0
22

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.16.0 _(Not Yet Released)_
6+
## 1.16.0 (September 10, 2018)
77

88
#### Project System
99

README.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,18 @@ The C# extension is powered by [OmniSharp](https://github.com/OmniSharp/omnishar
2020
* [Documentation](https://code.visualstudio.com/docs/languages/csharp)
2121
* [Video Tutorial compiling with .NET Core](https://channel9.msdn.com/Blogs/dotnet/Get-started-VSCode-Csharp-NET-Core-Windows)
2222

23-
### What's New in 1.15.0
24-
25-
* Debugger support for Source Link and Symbol Servers
26-
* Added support for downloading and launching prerelease versions of the OmniSharp server
27-
* Improved the status bar display for OmniSharp Server and selected project information
28-
* Added CodeLens for running and debugging all tests in a test class
29-
* Performance improvements when OmniSharp scans for projects
30-
* Improvements for projects containing XAML files
23+
### What's New in 1.16.0
24+
25+
* Debugger support for launching with environment variables stored in a separate file from launch.json via a new `envFile` option.
26+
* Debugger support for hit count breakpoint conditions.
27+
* Enabled IDE features for .cs files that are not part of a project.
28+
* Modified the "Unresolved dependencies" prompt to restore the all the projects in the currently selected solution or workspace.
29+
* Added support to configure the default *.sln file loaded when opening a project with multiple *.sln files in the root.
30+
* Added verbosity to the test execution output when running test using codelens.
31+
* Added `monoPath` option to use the mono installation at the specified path when the `useGlobalMono` is set to "always" or "auto".
3132
* Many other bug fixes!
3233

33-
See our [change log](https://github.com/OmniSharp/omnisharp-vscode/blob/v1.15.2/CHANGELOG.md) for more detail.
34+
See our [change log](https://github.com/OmniSharp/omnisharp-vscode/blob/v1.16.0/CHANGELOG.md) for more detail.
3435

3536
### Supported Operating Systems for Debugging
3637

src/configurationProvider.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ export class CSharpConfigurationProvider implements vscode.DebugConfigurationPro
118118
config.env = parsedFile.Env;
119119
}
120120
catch (e) {
121-
throw new Error("Can't parse envFile " + envFile);
121+
throw new Error(`Can't parse envFile ${envFile} because of ${e}`);
122122
}
123123
}
124124

@@ -154,4 +154,4 @@ export class CSharpConfigurationProvider implements vscode.DebugConfigurationPro
154154
}
155155
}
156156
}
157-
}
157+
}

0 commit comments

Comments
 (0)