From 689b1ebd94684c3b584d77356b4f0abf49baa1c4 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Fri, 16 Oct 2020 23:27:10 +0100 Subject: [PATCH] Debugging Config --- .vscode/launch.json | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..ed718ce --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,42 @@ +{ + // 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": "java", + "name": "Debug (Launch) - Current File", + "request": "launch", + "mainClass": "${file}" + }, + { + "type": "java", + "name": "Debug (Launch)-CardMain", + "request": "launch", + "mainClass": "CardMain", + "projectName": "Learning-Java_74709768" + }, + { + "type": "java", + "name": "Debug (Launch)-AnimalMain", + "request": "launch", + "mainClass": "src.AnimalMain", + "projectName": "Learning-Java_74709768" + }, + { + "type": "java", + "name": "Debug (Launch)-CounterMain", + "request": "launch", + "mainClass": "src.CounterMain", + "projectName": "Learning-Java_74709768" + }, + { + "type": "java", + "name": "Debug (Launch)-NewCalcEngine", + "request": "launch", + "mainClass": "src.NewCalcEngine", + "projectName": "Learning-Java_74709768" + } + ] +} \ No newline at end of file