Can we make deb installer ?
Can we make deb installer ? What changes in json file and which?
Yes, look up the json structure in the electron-builder documentation. I can post an example later.
https://www.electron.build/configuration/linux.html
{
"build": {
"linux": {
... other linux generic properties
"target": [ "deb", "rpm", "snap", "etc..."],
},
"deb": {
... deb specific properties
}
}
}
https://www.electron.build/configuration/linux.html
{ "build": { "linux": { ... other linux generic properties "target": [ "deb", "rpm", "snap", "etc..."], }, "deb": { ... deb specific properties } } }
- What are deb specific properties. Please Describe.
- From which version of Electron.Net version, Deb installer making feature is available ?
@mazm786 look it up. It's all documented in the link. I included the basic structure because the documentation in my mind is unclear on the basic structure of where the main linux and deb nodes live.
deb support is built into electron. Electron.NET inherits the functionality so we've had it from first release. electron-builder is the electron repo I linked to that performs the functionality of building an electron app/installer
by the way, that json structure for Electron.Net resides in the electron.manifest.json. We use that file as it acts as a template.