Though I primarily use vim, I got VSCodium so I could use it as a debugger since its much easier to set up. I am having alot of trouble getting any use out of it though, when I run the program the IDE gives me errors if I type in the debug console, and closes the terminal if I type in the integrated terminal. I’ve changed the config to allow integrated terminal, but nothing has changed.

Can anyone help me figure this out, or recommend an alternative tool for debugging a C# program?

Edit: I finally found my answer: https://discuss.cachyos.org/t/debugging-c-console-apps-on-linux-with-vs-codium-readline-input-not-working/16493

Unfortunately there is no FOSS way to debug a C# application in VSCodium. Might have to see what this lldb tool is.

  • xianjam@programming.dev
    link
    fedilink
    arrow-up
    1
    ·
    2 days ago

    Hi, I’m not quite sure what you’re asking, but .NET debugging is possible inside of VSCodium with the DotRush extension.

    • dr_robotBones@reddthat.comOP
      link
      fedilink
      arrow-up
      1
      ·
      2 days ago

      Without Microsoft’s proprietary debugger, it is not possible to get input from Console.ReadLine() in VSCodium’s integrated terminal or debug console. That’s the problem I was having. I’ll have to debug using external txt files.