tasks.json
54 lines
| 1.8 KiB
| application/json
|
JsonLexer
/ .vscode / tasks.json
cin
|
r240 | { | |
// See https://go.microsoft.com/fwlink/?LinkId=733558 | |||
// for the documentation about the tasks.json format | |||
"version": "0.1.0", | |||
"command": "msbuild", | |||
"args": [ | |||
// Ask msbuild to generate full paths for file names. | |||
"/property:GenerateFullPaths=true" | |||
], | |||
"taskSelector": "/t:", | |||
"showOutput": "silent", | |||
"tasks": [ | |||
{ | |||
"taskName": "build", | |||
"suppressTaskName": true, | |||
// 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" : [ | |||
"/t:restore;build", | |||
"/p:Configuration=DebugMono", | |||
"Pallada.PoiskAvia.mono.sln" | |||
] | |||
}, | |||
{ | |||
"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 | |||
"problemMatcher": "$msCompile", | |||
"args" : [ | |||
"/p:Configuration=DebugMono", | |||
"Pallada.PoiskAvia.mono.sln" | |||
] | |||
}, | |||
{ | |||
"taskName": "runtests", | |||
"isTestCommand": true, | |||
"suppressTaskName": true, | |||
// 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" : [ | |||
"/t:runtests", | |||
"/p:Configuration=DebugMono", | |||
"Pallada.PoiskAvia.mono.sln" | |||
] | |||
} | |||
] | |||
} |