Mercurial > repos > RelicTools > TextureTool
comparison .vscode/tasks.json @ 0:a54c09901f4e default tip
Initial commit to Mercurial at v1.9.3 - now GPLed!
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sat, 06 Oct 2018 19:19:03 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:a54c09901f4e |
---|---|
1 { | |
2 // See https://go.microsoft.com/fwlink/?LinkId=733558 | |
3 // for the documentation about the tasks.json format | |
4 "version": "2.0.0", | |
5 "tasks": [ | |
6 { | |
7 "label": "Build TextureTool (Debug)", | |
8 "type": "shell", | |
9 "command": "xbuild", | |
10 "args": [ | |
11 // Ask msbuild to generate full paths for file names. | |
12 "/property:GenerateFullPaths=true", | |
13 "/t:build" | |
14 ], | |
15 "group": "build", | |
16 "presentation": { | |
17 // Reveal the output only if unrecognized errors occur. | |
18 "reveal": "silent" | |
19 }, | |
20 // Use the standard MS compiler pattern to detect errors, warnings and infos | |
21 "problemMatcher": "$msCompile" | |
22 }, | |
23 | |
24 { | |
25 "label": "Build TextureTool (Release)", | |
26 "type": "shell", | |
27 "command": "xbuild", | |
28 "args": [ | |
29 "/p:Configuration=Release", | |
30 // Ask msbuild to generate full paths for file names. | |
31 "/property:GenerateFullPaths=true", | |
32 "/t:build" | |
33 ], | |
34 "group": "build", | |
35 "presentation": { | |
36 // Reveal the output only if unrecognized errors occur. | |
37 "reveal": "silent" | |
38 }, | |
39 // Use the standard MS compiler pattern to detect errors, warnings and infos | |
40 "problemMatcher": "$msCompile" | |
41 } | |
42 ] | |
43 } |