Skip to content

Commit

Permalink
add launch configuration for WindowsPowershell
Browse files Browse the repository at this point in the history
  • Loading branch information
halvarsson committed Apr 30, 2024
1 parent 148ff77 commit d809055
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,21 @@
"console": "externalTerminal",
"stopAtEntry": false
},
{
"name": ".NET Launch (console)",
"type": "clr",
"request": "launch",
"preLaunchTask": "build",
"program": "powershell",
"args": [
"-NoExit",
"-Command",
"& { Import-Module .\\psedit.psd1; Show-PSEditor}"
],
"cwd": "${workspaceFolder}\\bin\\Debug\\netstandard2.0\\publish",
"console": "externalTerminal",
"stopAtEntry": false
},
{
"name": ".NET Core Attach",
"type": "coreclr",
Expand Down

0 comments on commit d809055

Please sign in to comment.