-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #836 from ironmansoftware/832
Fixes #810
- Loading branch information
Showing
4 changed files
with
96 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "PowerShell Launch Current File", | ||
"type": "PowerShell", | ||
"request": "launch", | ||
"script": "${file}", | ||
"args": [], | ||
"cwd": "${file}" | ||
}, | ||
{ | ||
"name": "PowerShell Launch Current File in Temporary Console", | ||
"type": "PowerShell", | ||
"request": "launch", | ||
"script": "${file}", | ||
"args": [], | ||
"cwd": "${file}", | ||
"createTemporaryIntegratedConsole": true | ||
}, | ||
{ | ||
"name": "PowerShell Launch Current File w/Args Prompt", | ||
"type": "PowerShell", | ||
"request": "launch", | ||
"script": "${file}", | ||
"args": [ | ||
"${command:SpecifyScriptArgs}" | ||
], | ||
"cwd": "${file}" | ||
}, | ||
{ | ||
"name": "PowerShell Attach to Host Process", | ||
"type": "PowerShell", | ||
"request": "attach" | ||
}, | ||
{ | ||
"name": "PowerShell Interactive Session", | ||
"type": "PowerShell", | ||
"request": "launch", | ||
"cwd": "" | ||
}, | ||
{ | ||
"name": "PowerShell Attach Interactive Session Runspace", | ||
"type": "PowerShell", | ||
"request": "attach", | ||
"processId": "current" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.