Ooui-tws-port/.vscode/tasks.json

24 lines
552 B
JSON

{
"version": "0.1.0",
"command": "dotnet",
"isShellCommand": true,
"args": [],
"tasks": [
{
"taskName": "build",
"args": [
"${workspaceRoot}/Ooui.sln"
],
"isBuildCommand": true,
"problemMatcher": "$msCompile"
},
{
"taskName": "test",
"args": [
"${workspaceRoot}/Tests/Tests.csproj"
],
"isTestCommand": true,
"problemMatcher": "$msCompile"
}
]
}