From 0eda150f8bd54ea78ac3da04943ac4bda9fcd7cd Mon Sep 17 00:00:00 2001 From: Simon Steuer Date: Sun, 27 Apr 2025 17:55:19 +0200 Subject: [PATCH] =?UTF-8?q?Debugger=20in=20allen=20Konfigurationen=20an=20?= =?UTF-8?q?neuen=20VSCode-Standard=20angepasst=20+=20Schalter=20in=20Konfi?= =?UTF-8?q?guration=20f=C3=BCr=20compare=5Flists.py=20korrigiert=20+=20Syn?= =?UTF-8?q?tax-Korrektur:=20Die=20vesrchiedenen=20Konfigurationen=20werden?= =?UTF-8?q?=20jetzt=20mit=20Kommata=20getrennt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/launch.json | 31 ++++++++++++++++++------------- 1 file changed, 18 insertions(+), 13 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index e8ba384..c1d9219 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -9,27 +9,32 @@ { "name": "Python: Aktuelle Datei", - "type": "python", + "type": "debugpy", "request": "launch", "program": "${file}", "console": "integratedTerminal", "justMyCode": true - } + }, { "name": "Python: CompareLists", - "type": "python", + "type": "debugpy", "request": "launch", "program": "${file}", "console": "integratedTerminal", "justMyCode": true, "args": [ - "-n 400102196", - "-t" + "400102530", + "tree", + "--local_bom", + "--local_teilestamm", + "--local_rd_ids", + "--rm_bom_ids_cfg", "C:\\Users\\s.steuer\\Documents\\Pythonprojekte\\CreoMigrate\\cfg\\BOM-Settings.cfg", "ExcludedPartnumbersInBOM", + "--rm_summary_ids_cfg", "C:\\Users\\s.steuer\\Documents\\Pythonprojekte\\CreoMigrate\\cfg\\BOM-Settings.cfg", "ExcludedPartnumbersInSummary" ], - } + }, { "name": "Python: create TOS sring", - "type": "python", + "type": "debugpy", "request": "launch", "program": "${file}", "console": "integratedTerminal", @@ -37,10 +42,10 @@ "args": [ "--console" ], - } + }, { "name": "fetch blacklist from server", - "type": "python", + "type": "debugpy", "request": "launch", "program": "${file}", "console": "integratedTerminal", @@ -48,10 +53,10 @@ "args": [ "--blacklist" ], - } + }, { "name": "Python: Build Demo Gui", - "type": "python", + "type": "debugpy", "request": "launch", "program": "${file}", "console": "integratedTerminal", @@ -59,10 +64,10 @@ "args": [ "-d" ], - } + }, { "name": "Python: Build Real Gui", - "type": "python", + "type": "debugpy", "request": "launch", "program": "${file}", "console": "integratedTerminal",