HuanMengAdmin/admin-server/.vscode/tasks.json
2024-07-18 02:27:50 +08:00

53 lines
1.7 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build-HZY.Gateway.Yarp",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/HZY.Gateway.Yarp/HZY.Gateway.Yarp.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "build-HZY.Api.Template",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/HZY.Api.Template/HZY.Api.Template.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "build-HZY.Api.Identity",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/HZY.Api.Identity/HZY.Api.Identity.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "build-HZY.Api.Admin",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/HZY.Api.Admin/HZY.Api.Admin.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
}
]
}