Skip to content

Commit 886943a

Browse files
committed
Add Editor Services launch configuration to workspace
1 parent bcd96a7 commit 886943a

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

extension-dev.code-workspace

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,24 @@
2020
"powershell.codeFormatting.whitespaceBeforeOpenBrace": false,
2121
"powershell.codeFormatting.whitespaceBetweenParameters": true,
2222
"powershell.codeFormatting.pipelineIndentationStyle": "IncreaseIndentationForFirstPipeline"
23+
},
24+
"launch": {
25+
"version": "0.2.0",
26+
"configurations": [
27+
{
28+
// https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
29+
"name": "Attach to Editor Services",
30+
"type": "coreclr",
31+
"request": "attach",
32+
"processId": "${command:pickProcess}",
33+
"justMyCode": false,
34+
"suppressJITOptimizations": true,
35+
"symbolOptions": {
36+
"searchPaths": [],
37+
"searchMicrosoftSymbolServer": true,
38+
"searchNuGetOrgSymbolServer": true
39+
}
40+
}
41+
]
2342
}
2443
}

0 commit comments

Comments
 (0)