Signing installer for windows app using electron builder

给你一囗甜甜゛ 提交于 2019-12-05 02:07:44

问题


I am using electron-builder for creating installer for my desktop app in windows by command

build -w

it cerates folder win-unpacked(for build) and win(for installer)

here is my package.json

 {
"name": "CoDesktopElectron",
"version": "1.0.0",
"description": "CoDesktopElectron",
"homepage": "https://app.onepgr.com/",
"author": "ankur",
"private": true,
scripts": {
"postinstall": "install-app-deps",
"start": "npm install && npm run compile && electron ./app",
"compile": "rimraf app/out && tsc",
"pack": "npm run compile && build --dir",
"dist": "npm run compile && build",
"release": "npm run compile && build"
},
"build": {
"appId": "org.develar.onshape",
"category": "public.app-category.graphics-design",
"dmg": {
  "contents": [
    {
      "x": 110,
      "y": 150
    },
    {
      "x": 240,
      "y": 150,
      "type": "link",
      "path": "/Applications"
    }
  ]
},
"win": {
  "publish": null
},
"linux": {
  "publish": null,
  "target": [
    "deb",
    "AppImage"
  ]
 }
 },
"devDependencies": {
"asar": "^0.7.2",
"electron": "1.4.3",
"electron-builder": "^7.14.2",
"electron-installer-windows": "^0.2.0",
"electron-prebuilt": "^0.31.0",
"fs-jetpack": "^0.7.0",
"gulp": "^3.9.0",
"gulp-copy": "0.0.2",
"gulp-uglify": "^1.3.0",
"gulp-usemin": "^0.3.12",
"q": "^1.4.1",
"rcedit": "^0.3.0",
"rimraf": "^2.5.4",
"typescript": "^2.0.3"
 }
}

i want to sign my windows installer(i have certificate in .p12 format) i know we have to do it by CSC_LINK and CSC_KEY_PASSWORD but not getting any example of how to do it.

please help me out of this!

Thanks in advance.

来源:https://stackoverflow.com/questions/40765246/signing-installer-for-windows-app-using-electron-builder

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!