mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-14 05:34:48 +00:00
35 lines
744 B
JSON
35 lines
744 B
JSON
{
|
|
"executable": "{{executable}}",
|
|
"splashscreen": {
|
|
"imageFile": ""
|
|
},
|
|
"name": "{{executable}}",
|
|
"author": "",
|
|
"singleInstance": false,
|
|
"environment": "Production",
|
|
"build": {
|
|
"appId": "com.{{executable}}.app",
|
|
"productName": "{{executable}}",
|
|
"copyright": "Copyright © 2020",
|
|
"buildVersion": "1.0.0",
|
|
"compression": "maximum",
|
|
"directories": {
|
|
"output": "../../../bin/Desktop"
|
|
},
|
|
"extraResources": [
|
|
{
|
|
"from": "./bin",
|
|
"to": "bin",
|
|
"filter": [ "**/*" ]
|
|
}
|
|
],
|
|
"files": [
|
|
{
|
|
"from": "./ElectronHostHook/node_modules",
|
|
"to": "ElectronHostHook/node_modules",
|
|
"filter": [ "**/*" ]
|
|
},
|
|
"**/*"
|
|
]
|
|
}
|
|
} |