PowerShell/.vscode/launch.json

42 lines
1.1 KiB
JSON
Raw Permalink Normal View History

{
2016-04-01 19:26:50 +02:00
"version": "0.2.0",
2016-03-31 07:59:48 +02:00
"configurations": [
{
"name": ".NET Core Launch",
"type": "coreclr",
"request": "launch",
"justMyCode": false,
"stopAtEntry": true,
"program": "${workspaceRoot}/debug/pwsh",
"preLaunchTask": "Build",
"externalConsole": true,
2016-03-31 07:59:48 +02:00
"cwd": "${workspaceRoot}"
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach",
"justMyCode": false,
"processId": "${command:pickProcess}"
},
{
"type": "PowerShell",
"request": "launch",
"name": "PowerShell Launch Current File",
"script": "${file}",
"args": [],
"cwd": "${file}"
},
{
"type": "PowerShell",
"request": "launch",
"name": "PowerShell Launch Current File w/Args Prompt",
"script": "${file}",
"args": [
"${command:SpecifyScriptArgs}"
],
"cwd": "${file}"
2016-03-31 07:59:48 +02:00
}
]
}