forked from SchemaStore/schemastore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommands.json
58 lines (51 loc) · 1.47 KB
/
commands.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"$schema": "http://json-schema.org/draft-04/schema",
"description": "Schema for bundleconfig.json files",
"type": "object",
"definitions": {
"commands": {
"type": "object",
"description": "The friendly name of the command.",
"required": [ "fileName" ],
"properties": {
"fileName": {
"type": "string",
"description": "The name of the executable file name. Example: \"cmd.exe\"."
},
"workingDirectory": {
"type": "string",
"description": "Specify a relative or absolute directory path."
},
"arguments": {
"type": "string",
"description": "The arguments to pass to the executable file."
}
}
},
"vsbindings": {
"type": "array",
"description": "A Visual Studio event that a command can be bound to.",
"items": {
"type": "string"
}
}
},
"properties": {
"commands": {
"description": "A list of commands.",
"additionalProperties": {
"$ref": "#/definitions/commands"
}
},
"-vs-binding": {
"type": "object",
"description": "Specify any Visual Studio event bindings.",
"properties": {
"AfterBuild": { "$ref": "#/definitions/vsbindings" },
"BeforeBuild": { "$ref": "#/definitions/vsbindings" },
"Clean": { "$ref": "#/definitions/vsbindings" },
"ProjectOpen": { "$ref": "#/definitions/vsbindings" }
}
}
}
}