-
Notifications
You must be signed in to change notification settings - Fork 230
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update to use OmniSharp 0.19.0 #1424
Conversation
338b1ed
to
3194f8a
Compare
Working on getting this put together. FYI @rjmholt and @david-driscoll |
48d2ceb
to
bedcc39
Compare
The PSES tests don't pass, but it builds! The extension tests pass, I think. |
8185019
to
c83f4aa
Compare
c83f4aa
to
f5df46e
Compare
Bumps [OmniSharp.Extensions.LanguageServer](https://github.com/OmniSharp/csharp-language-server-protocol) from 0.18.3 to 0.19.0. - [Release notes](https://github.com/OmniSharp/csharp-language-server-protocol/releases) - [Changelog](https://github.com/OmniSharp/csharp-language-server-protocol/blob/master/GitReleaseManager.yaml) - [Commits](OmniSharp/csharp-language-server-protocol@v0.18.3...v0.19.0) Signed-off-by: dependabot-preview[bot] <[email protected]>
Bumps [OmniSharp.Extensions.DebugAdapter.Client](https://github.com/OmniSharp/csharp-language-server-protocol) from 0.18.3 to 0.19.0. - [Release notes](https://github.com/OmniSharp/csharp-language-server-protocol/releases) - [Changelog](https://github.com/OmniSharp/csharp-language-server-protocol/blob/master/GitReleaseManager.yaml) - [Commits](OmniSharp/csharp-language-server-protocol@v0.18.3...v0.19.0) Signed-off-by: dependabot-preview[bot] <[email protected]>
Bumps [OmniSharp.Extensions.LanguageClient](https://github.com/OmniSharp/csharp-language-server-protocol) from 0.18.3 to 0.19.0. - [Release notes](https://github.com/OmniSharp/csharp-language-server-protocol/releases) - [Changelog](https://github.com/OmniSharp/csharp-language-server-protocol/blob/master/GitReleaseManager.yaml) - [Commits](OmniSharp/csharp-language-server-protocol@v0.18.3...v0.19.0) Signed-off-by: dependabot-preview[bot] <[email protected]>
f5df46e
to
ac9de93
Compare
…HandlerBase` Except for `TelemetryEventParams` changes, saving for later.
Which we need for `record`s, and OmniSharp forces us to use.
ac9de93
to
3ae17e8
Compare
This is ready @rjmholt! |
Name = "Main Thread" | ||
}) | ||
// TODO: This is an empty container of threads...do we need to make a thread? | ||
Threads = new Container<System.Threading.Thread>() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I thought this was weird, but we already didn't really know what to do with it (see "What do I do with these?")
This updates our base dependency, OmniSharp, from 0.18.3 to 0.19.0, which included many API changes. The approach taken to reduce code was the replacement of interface-implementations with ABC derivations, providing a few things for free for each of the derived classes, and is more inline with the expectations of the library developers. There are a couple classes that implement multiple interfaces, and have been left TODO for a switch to an ABC implementation. Furthermore, the C# language specification needed to be updated because of OmniSharp's use of new language features (namely
record
s), and I found that our xUnit package was misaligned.