Files
rockfish/.vscode/tasks.json
2021-06-22 00:23:48 +00:00

18 lines
391 B
JSON

{
"version": "2.0.0",
"command": "dotnet",
"args": [],
"tasks": [
{
"label": "build",
"type": "shell",
"command": "dotnet",
"args": [
"build",
"${workspaceRoot}/rockfishCore.csproj"
],
"problemMatcher": "$msCompile",
"group": "build"
}
]
}