From fb580fd72eaa10c8632e3fce9db2b13838ba26de Mon Sep 17 00:00:00 2001
From: Daniel Lorych <daniel2.lorych@live.uwe.ac.uk>
Date: Sat, 23 Apr 2022 18:01:20 +0000
Subject: [PATCH] Deleted .DS_Store, Hello.txt, .vscode/launch.json,
 .vscode/tasks.json, .gitignore, README.md

---
 .DS_Store           | Bin 6148 -> 0 bytes
 .gitignore          |  58 --------------------------------------------
 .vscode/launch.json |  35 --------------------------
 .vscode/tasks.json  |  41 -------------------------------
 Hello.txt           |   1 -
 README.md           |   3 ---
 6 files changed, 138 deletions(-)
 delete mode 100644 .DS_Store
 delete mode 100644 .gitignore
 delete mode 100644 .vscode/launch.json
 delete mode 100644 .vscode/tasks.json
 delete mode 100644 Hello.txt
 delete mode 100644 README.md

diff --git a/.DS_Store b/.DS_Store
deleted file mode 100644
index 417597a6517599293c9d2f826d3ced7589b297e6..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001

literal 6148
zcmZQzU|@7AO)+F(5MW?n;9!8z4DAe90Z1N%F(jFwA|RR(Y(_qV9zzL31w)Bv4pfd1
z1=7pO;K7i}ki(F}fTTY^IVmSU3F@@<3=9ma|G@xkASXi*gDZn0gA0Q%gDZm`LoP##
zXAZIsMp-l+U~QwsXb6mkz-S1JhQMeDjD`RMBP0wsxFPf?IT`|^Aut*O@DKo%4+@~Z
z0s{ks1C(xn&>$&L`2lLagJ>3*CP+Vk0VD>}3Zg+;K{QA!10#q9HUq4cfsp~Cl@Z(x
z0qFyENkBAMI|C!wW)L5&oq-W-GXn!7L^}f`L^}f`w1>h7(ayjK(ayjKwjJiWQF=54
zMneD=0?ZJG0I2?VWnjS7|A(j=B}YSGGz5la2r#m^1iLtaD`o8d1J$*l`ZNJanh{hd
wL-c^8LDf3ADrSNVC`!PTGBPlLw1VWpRWTz21Gpw1Z3w_ZXp|le0s4mk08%C=I{*Lx

diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index 4e3d55a..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,58 +0,0 @@
-# Prerequisites
-*.d
-
-# Object files
-*.o
-*.ko
-*.obj
-*.elf
-
-# Linker output
-*.ilk
-*.map
-*.exp
-
-# Precompiled Headers
-*.gch
-*.pch
-
-# Libraries
-*.lib
-*.a
-*.la
-*.lo
-
-# Shared objects (inc. Windows DLLs)
-*.dll
-*.so
-*.so.*
-*.dylib
-
-# Executables
-*.exe
-*.out
-*.app
-*.i*86
-*.x86_64
-*.hex
-
-# Debug files
-*.dSYM/
-*.su
-*.idb
-*.pdb
-
-# Kernel Module Compile Results
-*.mod*
-*.cmd
-.tmp_versions/
-modules.order
-Module.symvers
-Mkfile.old
-dkms.conf
-
-.vscode/*
-!.vscode/settings.json
-!.vscode/tasks.json
-!.vscode/launch.json
-!.vscode/extensions.json
diff --git a/.vscode/launch.json b/.vscode/launch.json
deleted file mode 100644
index 727aa90..0000000
--- a/.vscode/launch.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
-    "version": "0.2.0",
-    "configurations": [
-        {
-            // Use IntelliSense to find out which attributes exist for C# debugging
-            // Use hover for the description of the existing attributes
-            // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
-            "name": ".NET Core Launch (web)",
-            "type": "coreclr",
-            "request": "launch",
-            "preLaunchTask": "build",
-            // If you have changed target frameworks, make sure to update the program path.
-            "program": "${workspaceFolder}/Helios/Helios/bin/Debug/netcoreapp3.1/Helios.dll",
-            "args": [],
-            "cwd": "${workspaceFolder}/Helios/Helios",
-            "stopAtEntry": false,
-            // Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser
-            "serverReadyAction": {
-                "action": "openExternally",
-                "pattern": "\\bNow listening on:\\s+(https?://\\S+)"
-            },
-            "env": {
-                "ASPNETCORE_ENVIRONMENT": "Development"
-            },
-            "sourceFileMap": {
-                "/Views": "${workspaceFolder}/Views"
-            }
-        },
-        {
-            "name": ".NET Core Attach",
-            "type": "coreclr",
-            "request": "attach"
-        }
-    ]
-}
\ No newline at end of file
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
deleted file mode 100644
index 901cbfa..0000000
--- a/.vscode/tasks.json
+++ /dev/null
@@ -1,41 +0,0 @@
-{
-    "version": "2.0.0",
-    "tasks": [
-        {
-            "label": "build",
-            "command": "dotnet",
-            "type": "process",
-            "args": [
-                "build",
-                "${workspaceFolder}/Helios/Helios/Helios.csproj",
-                "/property:GenerateFullPaths=true",
-                "/consoleloggerparameters:NoSummary"
-            ],
-            "problemMatcher": "$msCompile"
-        },
-        {
-            "label": "publish",
-            "command": "dotnet",
-            "type": "process",
-            "args": [
-                "publish",
-                "${workspaceFolder}/Helios/Helios/Helios.csproj",
-                "/property:GenerateFullPaths=true",
-                "/consoleloggerparameters:NoSummary"
-            ],
-            "problemMatcher": "$msCompile"
-        },
-        {
-            "label": "watch",
-            "command": "dotnet",
-            "type": "process",
-            "args": [
-                "watch",
-                "run",
-                "--project",
-                "${workspaceFolder}/Helios/Helios/Helios.csproj"
-            ],
-            "problemMatcher": "$msCompile"
-        }
-    ]
-}
\ No newline at end of file
diff --git a/Hello.txt b/Hello.txt
deleted file mode 100644
index a4ed7c8..0000000
--- a/Hello.txt
+++ /dev/null
@@ -1 +0,0 @@
-Hell there!
\ No newline at end of file
diff --git a/README.md b/README.md
deleted file mode 100644
index dfe391e..0000000
--- a/README.md
+++ /dev/null
@@ -1,3 +0,0 @@
-# Helios
-
-Helios is a solar panel solutions application for the calculation and selection of panel technologies.
\ No newline at end of file
-- 
GitLab