comparison .vscode/tasks.json @ 267:6b3e5c48131b v3

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