目录
dependabot[bot]

Bump js-yaml, @typescript-eslint/eslint-plugin, @typescript-eslint/parser and eslint (#119)

Bumps js-yaml to 4.3.0 and updates ancestor dependencies js-yaml, @typescript-eslint/eslint-plugin, @typescript-eslint/parser and eslint. These dependencies need to be updated together.

Updates js-yaml from 4.1.1 to 4.3.0

Updates @typescript-eslint/eslint-plugin from 4.4.0 to 8.62.0

Updates @typescript-eslint/parser from 4.4.0 to 8.62.0

Updates eslint from 7.32.0 to 10.6.0


updated-dependencies:

  • dependency-name: js-yaml dependency-version: 4.3.0 dependency-type: indirect
  • dependency-name: “@typescript-eslint/eslint-plugin” dependency-version: 8.62.0 dependency-type: direct:development
  • dependency-name: “@typescript-eslint/parser” dependency-version: 8.62.0 dependency-type: direct:development
  • dependency-name: eslint dependency-version: 10.6.0 dependency-type: direct:development …

Signed-off-by: dependabot[bot] support@github.com Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

27天前302次提交

VS Code Mono Debug

A simple VS Code debugger extension for the Mono VM. Its implementation was inspired by the SDB command line debugger.

Mono Debug

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.

  • 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 --debugger-agent=transport=dt_socket,server=y,address=127.0.0.1:55555 Program.exe

The corresponding attach launch.json configuration looks like this:

{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Attach to Mono",
            "request": "attach",
            "type": "mono",
            "address": "localhost",
            "port": 55555
        }
    ]
}

Building the mono-debug extension

build status

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
邀请码
    Gitlink(确实开源)
  • 加入我们
  • 官网邮箱:gitlink@ccf.org.cn
  • QQ群
  • QQ群
  • 公众号
  • 公众号

版权所有:中国计算机学会技术支持:开源发展技术委员会
京ICP备13000930号-9 京公网安备 11010802047560号