-
Notifications
You must be signed in to change notification settings - Fork 6
Development with VSCode
Niclas Kristek edited this page Dec 11, 2018
·
1 revision
A sample tasks.json
file for Visual Studio Code:
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"group": {
"kind": "build",
"isDefault": true
},
"type": "process",
"command": "dotnet",
"args": [
"build",
"${workspaceFolder}"
],
"problemMatcher": "$msCompile"
},
{
"label": "test",
"group": {
"kind": "test",
"isDefault": true
},
"type": "process",
"command": "dotnet",
"args": [
"test",
"${workspaceFolder}"
],
"problemMatcher": "$msCompile"
}
]
}