WiX 3.5从热安装服务,需要自定义操作吗?

时间:2011-08-11 04:00:41

标签: xslt wix windows-installer custom-action wix3.5

我有一个带有主.wxs文件和空.wxs文件的VS2010 WiX项目。在项目的prebuild事件中覆盖空的.wxs,使用heat.exe从控制台exe收集所有内容。 exe有InstallUtil挂钩,在VS安装项目中,exe作为服务安装。

我尝试在WiX中使用<ServiceInstall>位,但是当我指定可执行文件和其他元素来安装服务时,轻抱怨主.wxs中的.exe与.exe之间的冲突在热量产生的.wxs。

我认为自定义操作不是进行服务安装的最佳方式,因此我尝试使用XSL转换来获取我不想要的文件(它是100个中的单个文件)。

我的XSL一定有问题,因为它不匹配/过滤。这是:

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:msxsl="urn:schemas-microsoft-com:xslt"
exclude-result-prefixes="msxsl"
    xmlns:Wix="http://schemas.microsoft.com/wix/2006/wi">

  <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes" />
  <xsl:template match="@* | node()">
    <xsl:copy>
      <xsl:apply-templates select="@* | node()" />
    </xsl:copy>
  </xsl:template>

<xsl:template match="
        Component[File/@Source='$(var.bindir)\servicehost.exe']"/
</xsl:stylesheet>

我需要撕掉的部分.wxs看起来像这样:

    ....
     <Component Id="cmpD64BE1790BFAF0F05DA37558F5D72572" Guid="{6C70DDC8-349B-4B66-A415-DE08E302C2A8}">
                    <File Id="fil24DFDFCA765C9A8BBB8854CE66AED0E8" KeyPath="yes" Source="$(var.bindir)\servicehost.exe" />
                </Component>
    ....
<ComponentRef Id="cmpD64BE1790BFAF0F05DA37558F5D72572" />
    ....

使这项工作的最佳方法是什么?

感谢。

2 个答案:

答案 0 :(得分:8)

Wix XML元素位于命名空间中,因此您需要在match值中指定命名空间。

我通过使用XSL将ServiceInstallServiceControl元素添加到heat生成的片段中解决了同样的问题:

<!-- Add the service install/control entries to mybinary.exe -->
<xsl:template match="wix:Component[contains(wix:File/@Source,'mybinary.exe')]">
    <xsl:copy>
        <xsl:apply-templates select="node() | @*" />
        <wix:ServiceInstall Id="MyServiceInstall" DisplayName="[SERVICE_NAME]" Description="[SERVICE_DESC]" Name="MyService" Arguments="" ErrorControl="normal" Start="auto" Type="ownProcess" Vital="yes" Account="LocalSystem" />
        <wix:ServiceControl Id="MyServiceControl" Name="MyService" Start="install" Stop="uninstall" Remove="uninstall" />
    </xsl:copy>
</xsl:template>

答案 1 :(得分:3)

为要通过Heat收获的文件创建一个临时目录。保持服务.exe分开,以便您可以手动创作ServiceInstall。