Skip to content

Commit

Permalink
Добавил launch.json для отладки Mono в VS Code.
Browse files Browse the repository at this point in the history
  • Loading branch information
zloy-zhake committed Dec 17, 2016
1 parent 2a4b800 commit 0e98099
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "mono",
"request": "launch",
"program": "${workspaceRoot}/bin/Debug/iag4t.exe",
"args": [],
"cwd": "${workspaceRoot}",
"preLaunchTask": "",
"runtimeExecutable": null,
"env": {},
"externalConsole": false
},
{
"name": "Attach",
"type": "mono",
"request": "attach",
"address": "localhost",
"port": 55555
}
]
}

0 comments on commit 0e98099

Please sign in to comment.