diff options
Diffstat (limited to 'source/.vscode/launch.json')
| -rw-r--r-- | source/.vscode/launch.json | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/source/.vscode/launch.json b/source/.vscode/launch.json new file mode 100644 index 0000000..09aca23 --- /dev/null +++ b/source/.vscode/launch.json @@ -0,0 +1,24 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Launch", + "type": "mono", + "request": "launch", + "program": "${workspaceRoot}/program.exe", + "args": [], + "cwd": "${workspaceRoot}", + "preLaunchTask": "", + "runtimeExecutable": null, + "env": {}, + "externalConsole": false + }, + { + "name": "Attach", + "type": "mono", + "request": "attach", + "address": "localhost", + "port": 55555 + } + ] +}
\ No newline at end of file |
