Skip to content

Commit

Permalink
update launch file to match new schema for runnign files
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisLGardner committed Jan 8, 2019
1 parent 97de700 commit 2cff908
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .vscode/launch.json
Expand Up @@ -55,19 +55,19 @@
"name": "PowerShell - GenerateReleaseNotes",
"type": "PowerShell",
"request": "launch",
"program": "${workspaceRoot}/Extensions/GenerateReleaseNotes/test/runtests.ps1"
"script": "${workspaceRoot}/Extensions/GenerateReleaseNotes/test/runtests.ps1"
},
{
"name": "PowerShell - StyleCop",
"type": "PowerShell",
"request": "launch",
"program": "${workspaceRoot}/Extensions/StyleCop/test/runtests.ps1"
"script": "${workspaceRoot}/Extensions/StyleCop/test/runtests.ps1"
},
{
"name": "PowerShell - current file",
"type": "PowerShell",
"request": "launch",
"program": "${file}"
"script": "${file}"
}
]
}
}

0 comments on commit 2cff908

Please sign in to comment.