From e06e910ae4cd2bd482708b6be40ebc4ca573dfb9 Mon Sep 17 00:00:00 2001 From: Godaddy-del Date: Fri, 13 Dec 2024 09:41:19 -0500 Subject: [PATCH] --- .vscode/launch.json | 54 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..c520a3a4 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,54 @@ +{ + // 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": [ + { + "type": "cobol", + "request": "launch", + "name": "COBOL (native): Remote-SSH", + "program": "", + "env": { + "TERM": "xterm", + "DISPLAY": "" + }, + "stopOnEntry": true, + "console": "externalTerminal" + }, + { + "type": "cobol", + "request": "launch", + "name": "COBOL: (debugCurrentFile)", + "program": "${workspaceFolder}/${fileBasenameNoExtension}.int", + "cwd": "${workspaceFolder}", + "stopOnEntry": true + }, + + { + "type": "cobol", + "request": "launch", + "name": "COBOL (native): Enterprise Server", + "enterpriseServer": { + "serverName": "Please enter the name of the server to debug.", + "serverAddress": "Please enter the address of the 'mfcs-mp' or 'soap' listener for the server. eg tcp:127.0.0.1:." + } + }, + + + { + "type": "cobol", + "request": "launch", + "name": "COBOL (native): Launch", + "program": "${workspaceFolder}/", + "cwd": "${workspaceFolder}", + "stopOnEntry": true + }, + { + "type": "cobol", + "request": "attach", + "name": "COBOL (native): Attach to process", + "processId": "${command:pickProcess}" + } + ] +} \ No newline at end of file