【发布时间】:2021-11-14 11:54:01
【问题描述】:
我想将 Wix 中的 ALLUSERS 属性从 2 更改为 1。在我的 wxs 文件中:
<Property Id="ALLUSERS" Secure="yes" Value="2" />
在 Electron-wix-msi 中,我的文件设置了 UI 属性:
ui: {
chooseDirectory: true,
template: '<Property Id="ALLUSERS" Secure="yes" Value="1" />'
},
我得到一个错误,因为它是一个重复的属性。有没有办法用 electron-wix-msi 改变值?
【问题讨论】: