mirror of
https://github.com/MAKS-IT-COM/maksit-certs-ui.git
synced 2025-12-31 04:00:03 +01:00
36 lines
884 B
JSON
36 lines
884 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "build",
|
|
"command": "dotnet",
|
|
"type": "process",
|
|
"args": [
|
|
"build",
|
|
"${workspaceFolder}/LetsEncrypt.csproj"
|
|
],
|
|
"problemMatcher": "$tsc"
|
|
},
|
|
{
|
|
"label": "publish",
|
|
"command": "dotnet",
|
|
"type": "process",
|
|
"args": [
|
|
"publish",
|
|
"${workspaceFolder}/LetsEncrypt.csproj"
|
|
],
|
|
"problemMatcher": "$tsc"
|
|
},
|
|
{
|
|
"label": "watch",
|
|
"command": "dotnet",
|
|
"type": "process",
|
|
"args": [
|
|
"watch",
|
|
"run",
|
|
"${workspaceFolder}/LetsEncrypt.csproj"
|
|
],
|
|
"problemMatcher": "$tsc"
|
|
}
|
|
]
|
|
} |