Merge pull request #115 from microsoft/dependabot/npm_and_yarn/lodash-4.18.1 Bump lodash from 4.17.23 to 4.18.1
Merge pull request #115 from microsoft/dependabot/npm_and_yarn/lodash-4.18.1
Bump lodash from 4.17.23 to 4.18.1
A simple VS Code debugger extension for the Mono VM. Its implementation was inspired by the SDB command line debugger.
You can either download the latest Mono version for Linux, macOS, or Windows at the Mono project website or you can use your package manager.
brew install mono
sudo apt-get install mono-complete
yum install mono-complete
dnf install mono-complete
To enable debugging of Mono based C# (and F#) programs, you have to pass the -debug option to the compiler:
-debug
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 --debugger-agent=transport=dt_socket,server=y,address=127.0.0.1:55555 Program.exe
The corresponding attach launch.json configuration looks like this:
launch.json
{ "version": "0.2.0", "configurations": [ { "name": "Attach to Mono", "request": "attach", "type": "mono", "address": "localhost", "port": 55555 } ] }
Building and using VS Code mono-debug requires a basic POSIX-like environment, a Bash-like shell, and an installed Mono framework.
First, clone the mono-debug project:
$ git clone --recursive https://github.com/microsoft/vscode-mono-debug
To build the extension vsix, run:
$ cd vscode-mono-debug $ npm install $ make
版权所有:中国计算机学会技术支持:开源发展技术委员会 京ICP备13000930号-9 京公网安备 11010802032778号
VS Code Mono Debug
A simple VS Code debugger extension for the Mono VM. Its implementation was inspired by the SDB command line debugger.
Installing Mono
You can either download the latest Mono version for Linux, macOS, or Windows at the Mono project website or you can use your package manager.
brew install monosudo apt-get install mono-completeyum install mono-completednf install mono-completeEnable Mono debugging
To enable debugging of Mono based C# (and F#) programs, you have to pass the
-debugoption to the compiler:If you want to attach the VS Code debugger to a Mono program, pass these additional arguments to the Mono runtime:
The corresponding attach
launch.jsonconfiguration looks like this:Building the mono-debug extension
Building and using VS Code mono-debug requires a basic POSIX-like environment, a Bash-like shell, and an installed Mono framework.
First, clone the mono-debug project:
To build the extension vsix, run: