vscode-mono-debug/package.json

135 строки
3.2 KiB
JSON

{
"name": "mono-debug",
"displayName": "Mono Debug",
"version": "0.10.15",
"publisher": "ms-vscode",
"description": "Visual Studio Code debugger extension for Mono",
"icon": "images/mono-debug-icon.svg",
"categories": [
"Debuggers"
],
"author": {
"name": "Microsoft Corporation"
},
"license": "MIT",
"private": true,
"scripts": {
"prepublish": "make build",
"vscode:prepublish": "make build",
"compile": "make build",
"watch": "tsc -w -p ./tests",
"test": "node ./node_modules/mocha/bin/mocha --timeout 999999 -u tdd ./tests/out/"
},
"engines": {
"vscode": "^0.10.1"
},
"dependencies": {
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-mono-debug.git"
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-mono-debug/issues"
},
"devDependencies": {
"mocha": "^2.4.5",
"typescript": "^1.8.2",
"vscode-debugprotocol": "^1.6.1"
},
"contributes": {
"debuggers": [{
"type": "mono",
"label": "%mono.label%",
"enableBreakpointsFor": { "languageIds": ["csharp", "fsharp"] },
"program": "./bin/Release/mono-debug.exe",
"osx": {
"runtime": "mono"
},
"linux": {
"runtime": "mono"
},
"aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217",
"initialConfigurations": [
{
"name": "%mono.launch.config.name%",
"type": "mono",
"request": "launch",
"program": "${workspaceRoot}/program.exe",
"args": [],
"cwd": "${workspaceRoot}",
"preLaunchTask": "",
"runtimeExecutable": null,
"env": { },
"externalConsole": false
},
{
"name": "%mono.attach.config.name%",
"type": "mono",
"request": "attach",
"address": "localhost",
"port": 55555
}
],
"configurationAttributes": {
"launch": {
"required": ["program"],
"properties": {
"program": {
"type": "string",
"description": "%mono.launch.program.description%"
},
"args": {
"type": "array",
"description": "%mono.launch.args.description%",
"items": { "type": "string" },
"default": []
},
"cwd": {
"type": "string",
"description": "%mono.launch.cwd.description%",
"default": "."
},
"runtimeExecutable": {
"type": ["string", "null"],
"description": "%mono.launch.runtimeExecutable.description%",
"default": null
},
"runtimeArgs": {
"type": "array",
"description": "%mono.launch.runtimeArgs.description%",
"items": { "type": "string" },
"default": []
},
"env": {
"type": "object",
"description": "%mono.launch.env.description%",
"default": {}
},
"externalConsole": {
"type": "boolean",
"description": "%mono.launch.externalConsole.description%",
"default": true
}
}
},
"attach": {
"required": ["port"],
"properties": {
"port": {
"type": "number",
"description": "%mono.attach.port.description%",
"default": 55555
},
"address": {
"type": "string",
"description": "%mono.attach.address.description%",
"default": "undefined"
}
}
}
}
}]
}
}