From ccfe1b46326b21536e13075a381ed0b0d91088c3 Mon Sep 17 00:00:00 2001
From: Arkkkky <waterlife666@icloud.com>
Date: Thu, 4 Apr 2024 20:25:13 -0400
Subject: [PATCH 1/3] Update launch.json

---
 .vscode/launch.json | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/.vscode/launch.json b/.vscode/launch.json
index 01362e34..57bbdf1d 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -4,6 +4,13 @@
     // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
     "version": "0.2.0",
     "configurations": [
+
+      {
+        "name": "C#: <project-name> Debug",
+        "type": "dotnet",
+        "request": "launch",
+        "projectPath": "${workspaceFolder}/<relative-path-to-project-folder><project-name>.csproj"
+      },
         {
             "name": "Debug Jest Tests on Nix",
             "type": "node",

From 6b6816a2f23ee5cd2a7121db88f91967cec0b7d4 Mon Sep 17 00:00:00 2001
From: Arkkkky <waterlife666@icloud.com>
Date: Tue, 23 Apr 2024 05:04:29 -0400
Subject: [PATCH 2/3] Update launch.json

---
 .vscode/launch.json | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/.vscode/launch.json b/.vscode/launch.json
index 57bbdf1d..27b8946a 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -11,6 +11,14 @@
         "request": "launch",
         "projectPath": "${workspaceFolder}/<relative-path-to-project-folder><project-name>.csproj"
       },
+
+
+      {
+        "name": "C#: <swift> Debug",
+        "type": "dotnet",
+        "request": "launch",
+        "projectPath": "${workspaceFolder}/<relative-path-to-project-folder><project-name>.csproj"
+      },
         {
             "name": "Debug Jest Tests on Nix",
             "type": "node",

From 6c421f51865a3d6d46ef6c72951280d2508b713a Mon Sep 17 00:00:00 2001
From: jr <waterlife666@icloud.com>
Date: Tue, 23 Apr 2024 09:23:37 -0400
Subject: [PATCH 3/3] Create npm-grunt.yml

---
 .github/workflows/npm-grunt.yml | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)
 create mode 100644 .github/workflows/npm-grunt.yml

diff --git a/.github/workflows/npm-grunt.yml b/.github/workflows/npm-grunt.yml
new file mode 100644
index 00000000..7f9b13d5
--- /dev/null
+++ b/.github/workflows/npm-grunt.yml
@@ -0,0 +1,28 @@
+name: NodeJS with Grunt
+
+on:
+  push:
+    branches: [ "main" ]
+  pull_request:
+    branches: [ "main" ]
+
+jobs:
+  build:
+    runs-on: ubuntu-latest
+
+    strategy:
+      matrix:
+        node-version: [14.x, 16.x, 18.x]
+
+    steps:
+    - uses: actions/checkout@v3
+
+    - name: Use Node.js ${{ matrix.node-version }}
+      uses: actions/setup-node@v3
+      with:
+        node-version: ${{ matrix.node-version }}
+
+    - name: Build
+      run: |
+        npm install
+        grunt