Skip to content

Instantly share code, notes, and snippets.

@NickCrew
Created January 11, 2020 02:30
Show Gist options
  • Save NickCrew/6b6f4f2595426556aad50d53aaf4a213 to your computer and use it in GitHub Desktop.
Save NickCrew/6b6f4f2595426556aad50d53aaf4a213 to your computer and use it in GitHub Desktop.
{
// 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