http://gothub.nowhevi57f4lxxd6db43miewcsgtovakbh6v5f52ci7csc2yjzy5rnid.onion/microsoft/vscode-mono-debug
On OS X: brew install mono On Ubuntu, Debian, Raspbian: sudo apt-get install mono-complete On CentOS: yum install mono-complete On Fedora: dnf install mono-complete Enable Mono debugging To enable debugging of Mono based C# (and F#) programs, you have to pass the -debug option to the compiler: csc -debug Program.cs If you want to attach the VS Code debugger to a Mono program, pass these additional arguments to the Mono runtime: mono --debug...