240
|
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 } |