-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathelectron.manifest.json
More file actions
46 lines (46 loc) · 1.08 KB
/
electron.manifest.json
File metadata and controls
46 lines (46 loc) · 1.08 KB
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
{
"executable": "ElectronNET-API-Demos",
"splashscreen": {
"imageFile": "/wwwroot/assets/img/about@2x.png"
},
"name": "ElectronNET-API-Demos",
"author": "Gregor Biswanger",
"singleInstance": false,
"build": {
"appId": "com.electronnet-api-demos.app",
"productName": "ElectronNET-API-Demos",
"copyright": "Copyright © 2023",
"buildVersion": "23.6.1",
"compression": "maximum",
"win": {
"icon": "bin/wwwroot/assets/app-icon/win/app.ico",
"publish": [
{
"provider": "github",
"owner": "ElectronNET",
"repo": "electron.net-api-demos",
"token": ">> Insert GH_TOKEN here! <<"
}
]
},
"directories": {
"output": "../../../bin/Desktop",
"buildResources": "Assets"
},
"extraResources": [
{
"from": "./bin",
"to": "bin",
"filter": [ "**/*" ]
}
],
"files": [
{
"from": "./ElectronHostHook/node_modules",
"to": "ElectronHostHook/node_modules",
"filter": [ "**/*" ]
},
"**/*"
]
}
}