作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图使用Electron Builder将我的应用程序打包为Appx文件,以将其发布在Windows应用商店中。但是我继续收到这个奇怪的错误,该错误表明我的 list 文件不可用:
MakeAppx : error: Package creation failed.
MakeAppx : error: 0x80080204 - The specified package format is not valid: The package manifest is not valid.
实际上,我有一个可以正常工作的AppxManifest.xml,但是不能在 Electron 生成器中使用它。我的标识变量也应该正确(我在其他工具中使用了它并成功发布了)。所以我有点卡在这里。
{
"name": "***",
"version": "1.0.1",
"description": "Made with love <3",
"main": "index.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"author": "***",
"license": "All Rights Reserved",
"dependencies": {
"knex": "^0.21.6",
"sqlite3": "^5.0.0"
},
"devDependencies": {
"electron": "^10.1.2",
"electron-builder": "^22.9.1"
},
"build": {
"productName": "***",
"appId": "***.com",
"directories": {
"buildResources": "assets"
},
"win": {
"icon": "assets/icon.ico",
"target": [
"nsis",
"appx"
]
},
"nsis": {
"oneClick": false,
"perMachine": true,
"allowToChangeInstallationDirectory": true
},
"appx": {
"identityName": "NumberPublishername.Appname",
"publisher": "CN=LongNumber",
"publisherDisplayName": "Publishername",
"applicationId": "Appname"
}
}
}
最佳答案
问题是这行Made with love <3
,那里不允许<
字符,因为XML无效。可悲的是,控制台没有说出什么问题。
关于electron - Electron Builder Appx : The package manifest is not valid,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65043436/
我是一名优秀的程序员,十分优秀!