我有这个错误。因为我把下面的代码放在Bundle.wxs中。
<BootstrapperApplicationRef Id="WixExtendedBootstrapperApplication.Hyperlink2License">
<bal:WixExtendedBootstrapperApplication
ThemeFile="Resources\COTheme.xml"
LicenseUrl="http://xxxxxx
/>
</BootstrapperApplicationRef>
可以请任何人帮助我吗?
答案 0 :(得分:8)
您必须通过以下
将命名空间引用添加到bal<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
xmlns:bal="http://schemas.microsoft.com/wix/BalExtension">
我想你必须在编译和构建时提供-ext WixUtilExtension。
candle.exe example.wxs -ext WixBalExtension
light.exe example.wixobj -ext WixBalExtension