Initial commit

This commit is contained in:
Tony Bark 2024-09-09 03:12:35 -04:00
commit 210499ef8a
41 changed files with 5060 additions and 0 deletions

11
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch and Debug Standalone Blazor WebAssembly App",
"type": "blazorwasm",
"request": "launch",
"cwd": "${workspaceFolder}/src"
}
]
}

8
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,8 @@
{
"files.exclude": {
"**/*.rpyc": true,
"**/*.rpa": true,
"**/*.rpymc": true,
"**/cache/": true
}
}

61
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,61 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "dotnet build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/src/AmtrakStatus.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary;ForceNoAlign"
],
"problemMatcher": "$msCompile"
},
{
"label": "dotnet publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/src/AmtrakStatus.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary;ForceNoAlign"
],
"problemMatcher": "$msCompile"
},
{
"label": "dotnet watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"--project",
"${workspaceFolder}/src/AmtrakStatus.csproj"
],
"problemMatcher": "$msCompile"
},
{
"type": "cargo",
"command": "tauri",
"isBackground": true,
"args": [
"dev"
],
"group": "build",
"label": "tauri dev"
},
{
"type": "cargo",
"command": "tauri",
"isBackground": true,
"args": [
"build"
],
"group": "build",
"label": "tauri build"
}
]
}