Mercurial > pub > ImplabNet
comparison .vscode/tasks.json @ 240:fa6cbf4d8841 v3
refactoring, moving to dotnercore, simplifying promises
author | cin |
---|---|
date | Tue, 23 Jan 2018 19:39:21 +0300 |
parents | |
children | 6b3e5c48131b |
comparison
equal
deleted
inserted
replaced
239:eedf4d834e67 | 240:fa6cbf4d8841 |
---|---|
1 { | |
2 // See https://go.microsoft.com/fwlink/?LinkId=733558 | |
3 // for the documentation about the tasks.json format | |
4 "version": "0.1.0", | |
5 "command": "msbuild", | |
6 "args": [ | |
7 // Ask msbuild to generate full paths for file names. | |
8 "/property:GenerateFullPaths=true" | |
9 ], | |
10 "taskSelector": "/t:", | |
11 "showOutput": "silent", | |
12 "tasks": [ | |
13 { | |
14 "taskName": "build", | |
15 "suppressTaskName": true, | |
16 // Show the output window only if unrecognized errors occur. | |
17 "showOutput": "always", | |
18 // Use the standard MS compiler pattern to detect errors, warnings and infos | |
19 "problemMatcher": "$msCompile", | |
20 | |
21 "args" : [ | |
22 "/t:restore;build", | |
23 "/p:Configuration=DebugMono", | |
24 "Pallada.PoiskAvia.mono.sln" | |
25 ] | |
26 }, | |
27 { | |
28 "taskName": "clean", | |
29 // Show the output window only if unrecognized errors occur. | |
30 "showOutput": "always", | |
31 // Use the standard MS compiler pattern to detect errors, warnings and infos | |
32 "problemMatcher": "$msCompile", | |
33 | |
34 "args" : [ | |
35 "/p:Configuration=DebugMono", | |
36 "Pallada.PoiskAvia.mono.sln" | |
37 ] | |
38 }, | |
39 { | |
40 "taskName": "runtests", | |
41 "isTestCommand": true, | |
42 "suppressTaskName": true, | |
43 // Show the output window only if unrecognized errors occur. | |
44 "showOutput": "always", | |
45 // Use the standard MS compiler pattern to detect errors, warnings and infos | |
46 "problemMatcher": "$msCompile", | |
47 | |
48 "args" : [ | |
49 "/t:runtests", | |
50 "/p:Configuration=DebugMono", | |
51 "Pallada.PoiskAvia.mono.sln" | |
52 ] | |
53 } | |
54 ] | |
55 } |