-
Notifications
You must be signed in to change notification settings - Fork 676
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
Add help link to .NET SDK install prompt #3508
Conversation
This adds a Help link to the .NET SDK install prompt to help users troubleshoot problems with locating `dotnet`.
Found the restart button but it still is failing with:
Must be a cache error and might just need to wait a bit. |
The CI failure is from: dotnet/core#4122 |
@WardenGnaw can you hit the restart button? The apt get issue is supposed to be fixed now. |
I hit the restart button for you. |
@JoeRobich Thanks. Can you poke it again (or just force it through) one flaky test... |
Codecov Report
@@ Coverage Diff @@
## master #3508 +/- ##
======================================
Coverage 89.8% 89.8%
======================================
Files 59 59
Lines 1589 1589
Branches 89 89
======================================
Hits 1427 1427
Misses 151 151
Partials 11 11
Continue to review full report at Codecov.
|
DO NOT USE Ubuntu. I have no problems using the .net5 RC1 on Fedora 33 beta. Download the dotnet-sdk SDK manually. Start VSCode with a script file with this content: where you have to adapt XXX and YYY to your case. DO NOT USE Ubuntu snap. From my console: xxx:~$ dotnet Usage: dotnet [options] Options: path-to-application: Previously: I made this post already here and here. On Ubuntu 20.04.1, the problem is the snap alias. Do not install it. Instead do this: sudo snap install dotnet-sdk --channel=5.0/beta --classic DO NOT install the alias because it makes Omnisharp not find the SDK. It can be removed with: Start VSCode with a script file with this content: You have to adapt the second line, that starts VSCode insiders, to your case. |
This adds a Help link to the .NET SDK install prompt to help users troubleshoot problems with locating
dotnet
.The help page to review: https://github.com/OmniSharp/omnisharp-vscode/wiki/Troubleshooting:-'The-.NET-Core-SDK-cannot-be-located.'-errors
This fixes #3507