-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathwix.json
More file actions
43 lines (43 loc) · 873 Bytes
/
wix.json
File metadata and controls
43 lines (43 loc) · 873 Bytes
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
{
"product": "Your Product",
"company": "Your Company",
"license": "LICENSE",
"upgrade-code": "",
"files": {
"guid": "",
"items": [
"bin/helloworld.exe"
]
},
"env": {
"guid": "",
"vars": [
{
"name": "PATH",
"value": "[INSTALLDIR]",
"permanent": "no",
"system": "no",
"action": "set",
"part": "last"
}
]
},
"shortcuts": {
"guid": "",
"items": [
{
"name": "Your Product MSI",
"description": "MSI pakage for your product",
"target": "[INSTALLDIR]\\helloworld.exe",
"wdir": "INSTALLDIR",
"arguments": "",
"icon": ""
}
]
},
"choco": {
"description": "generate MSI package for Your Product project",
"tags": "Your Product",
"license-url": "https://opensource.org/licenses/MIT"
}
}