Wix:将对话控制值传递给可配置的合并模块

时间:2011-09-21 15:24:08

标签: wix wix3.5 merge-module

使用Wix工具集完成任务时遇到问题。特别是,我有一个场景,我有一个配置MSM(可配置模块)的MSI。 MSI具有自定义UI对话框,用户输入将用于配置MSM。

当我尝试使用地址属性的硬编码值配置MSM时,如下所示,它工作正常,并且MSM配置正确。 (我相信这种配置会发生,而构建时间则与运行时相反 - 问题可能存在于那里。)。

当我在安装时使用自定义对话框设置地址属性的值(即运行时)时,会出现问题。可配置模块仍然使用硬编码值,而不是用户输入。问题是因为合并模块配置仅在构建时完成。有没有办法从主MSI的UI中将值传递给合并模块?

这是一个过度简化的版本:

<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">

    <Product Id="cf1d176d-2d57-435e-8e7f-abba14de821c" Language="1033">

        <Media Id="1" Cabinet="SemanticEvolution.cab" EmbedCab="yes" />

        <Property Id="Address" Value="http://127.0.0.1" />

        <Directory Id="TARGETDIR" Name="SourceDir">

            <Directory Id="ProgramFilesFolder">

                <Directory Id="INSTALLLOCATION" Name="Semantic Evolution">

                    <Merge Id="MergeModule" Language="1033" SourceFile="Module.msm" DiskId="1">

                        <ConfigurationData Name="EndpointAddressConfiguration" Value="[Address]" />

                    </Merge>

                </Directory>

           </Directory>

        </Directory>

        <Feature Id="SemanticEvolutionFeatures" Title="Semnatic Evolution" Level="1">

            <Feature Id="TestFeature" Title="TestFeature" Level="1">
                <MergeRef Id="MergeModule" />
            </Feature>

        </Feature>

        <UI Id="CustomWixUI">

            <UIRef Id="WixUI_FeatureTree" />

            <DialogRef Id="ConfigurationDlg" />

            <Publish Dialog="LicenseAgreementDlg" Control="Next" Event="NewDialog" Value="ConfigurationDlg">LicenseAccepted = "1"</Publish>
            <Publish Dialog="CustomizeDlg" Control="Back" Event="NewDialog" Value="ConfigurationDlg">NOT Installed</Publish>

        </UI>

    </Product>

</Wix>

以下是合并模块的snipet:

<Configuration Name="EndpointAddressConfiguration" Format="Text" />

<Substitution Table="CustomAction" Row="SetEndpointAddress" Column="Target" Value="[=EndpointAddressConfiguration]" />

<CustomAction Id="SetEndpointAddress" Property="EndpointAddress" Value="[EndpointAddress]" />

<InstallExecuteSequence>
  <Custom Action="SetEndpointAddress" Before="LaunchConditions">1</Custom>
</InstallExecuteSequence>

最终在合并模块中,配置属性的用法如下:

<util:XmlFile Id="EndpointAddress" Action="setValue" ElementPath="/configuration/system.serviceModel/client/endpoint/@address" File="[#Se.Gui.exe.config]" Value="[EndpointAddress]/ApiDataService"/>

2 个答案:

答案 0 :(得分:2)

要从合并模块访问属性,必须将合并模块ID附加到属性名称。类似的东西:MyProp.msm_guid

http://msdn.microsoft.com/en-us/library/aa370051(VS.85).aspx

答案 1 :(得分:1)

请记住,公共属性必须是大写的。

你可以在这里找到答案: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Passing-properties-to-merge-modules-td5417112.html