2024-02-09 00:29:56 +00:00
|
|
|
{
|
|
|
|
"version": "2.0.0",
|
|
|
|
"tasks": [
|
|
|
|
{
|
|
|
|
"label": "build",
|
|
|
|
"command": "dotnet",
|
|
|
|
"type": "process",
|
|
|
|
"args": [
|
|
|
|
"build",
|
2024-06-03 19:44:25 +00:00
|
|
|
"${workspaceFolder}/Api.csproj",
|
2024-02-09 00:29:56 +00:00
|
|
|
"/property:GenerateFullPaths=true",
|
|
|
|
"/consoleloggerparameters:NoSummary;ForceNoAlign"
|
|
|
|
],
|
|
|
|
"problemMatcher": "$msCompile"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "publish",
|
|
|
|
"command": "dotnet",
|
|
|
|
"type": "process",
|
|
|
|
"args": [
|
|
|
|
"publish",
|
2024-06-03 19:44:25 +00:00
|
|
|
"${workspaceFolder}/Api.csproj",
|
2024-02-09 00:29:56 +00:00
|
|
|
"/property:GenerateFullPaths=true",
|
|
|
|
"/consoleloggerparameters:NoSummary;ForceNoAlign"
|
|
|
|
],
|
|
|
|
"problemMatcher": "$msCompile"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "watch",
|
|
|
|
"command": "dotnet",
|
|
|
|
"type": "process",
|
|
|
|
"args": [
|
|
|
|
"watch",
|
|
|
|
"run",
|
|
|
|
"--project",
|
2024-06-03 19:44:25 +00:00
|
|
|
"${workspaceFolder}/Api.csproj"
|
2024-02-09 00:29:56 +00:00
|
|
|
],
|
|
|
|
"problemMatcher": "$msCompile"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|