this post was submitted on 01 Aug 2023
25 points (90.3% liked)

Linux

47368 readers
1088 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

I tried to use Visual Studio Code a few times. One time, I encountered an error related to OmniSharp, though I don't remember the exact details. However, Python worked fine, for example. Then, I reinstalled Arch, and now I've decided to try using Visual Studio Code again because I need it to learn programming. Unfortunately, I just can't make it work. When I start debugging, nothing happens—no errors, nothing..

I have installed everything needed(.net-sdk, mono). However, the problem is that I just can't work with it properly. I am unable to run the debugger. When I press F5 and select a debugger, nothing happens. I managed to run a 'hello world' using the 'dotnet run' command, but that's all. I have no idea how to fix it, and I can't find any information about my issue.

top 14 comments
sorted by: hot top controversial new old
[–] [email protected] 9 points 1 year ago

Have you tried setting a breakpoint and seeing if it hits? Assuming the app you are debugging is just a Console.WriteLine("Hello World"); and no breakpoints are set, the app will execute, output hello world, and terminate. Which means you wouldn't see anything happen in VS Code.

If you are super new to all this, I would suggest you look for videos/articles on how to debug using visual studio code as they may provide some insights or concepts you may not already know.

[–] [email protected] 3 points 1 year ago

If you get "hello world" after dotnet run your compiler and toolchain were installed correctly.

Make sure you open the right console when debugging C# command line applications (there's a console for debug output and there's a console for terminal output).

Without a screenshot or screen recording I can't tell you exactly what you're doing wrong, but I believe you may be misunderstanding the UI in some way.

Check out Microsoft's guide if you're stuck: https://code.visualstudio.com/docs/csharp/debugging

[–] [email protected] 2 points 1 year ago (1 children)

Omnisharp was a pain to get working properly.

[–] [email protected] 2 points 1 year ago

It's not on Fedora or EL based distro

[–] [email protected] 2 points 1 year ago

Make sure you install the C# Dev Kit extension, the C# extension alone won't do it.

[–] [email protected] 1 points 1 year ago

It's been a hot minute since I've used vscode, but you want to invoke the command pallet (Ctrl+P I think) and create a build profile/task/something. You then want to do the same for a debug profile. This will create two files under .vscode - you will need to edit the debug one to add the build task as a dependency for the debug profile.

You could also try running dotnet build in the terminal before doing what you are doing already.

Also vscodium won't work, the debugging plugin is closed source and is only available for vscode.