This commit is contained in:
2022-12-16 06:00:32 +00:00
parent 57392a8a27
commit f6859c04a6
2 changed files with 93 additions and 0 deletions

35
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,35 @@
{
"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
}
}
]
}