From 4d9beadadd71672789e8c5fe0ce4752b23825476 Mon Sep 17 00:00:00 2001 From: dopeuni444 Date: Thu, 31 Jul 2025 03:49:35 +0400 Subject: [PATCH] Add VS Code launch configuration for debugging --- .../PowerShell_AI_Agent/.vscode/launch.json | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 PowerShell_AI_Agent/PowerShell_AI_Agent/.vscode/launch.json diff --git a/PowerShell_AI_Agent/PowerShell_AI_Agent/.vscode/launch.json b/PowerShell_AI_Agent/PowerShell_AI_Agent/.vscode/launch.json new file mode 100644 index 0000000..dd2d55d --- /dev/null +++ b/PowerShell_AI_Agent/PowerShell_AI_Agent/.vscode/launch.json @@ -0,0 +1,37 @@ +{ + // 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": "Attach to Process", + "type": "go", + "request": "attach", + "mode": "local", + "processId": 0 + }, + + + { + "name": "Connect to server", + "type": "go", + "request": "attach", + "mode": "remote", + "remotePath": "${workspaceFolder}", + "port": 2345, + "host": "127.0.0.1" + }, + + + + { + "name": "PowerShell: Launch Current File", + "type": "PowerShell", + "request": "launch", + "script": "${file}", + "args": [] + } + ] +} \ No newline at end of file