What is the simplest way to run a C# program in linux (eg with `dotnet`) and be able to see the output of Debug.Print statements? All the instructions I find on Google only show how to do this in VS Code and I am not currently using VS Code.
@mcc you may need to use something like netcoredbg, which is somehow even less convenient than gdb but shouldn't be too difficult to use for something simple like this
@mcc it does. As far as I know, it's the only FOSS tool that does this(and as such the only one that bothers to even slightly work outside of a specific IDE).