From bdd910d93dd9984d1570afc56e96478e6e260718 Mon Sep 17 00:00:00 2001 From: 3010356 <3010356@stud.hs-mannheim.de> Date: Thu, 13 Jun 2024 13:46:39 +0200 Subject: [PATCH] =?UTF-8?q?launch.json=20wieder=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 14 -------------- .vscode/launch.json | 22 ++++++++++++++++++++++ 2 files changed, 22 insertions(+), 14 deletions(-) delete mode 100644 .gitignore create mode 100644 .vscode/launch.json diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 393ae21..0000000 --- a/.gitignore +++ /dev/null @@ -1,14 +0,0 @@ -# Ignoriere alle .log-Dateien -*.log - -# Ignoriere das Verzeichnis build/ -build/ - -# Ignoriere die Datei .env -.env - -# Ignoriere alle .DS_Store-Dateien (auf macOS) -.DS_Store - -# Ignoriere die launch.json Datei -.vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..4dc25b3 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,22 @@ +{ + // 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": "Main", + "request": "launch", + "vmArgs": "--module-path C:/Sources/javafx-sdk-22.0.1/lib --add-modules javafx.controls,javafx.fxml", + "mainClass": "program.Main", + "projectName": "Pegasus_2f3bec48" + }, + { + "type": "java", + "name": "Current File", + "request": "launch", + "mainClass": "${file}" + } + ] +} \ No newline at end of file