From 85de1237f4394b4ca54a8f5376202d60e06e2993 Mon Sep 17 00:00:00 2001
From: Martin Berg Alstad <600878@stud.hvl.no>
Date: Mon, 15 May 2023 19:02:22 +0200
Subject: [PATCH] Initial commit
---
.gitignore | 5 +
.../.idea.pac-man-board-game/.idea/.gitignore | 13 +
.../.idea/encodings.xml | 4 +
pac-man-board-game.sln | 16 +
pac-man-board-game/.gitignore | 232 +
pac-man-board-game/ClientApp/.env | 1 +
pac-man-board-game/ClientApp/.env.development | 3 +
pac-man-board-game/ClientApp/.gitignore | 21 +
pac-man-board-game/ClientApp/README.md | 2228 ++
.../ClientApp/aspnetcore-https.js | 33 +
.../ClientApp/aspnetcore-react.js | 55 +
.../ClientApp/package-lock.json | 19442 ++++++++++++++++
pac-man-board-game/ClientApp/package.json | 80 +
.../ClientApp/public/favicon.ico | Bin 0 -> 5430 bytes
.../ClientApp/public/index.html | 41 +
.../ClientApp/public/manifest.json | 15 +
pac-man-board-game/ClientApp/src/App.test.tsx | 14 +
pac-man-board-game/ClientApp/src/App.tsx | 16 +
.../ClientApp/src/AppRoutes.tsx | 21 +
.../ClientApp/src/components/Counter.tsx | 22 +
.../ClientApp/src/components/FetchData.tsx | 45 +
.../ClientApp/src/components/Home.tsx | 34 +
.../ClientApp/src/components/Layout.tsx | 12 +
.../ClientApp/src/components/NavMenu.css | 19 +
.../ClientApp/src/components/NavMenu.tsx | 37 +
pac-man-board-game/ClientApp/src/custom.css | 18 +
pac-man-board-game/ClientApp/src/index.tsx | 29 +
.../ClientApp/src/reportWebVitals.js | 13 +
.../ClientApp/src/service-worker.js | 72 +
.../src/serviceWorkerRegistration.js | 137 +
.../ClientApp/src/setupProxy.js | 30 +
pac-man-board-game/ClientApp/tsconfig.json | 17 +
.../Controllers/WeatherForecastController.cs | 32 +
pac-man-board-game/Pages/Error.cshtml | 26 +
pac-man-board-game/Pages/Error.cshtml.cs | 25 +
pac-man-board-game/Pages/_ViewImports.cshtml | 3 +
pac-man-board-game/Program.cs | 27 +
.../Properties/launchSettings.json | 29 +
pac-man-board-game/WeatherForecast.cs | 12 +
.../appsettings.Development.json | 10 +
pac-man-board-game/appsettings.json | 10 +
pac-man-board-game/pac-man-board-game.csproj | 57 +
42 files changed, 22956 insertions(+)
create mode 100644 .gitignore
create mode 100644 .idea/.idea.pac-man-board-game/.idea/.gitignore
create mode 100644 .idea/.idea.pac-man-board-game/.idea/encodings.xml
create mode 100644 pac-man-board-game.sln
create mode 100644 pac-man-board-game/.gitignore
create mode 100644 pac-man-board-game/ClientApp/.env
create mode 100644 pac-man-board-game/ClientApp/.env.development
create mode 100644 pac-man-board-game/ClientApp/.gitignore
create mode 100644 pac-man-board-game/ClientApp/README.md
create mode 100644 pac-man-board-game/ClientApp/aspnetcore-https.js
create mode 100644 pac-man-board-game/ClientApp/aspnetcore-react.js
create mode 100644 pac-man-board-game/ClientApp/package-lock.json
create mode 100644 pac-man-board-game/ClientApp/package.json
create mode 100644 pac-man-board-game/ClientApp/public/favicon.ico
create mode 100644 pac-man-board-game/ClientApp/public/index.html
create mode 100644 pac-man-board-game/ClientApp/public/manifest.json
create mode 100644 pac-man-board-game/ClientApp/src/App.test.tsx
create mode 100644 pac-man-board-game/ClientApp/src/App.tsx
create mode 100644 pac-man-board-game/ClientApp/src/AppRoutes.tsx
create mode 100644 pac-man-board-game/ClientApp/src/components/Counter.tsx
create mode 100644 pac-man-board-game/ClientApp/src/components/FetchData.tsx
create mode 100644 pac-man-board-game/ClientApp/src/components/Home.tsx
create mode 100644 pac-man-board-game/ClientApp/src/components/Layout.tsx
create mode 100644 pac-man-board-game/ClientApp/src/components/NavMenu.css
create mode 100644 pac-man-board-game/ClientApp/src/components/NavMenu.tsx
create mode 100644 pac-man-board-game/ClientApp/src/custom.css
create mode 100644 pac-man-board-game/ClientApp/src/index.tsx
create mode 100644 pac-man-board-game/ClientApp/src/reportWebVitals.js
create mode 100644 pac-man-board-game/ClientApp/src/service-worker.js
create mode 100644 pac-man-board-game/ClientApp/src/serviceWorkerRegistration.js
create mode 100644 pac-man-board-game/ClientApp/src/setupProxy.js
create mode 100644 pac-man-board-game/ClientApp/tsconfig.json
create mode 100644 pac-man-board-game/Controllers/WeatherForecastController.cs
create mode 100644 pac-man-board-game/Pages/Error.cshtml
create mode 100644 pac-man-board-game/Pages/Error.cshtml.cs
create mode 100644 pac-man-board-game/Pages/_ViewImports.cshtml
create mode 100644 pac-man-board-game/Program.cs
create mode 100644 pac-man-board-game/Properties/launchSettings.json
create mode 100644 pac-man-board-game/WeatherForecast.cs
create mode 100644 pac-man-board-game/appsettings.Development.json
create mode 100644 pac-man-board-game/appsettings.json
create mode 100644 pac-man-board-game/pac-man-board-game.csproj
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..add57be
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,5 @@
+bin/
+obj/
+/packages/
+riderModule.iml
+/_ReSharper.Caches/
\ No newline at end of file
diff --git a/.idea/.idea.pac-man-board-game/.idea/.gitignore b/.idea/.idea.pac-man-board-game/.idea/.gitignore
new file mode 100644
index 0000000..2713ae3
--- /dev/null
+++ b/.idea/.idea.pac-man-board-game/.idea/.gitignore
@@ -0,0 +1,13 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Rider ignored files
+/.idea.pac-man-board-game.iml
+/modules.xml
+/projectSettingsUpdater.xml
+/contentModel.xml
+# Editor-based HTTP Client requests
+/httpRequests/
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
diff --git a/.idea/.idea.pac-man-board-game/.idea/encodings.xml b/.idea/.idea.pac-man-board-game/.idea/encodings.xml
new file mode 100644
index 0000000..df87cf9
--- /dev/null
+++ b/.idea/.idea.pac-man-board-game/.idea/encodings.xml
@@ -0,0 +1,4 @@
+
+
+You can find the most recent version of this guide [here](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md).
+
+## Table of Contents
+
+- [Updating to New Releases](#updating-to-new-releases)
+- [Sending Feedback](#sending-feedback)
+- [Folder Structure](#folder-structure)
+- [Available Scripts](#available-scripts)
+ - [npm start](#npm-start)
+ - [npm test](#npm-test)
+ - [npm run build](#npm-run-build)
+ - [npm run eject](#npm-run-eject)
+- [Supported Language Features and Polyfills](#supported-language-features-and-polyfills)
+- [Syntax Highlighting in the Editor](#syntax-highlighting-in-the-editor)
+- [Displaying Lint Output in the Editor](#displaying-lint-output-in-the-editor)
+- [Debugging in the Editor](#debugging-in-the-editor)
+- [Formatting Code Automatically](#formatting-code-automatically)
+- [Changing the Page `