Files
sockeye/.vscode/tasks.json
2022-12-16 06:00:32 +00:00

35 lines
886 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build debug",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/server/sockeye.csproj"
],
"problemMatcher": "$msCompile",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "build release",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/server/sockeye.csproj",
"-c",
"Release"
],
"problemMatcher": "$msCompile",
"group": {
"kind": "build",
"isDefault": true
}
}
]
}