tasks.json
36 lines
| 871 B
| application/json
|
JsonLexer
/ .vscode / tasks.json
cin
|
r240 | { | |
// See https://go.microsoft.com/fwlink/?LinkId=733558 | |||
// for the documentation about the tasks.json format | |||
cin
|
r299 | "version": "2.0.0", | |
cin
|
r267 | "command": "dotnet", | |
cin
|
r240 | "args": [ | |
], | |||
"tasks": [ | |||
{ | |||
cin
|
r299 | "label": "build", | |
"command": "dotnet", | |||
"args": [ | |||
"build", | |||
"/p:Configuration=Debug" | |||
], | |||
cin
|
r240 | "problemMatcher": "$msCompile", | |
cin
|
r299 | "group": "build" | |
cin
|
r240 | }, | |
{ | |||
cin
|
r299 | "label": "clean", | |
"command": "dotnet", | |||
"args": [ | |||
"clean" | |||
], | |||
cin
|
r267 | "problemMatcher": "$msCompile" | |
cin
|
r240 | }, | |
{ | |||
cin
|
r299 | "label": "test", | |
"command": "dotnet", | |||
"args": [ | |||
"test" | |||
], | |||
"problemMatcher": "$msCompile", | |||
"group": "test" | |||
cin
|
r240 | } | |
] | |||
} |