使用 WiX-Toolset 需要能够选择安装服务,但默认情况下不会安装。
创建了一个对话框,该对话框在 Lincense 协议之后调用。
在这个dialog.wxs中有以下代码
<UI>
<?define OutlookSyncTitle="title" ?>
<?define OutlookSyncDescription="description" ?>
<Property Id="OUTLOOKSYNC_CHECKED" Secure="yes"/>
<Dialog Id="OutlookSyncDlg_HK" Width="370" Height="270" Title="$(var.OutlookSyncTitle)">
<Control Id="OutlookSync" Type="CheckBox" X="20" Y="45" Width="330" Height="18"
CheckBoxValue="1" Property="OUTLOOKSYNC_CHECKED" Text="$(var.OutlookSyncDescription)">
</Control>
<Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="!(loc.WixUIBack)" />
<Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.WixUINext)" />
<Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.WixUICancel)">
<Publish Event="SpawnDialog" Value="CancelDlg">1</Publish>
</Control>
</Dialog>
</UI>
在product.wxs中有以下功能
<Feature Id="OutlookSync" Title="TestServiceInstaller" Level="0">
<Condition Level="1"><![CDATA[OUTLOOKSYNC_CHECKED = "1"]]></Condition>
<ComponentGroupRef Id="ServiceComponent" />
</Feature>
该服务永远不会被安装。当我为 OUTLOOKSYNC_CHECKED = 1 设置默认值时,它将始终被安装。
我错过了什么?