| { | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "name": ".NET Core Launch (console)", | |
| "type": "coreclr", | |
| "request": "launch", | |
| "preLaunchTask": "build", | |
| "program": "${workspaceRoot}/bin/Debug/netcoreapp1.0/App.dll", | |
| "args": ["1","2","3","4","banana"], | |
| "cwd": "${workspaceRoot}", | |
| "stopAtEntry": false | |
| }, | |
| { | |
| "name": ".NET Core Launch (web)", | |
| "type": "coreclr", | |
| "request": "launch", | |
| "preLaunchTask": "build", | |
| "program": "${workspaceRoot}/bin/Debug/netcoreapp1.0/App.dll", | |
| "args": [], | |
| "cwd": "${workspaceRoot}", | |
| "stopAtEntry": false, | |
| "launchBrowser": { | |
| "enabled": true, | |
| "args": "${auto-detect-url}", | |
| "windows": { | |
| "command": "cmd.exe", | |
| "args": "/C start ${auto-detect-url}" | |
| }, | |
| "osx": { | |
| "command": "open" | |
| }, | |
| "linux": { | |
| "command": "xdg-open" | |
| } | |
| } | |
| }, | |
| { | |
| "name": ".NET Core Attach", | |
| "type": "coreclr", | |
| "request": "attach", | |
| "processName": "<example>" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment