4 changed files
.vscode | ||
analyzersettings.psd1 + | ||
launch.json | ||
settings.json | ||
tasks.json | ||
Add comment 12 "Bypass"
Add comment 13 ],
Add comment 14 "cwd": "${file}"
Add comment 15 Plus },
Add comment 16 Plus {
Add comment 17 Plus "type": "PowerShell",
Add comment 18 Plus "request": "launch",
Add comment 19 Plus "name": "PowerShell Launch Current File in Temporary Console",
Add comment 20 Plus "script": "${file}",
Add comment 21 Plus "args": [],
Add comment 22 Plus "cwd": "${file}",
Add comment 23 Plus "createTemporaryIntegratedConsole": true
Add comment 24 Plus },
Add comment 25 Plus {
Add comment 26 Plus "type": "PowerShell",
Add comment 27 Plus "request": "launch",
Add comment 28 Plus "name": "PowerShell Launch Current File w/Args Prompt",
Add comment 29 Plus "script": "${file}",
Add comment 30 Plus "args": [
Add comment 31 Plus "${command:SpecifyScriptArgs}"
Add comment 32 Plus ],
Add comment 33 Plus "cwd": "${file}"
Add comment 34 Plus },
Add comment 35 Plus {
Add comment 36 Plus "type": "PowerShell",
Add comment 37 Plus "request": "attach",
Add comment 38 Plus "name": "PowerShell Attach to Host Process",
Add comment 39 Plus "processId": "${command:PickPSHostProcess}",
Add comment 40 Plus "runspaceId": 1
Add comment 41 Plus },
Add comment 42 Plus {
Add comment 43 Plus "type": "PowerShell",
Add comment 44 Plus "request": "launch",
Add comment 45 Plus "name": "PowerShell Interactive Session",
Add comment 46 Plus "cwd": "${workspaceRoot}"
Add comment 15 47 }
Add comment 16 48 ]
Add comment 17 49 }