mirror of
https://github.com/tonytins/amtkstat.git
synced 2025-03-15 04:11:22 +00:00
61 lines
No EOL
1.6 KiB
JSON
61 lines
No EOL
1.6 KiB
JSON
{
|
|
"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"
|
|
}
|
|
]
|
|
} |