Created
January 11, 2020 02:30
-
-
Save NickCrew/6b6f4f2595426556aad50d53aaf4a213 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{ | |
// 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 Script", | |
"type": "PowerShell", | |
"request": "launch", | |
"script": "enter path or command to execute e.g.: ${workspaceFolder}/src/foo.ps1 or Invoke-Pester", | |
"cwd": "${workspaceFolder}" | |
}, | |
{ | |
"name": "PowerShell: Launch Current File", | |
"type": "PowerShell", | |
"request": "launch", | |
"script": "${file}", | |
"cwd": "${file}" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment