WIX:Package元素的Platform属性是否真的被弃用?

前端之家收集整理的这篇文章主要介绍了WIX:Package元素的Platform属性是否真的被弃用?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果是这样,指定x64构建的适当方式是什么?

在我的.wxs文件中,我有这样的东西:

<Package Description      ="$(var.pkgDescription)"
         Comments         ='Produced: Sun 17 April 2011'
         Manufacturer     ="Mfr name here"
         InstallerVersion ='200'
         Platform         ='$(var.Platform)'
         Compressed       ='yes' />

…在candle.exe命令行中使用-dPlatform = x64.这似乎很有效

但是,在WIX3文档中,它表示不推荐使用Platform属性和Platforms属性.它没有描述什么替代它们,或开发人员应该使用什么代替这些.

当我从上述元素中删除Platform属性,并运行build时,我会收到一个ICE80错误

Product.wxs(285) : error LGHT0204 : ICE80: This package contains 64 bit component ‘C.Textfiles’ but the Template Summary Property does not contain Intel64 or x64.

如果我使用Platform属性,它会成功建立,但是由于文档的原因,我不知道这是否正确.

什么是构建x64 MSI的正确方法

Package / @ Platform不被弃用 – 请在SourceForge中打开一个错误,以便可以修复该文档.但没有必要:见 http://www.joyofsetup.com/2010/05/14/working-hard-or-hardly-working/.
原文链接:https://www.f2er.com/windows/364093.html

猜你在找的Windows相关文章