-
Notifications
You must be signed in to change notification settings - Fork 0
/
wix.json
46 lines (46 loc) · 1.29 KB
/
wix.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
{
"product": "gomsi",
"company": "patrikii",
"license": "LICENSE",
"upgrade-code": "8615055C-D8E0-404C-93BE-441C503BA6F0",
"files": {
"guid": "378896D8-6749-4821-870A-44CBBB791D0C",
"items": [
"dist/build/gomsi.exe"
]
},
"directories": [
"wix-templates"
],
"env": {
"guid": "0CB88C7F-85A7-4986-B6CE-1CAD5C17EA0E",
"vars": [
{
"name": "PATH",
"value": "[INSTALLDIR]",
"permanent": "no",
"system": "no",
"action": "set",
"part": "last"
}
]
},
"shortcuts": {
"guid": "6DAFD205-3D2D-43D7-BF78-33BFE8746D2A",
"items": [
{
"name": "gomsi",
"description": "Easy msi pakage for Go",
"target": "[INSTALLDIR]\\gomsi.exe",
"wdir": "INSTALLDIR",
"arguments": ""
}
]
},
"choco": {
"description": "Easy way to generate msi package for a Go project",
"project-url": "https://github.com/patrick-kings/golang-ci-cd",
"tags": "generate go msi nuget",
"license-url": "https://github.com//patrick-kings/golang-ci-cd/main/LICENSE"
}
}