tasks.json
36 lines
| 1.2 KiB
| application/json
|
JsonLexer
/ .vscode / tasks.json
|
|
r240 | { | |
| // See https://go.microsoft.com/fwlink/?LinkId=733558 | |||
| // for the documentation about the tasks.json format | |||
| "version": "0.1.0", | |||
|
|
r267 | "command": "dotnet", | |
|
|
r240 | "args": [ | |
| ], | |||
| "showOutput": "silent", | |||
| "tasks": [ | |||
| { | |||
| "taskName": "build", | |||
| // Show the output window only if unrecognized errors occur. | |||
| "showOutput": "always", | |||
| // Use the standard MS compiler pattern to detect errors, warnings and infos | |||
| "problemMatcher": "$msCompile", | |||
| "args" : [ | |||
|
|
r267 | "/p:Configuration=Debug" | |
|
|
r240 | ] | |
| }, | |||
| { | |||
| "taskName": "clean", | |||
| // Show the output window only if unrecognized errors occur. | |||
| "showOutput": "always", | |||
| // Use the standard MS compiler pattern to detect errors, warnings and infos | |||
|
|
r267 | "problemMatcher": "$msCompile" | |
|
|
r240 | }, | |
| { | |||
|
|
r267 | "taskName": "test", | |
|
|
r240 | "isTestCommand": true, | |
| // Show the output window only if unrecognized errors occur. | |||
| "showOutput": "always", | |||
| // Use the standard MS compiler pattern to detect errors, warnings and infos | |||
|
|
r267 | "problemMatcher": "$msCompile" | |
|
|
r240 | } | |
| ] | |||
| } |
