init commit

This commit is contained in:
Garret Patti
2026-07-04 20:43:38 -04:00
commit 3064e93011
12 changed files with 607 additions and 0 deletions

44
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,44 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "shell",
"args": [
"build",
"--configuration",
"Debug"
],
"problemMatcher": "$msCompile",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "run",
"command": "dotnet",
"type": "shell",
"args": [
"run",
"--no-build"
],
"problemMatcher": "$msCompile",
"group": {
"kind": "test",
"isDefault": true
},
"isBackground": false
},
{
"label": "clean",
"command": "dotnet",
"type": "shell",
"args": [
"clean"
],
"problemMatcher": "$msCompile"
}
]
}