annotate .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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
1 {
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
2 // See https://go.microsoft.com/fwlink/?LinkId=733558
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
3 // for the documentation about the tasks.json format
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
4 "version": "2.0.0",
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
5 "tasks": [
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
6 {
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
7 "label": "Build TextureTool (Debug)",
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
8 "type": "shell",
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
9 "command": "xbuild",
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
10 "args": [
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
11 // Ask msbuild to generate full paths for file names.
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
12 "/property:GenerateFullPaths=true",
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
13 "/t:build"
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
14 ],
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
15 "group": "build",
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
16 "presentation": {
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
17 // Reveal the output only if unrecognized errors occur.
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
18 "reveal": "silent"
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
19 },
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
20 // Use the standard MS compiler pattern to detect errors, warnings and infos
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
21 "problemMatcher": "$msCompile"
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
22 },
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
23
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
24 {
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
25 "label": "Build TextureTool (Release)",
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
26 "type": "shell",
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
27 "command": "xbuild",
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
28 "args": [
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
29 "/p:Configuration=Release",
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
30 // Ask msbuild to generate full paths for file names.
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
31 "/property:GenerateFullPaths=true",
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
32 "/t:build"
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
33 ],
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
34 "group": "build",
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
35 "presentation": {
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
36 // Reveal the output only if unrecognized errors occur.
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
37 "reveal": "silent"
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
38 },
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
39 // Use the standard MS compiler pattern to detect errors, warnings and infos
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
40 "problemMatcher": "$msCompile"
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
41 }
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
42 ]
a54c09901f4e Initial commit to Mercurial at v1.9.3 - now GPLed!
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
43 }