Running VS Code with C# for Visual Studio Code (powered by OmniSharp) plugin is complaining about the following:
This happened on my environment when I have installed dotnet-sdk using snap. To workaround, do:
Reference:
https://github.com/OmniSharp/omnisharp-vscode/issues/3077
The .NET Core SDK cannot be located. .NET Core debugging will not be enabled. Make sure the .NET Core SDK is installed and is on the path.
This happened on my environment when I have installed dotnet-sdk using snap. To workaround, do:
$: sudo ln -sv /snap/dotnet-sdk/current/dotnet /usr/local/bin/dotnet
Reference:
https://github.com/OmniSharp/omnisharp-vscode/issues/3077
Comments