It tip up front -- install "dotnet" first. This comes from the Fedora package system (see below under "Get .NET"), then install visual studio Code. This is not essential, but I think will smooth things out.
Just like the last time, the following link offers a download of Visual Studio Code for Linux
And there are a variety of resources to learn about it.su #dnf install code-1.77.1-1680651749.el7.x86_64.rpm dnf install code-1.92.2-1723661076.el8.x86_64.rpm
Indeed after I do this I can type "code" at the command line and it launches. It is version 1.92 as per July, 2024. It tells me it cannot find "dotnet" and also tells me it cannot find the .NET Core SDK. It offers a button to "Get the SDK" which sounds good to me (it indicates "Source: C#" alongside this button.) Once I click the button it tells me that it needs dotnet to do this. It fires up a website to download the .NET SDK
su dnf install dotnet-sdk-8.0Much to my surprise, this works. It installs 10 packages, pulling them from the regular Fedora package repositories.
tom@trona:/u1/home/tom$ dotnet --list-sdks 8.0.108 [/usr/lib64/dotnet/sdk] tom@trona:/u1/home/tom$ dotnet --list-runtimes Microsoft.AspNetCore.App 8.0.8 [/usr/lib64/dotnet/shared/Microsoft.AspNetCore.App] Microsoft.NETCore.App 8.0.8 [/usr/lib64/dotnet/shared/Microsoft.NETCore.App] tom@trona:/u1/home/tom$They told me that if I install the SDK, I will also get the runtimes and won't have to install them separately.
I restart code. It is talking about "ionide" and has rediscovered some F# project from before my disk crash. It shows me "Program.fs". Using locate, shows me:
/u1/home/tom/C#/FirstIonideProject/Program.fs /u1/home/tom/C#/fsample/src/App/Program.fsI should watch their instructional videos.
I did this to get past my old mess:
cd /u1/home/tom/C# mv FirstIonideProject/ XXX codeNow it comes up clean giving me a welcome screen with a nice greeting, start buttons, and links to Walkthroughs. This is better.
Then it has some that it calls "recommended". Right away "Vim" catches my eye. I select this and info about it fills the main screen, and includes an "install" button. This could not be easier. It seems to take less than 1 second. It also suggests "GitLens", but I will hold off on that.
Ctrl-Shift-P is the "command palette" and promises to be useful
Ctrl-K Ctrl-O lets me pick a folder (I go to /home/tom/c-sharp)
But when I am done with these walkthroughs, I am stuck looking at a file in the c-sharp directory I selected and it does not think it is a project.
Help -- Welcome seems to get back to the welcome screen with walkthroughs. The next is "get started with C# Dev Kit.
This whole process is buggy as hell. I can login and then it tells me "you can close this page", which I do, but this terminates the whole process. I login again and get some notification from my browser that it cannot reach 127.0.0.1 (i.e. localhost). Of course I can ping 127.0.0.1 -- maybe it expects port 80 to respond? (I discover later it is trying port 39501, but perhaps this changes every time?)
Now I go all the way back to VS Code and try the Connect button again and it tells me that the software is licensed to me under an individual license. So apparently I am "connected" now, despite the confusing nonsense that went on in the browser. All is well that ends well I guess.
Tom's Computer Info / [email protected]