forked from Automattic/simplenote-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelectron-builder-appx.json
More file actions
35 lines (35 loc) · 888 Bytes
/
electron-builder-appx.json
File metadata and controls
35 lines (35 loc) · 888 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
{
"productName": "Simplenote",
"appId": "com.automattic.simplenote",
"directories": {
"output": "release",
"buildResources": "resources"
},
"files": ["desktop", "dist", "shared"],
"win": {
"icon": "resources/images/simplenote.ico",
"target": [
{
"target": "appx",
"arch": ["ia32", "x64"]
}
]
},
"appx": {
"applicationId": "Simplenote",
"identityName": "22490Automattic.Simplenote",
"publisher": "CN=E2E5A157-746D-4B04-9116-ABE5CB928306",
"publisherDisplayName": "Automattic, Inc.",
"backgroundColor": "transparent",
"showNameOnTiles": true,
"artifactName": "Simplenote-win-store-${version}-${arch}.${ext}"
},
"protocols": [
{
"name": "simplenote",
"schemes": ["simplenote"]
}
],
"afterSign": "./after_sign_hook.js",
"afterAllArtifactBuild": "./after_sign_hook.js"
}