我创建了一个WiX Bootstrapper项目。安装运行时,它会提供许可协议(protocol)。
我想创建一个没有此步骤的 bootstrap ,因为我不希望它显示任何许可协议(protocol)。有可能做到吗?如果是,怎么办?
最佳答案
假设您正在使用WiX Standard Bootstrapper应用程序,则当前的BootstrapperApplicationRef可能如下所示:
<BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.RtfLicense" />
WixStandardBootstrapperApplication具有三种变体,如docs中所述。 HyperlinkLicense是最简单的。它在欢迎页面而不是许可证页面上具有许可证链接。它允许您为许可证指定一个空URL,在这种情况下,它将不显示链接。例如,
<BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.HyperlinkLicense">
<bal:WixStandardBootstrapperApplication
LicenseUrl=""
xmlns:bal="http://schemas.microsoft.com/wix/BalExtension" />
</BootstrapperApplicationRef>
关于wix - 如何在没有许可协议(protocol)步骤的情况下创建 bootstrap ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16978501/