From 653c1538ef23664383028a38229e48e1ed4136e0 Mon Sep 17 00:00:00 2001 From: Pier-Paolo Mammi Date: Thu, 18 Jun 2026 16:21:38 +0200 Subject: [PATCH] add VS Code debug configuration for scripts --- .vscode/launch.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..9863d38 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,25 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Export ELX (DEBUG ONLY)", + "script": "${workspaceFolder}/scripts/export-elx.ps1", + "args": [ + "-ModuleTag", "${input:moduleTag}" + ], + "type": "PowerShell", + "request": "launch", + } + ], + "inputs": [ + { + "id": "moduleTag", + "type": "promptString", + "description": "Enter module tag to export", + "default": "moduleTag" + } + ] +} \ No newline at end of file