From 0e48b6ea51e4b646dfa40781ce9ed670b3848065 Mon Sep 17 00:00:00 2001 From: Jakob384 <153316888+Jakob384@users.noreply.github.com> Date: Tue, 19 Mar 2024 18:36:23 +0000 Subject: [PATCH 1/2] Main.py Ghjhfgjunbdbg Ghfg goof g go bngb verb vvgb by --- .vscode/launch.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..2ba986f --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + // 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": "chrome", + "request": "launch", + "name": "Launch Chrome against localhost", + "url": "http://localhost:8080", + "webRoot": "${workspaceFolder}" + } + ] +} \ No newline at end of file From 1b43054b4886f310859eb9d0f795d93f782d660d Mon Sep 17 00:00:00 2001 From: Jakob384 <153316888+Jakob384@users.noreply.github.com> Date: Tue, 19 Mar 2024 18:36:31 +0000 Subject: [PATCH 2/2] Main.py Ghjhfgjunbdbg Ghfg goof g go bngb verb vvgb by --- .vscode/settings.json | 11 +++++++++++ .vscode/tasks.json | 27 +++++++++++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 .vscode/settings.json create mode 100644 .vscode/tasks.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..65d939f --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,11 @@ +{ + "python.testing.unittestArgs": [ + "-v", + "-s", + ".", + "-p", + "*test.py" + ], + "python.testing.pytestEnabled": false, + "python.testing.unittestEnabled": true +} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..2a1c9da --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,27 @@ + +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "type": "shell", + "command": "msbuild", + "args": [ + // Ask msbuild to generate full paths for file names. + "/property:GenerateFullPaths=true", + "/t:build", + // Do not generate summary otherwise it leads to duplicate errors in Problems panel + "/consoleloggerparameters:NoSummary" + ], + "group": "build", + "presentation": { + // Reveal the output only if unrecognized errors occur. + "reveal": "silent" + }, + // Use the standard MS compiler pattern to detect errors, warnings and infos + "problemMatcher": "$msCompile" + } + ] +} \ No newline at end of file