We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1c8279 commit 5863e8dCopy full SHA for 5863e8d
.vscode/launch.json
@@ -4,7 +4,24 @@
4
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
"version": "0.2.0",
6
"configurations": [
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
+ },
25
{
26
"name": ".NET Core Attach",
27
"type": "coreclr",
@@ -16,4 +33,4 @@
33
}
34
35
]
-}
36
+}
0 commit comments