I started to develop Asp.net Core web API with the VS code. But when I typing the code Intellisense/Suggestions not working properly. I saw in some resource on the internet whil
I solved this by upgrading my Mono project version https://www.mono-project.com/
This started happening after the latest Windows10 update.
Re-installed .NET Core Runtime and everything's fine now.
To solve this I did several things. First of all, I downgrade OmniSharp
version by installing their beta version. download the .vsix
file for that release to my machine. Used the following steps to install the .vsix
into Visual Studio Code.
...
at the top-right corner of the Extensions pane and select "Install from VSIX...
" on the menu..vsix
the file I downloaded and Opened itBut the problem still occurred, so then I downgraded the .Net core SDK v2.2.202
version to 2.1.202
and the problem is solved.
Solved (cross checked on Ubuntu 16.04 and CentOS 7):
In the VS Code menu, go into File / Preferences / Settings.
In the "Search settings" window, type omnisharp.path
Click on "Edit in settings.json" link.
Add (or edit) like this: "omnisharp.path": "latest"
(from: https://github.com/OmniSharp/omnisharp-vscode/issues/2965)
I've had both VSCode and Visual Studio installed on my mac. Uninstalling Visual Studio with this official guide solved the issue.
I solved this issue by doing the following on VSCode: