From 20d0cd2f0e1357b2d45ecf794810cd7eadd79027 Mon Sep 17 00:00:00 2001 From: copygirl Date: Sat, 6 May 2023 13:49:50 +0200 Subject: [PATCH] Add ".NET Attach" launch config This helps debugging the source gnerator. --- .vscode/launch.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 76f6da9..538b2bc 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -11,6 +11,11 @@ "cwd": "${workspaceFolder}/src/Immersion", "console": "internalConsole", "stopAtEntry": false + }, + { + "name": ".NET Attach", + "type": "coreclr", + "request": "attach" } ] }