MSIX
Create a MSIX package that can be shipped as a direct download or to the Microsoft Store for your Electron app, using Electron Forge.
Requirements
Installation
npm install --save-dev @electron-forge/maker-msixUsage
module.exports = {
makers: [
{
name: '@electron-forge/maker-msix',
config: {
manifestVariables: {
publisher: 'Electron Dev'
},
windowsSignOptions: {
certificateFile: 'C:\\devcert.pfx',
certificatePassword: '122345'
}
}
}
]
};Debugging
Last updated
Was this helpful?