C# Omnisharp Broke w/ Recent Update #811
-
The recent update for VS Code seems to have broken Omnisharp for both me and someone else I know and we are not longer getting error, warning, syntax, etc underlining on our code. Everything else seems to be working fine - the code is still being colored properly, you can ctrl+click to navigate fast, the run unit test buttons are there, etc. I also don't know if it is tied to the issue, but the line |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
I recommend checking the extension repository for related issues, then opening one there if you don't find an existing one. This discussion forum is intended for extension developers rather than extension users. |
Beta Was this translation helpful? Give feedback.
-
Hi @mbo17210 , I'm not sure if you are aware of but, there was a big update in the C# extension (https://devblogs.microsoft.com/visualstudio/announcing-csharp-dev-kit-for-visual-studio-code/), which, beyond among other things, moved from Omnisharp a new Language Server (by default) under the hood, and could affect some scenarios. If you didn't know about it, I suggest you to try out one of these approaches
If you knew about it, then you should open an issue in the C# extension repo (https://github.com/dotnet/vscode-csharp/issues/new/choose) providing as much detail as possible . As commented by @gjsjohnmurray, this Discussions repo is focused for extension development for now. Hope this helps |
Beta Was this translation helpful? Give feedback.
-
It's quite common for updates in development tools to occasionally introduce regressions. Given that multiple users are reporting issues with Omnisharp after the recent VS Code update, it's likely a compatibility problem with the latest VS Code API changes or the underlying.NET runtime environment that Omnisharp relies on. Besides downgrading, another immediate step could be to check the 'Output' panel in VS Code (View -> Output) and select 'Omnisharp' from the dropdown. This might provide more detailed error messages or logs that could help diagnose the specific issue. Sharing these logs in the Omnisharp extension's issue tracker on GitHub would be very helpful for the maintainers. |
Beta Was this translation helpful? Give feedback.
Hi @mbo17210 ,
I'm not sure if you are aware of but, there was a big update in the C# extension (https://devblogs.microsoft.com/visualstudio/announcing-csharp-dev-kit-for-visual-studio-code/), which, beyond among other things, moved from Omnisharp a new Language Server (by default) under the hood, and could affect some scenarios.
If you didn't know about it, I suggest you to try out one of these approaches
If you knew about it, then you should open an issue in the C# extension repo (http…