/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v7.4.17
.vscode/launch.json
41 строка
1 KB
Steve Lee
Fix build in vscode (#5453)
15 ноя 2017, 22:40
15 ноя 2017, 22:40
2f8e691
Код
Авторство
О чём код?
{ "version": "0.2.0", "configurations": [ { "name": ".NET Core Launch", "type": "coreclr", "request": "launch", "justMyCode": false, "stopAtEntry": true, "program": "${workspaceRoot}/debug/pwsh", "preLaunchTask": "Build", "externalConsole": true, "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}" } ] }