Skip to content

Commit 5863e8d

Browse files
committed
Add a VS Code launch target for debugging
1 parent a1c8279 commit 5863e8d

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed

.vscode/launch.json

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,24 @@
44
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
55
"version": "0.2.0",
66
"configurations": [
7-
7+
{
8+
"name": "Launch PSReadLine",
9+
"type": "coreclr",
10+
"request": "launch",
11+
"program": "pwsh",
12+
"args": [
13+
"-NonInteractive",
14+
"-NoProfile",
15+
"-NoExit",
16+
"-Command",
17+
"Import-Module '${workspaceFolder}/PSReadLine/bin/Debug/netstandard2.0/PSReadLine.psd1'"
18+
],
19+
"console": "integratedTerminal",
20+
"justMyCode": false,
21+
"suppressJITOptimizations": true,
22+
"enableStepFiltering": false,
23+
"preLaunchTask": "Build",
24+
},
825
{
926
"name": ".NET Core Attach",
1027
"type": "coreclr",
@@ -16,4 +33,4 @@
1633
}
1734
}
1835
]
19-
}
36+
}

0 commit comments

Comments
 (0)