WiX 安装程序:使用 xslt 和 heat.exe 如何在找到父/子匹配后更改父 ID 的值?
Posted
技术标签:
【中文标题】WiX 安装程序:使用 xslt 和 heat.exe 如何在找到父/子匹配后更改父 ID 的值?【英文标题】:WiX Installer: Using xslt with heat.exe how do I change the value of the parent Id after finding a parent/child match? 【发布时间】:2019-12-05 02:49:03 【问题描述】:我有以下来源:
<DirectoryRef Id="INSTALLDIR">
<Component Id="acuthin.exe" Guid="0DAD4D00-A40E-420D-B90A-B23B89B72881">
我想将 INSTALLDIR 更改为 TARGETDIR:
<DirectoryRef Id="TARGETDIR">
<Component Id="acuthin.exe" Guid="0DAD4D00-A40E-420D-B90A-B23B89B72881">
但仅当组件 Id="acuthin.exe" 时。我尝试了以下方法:
<xsl:template match="wix:DirectoryRef[@Id='INSTALLDIR']/wix:Component[@Id='acuthin.exe']">
<xsl:copy>
<xsl:attribute name="Id">TARGETDIR</xsl:attribute>
<xsl:apply-templates select="node()"/>
</xsl:copy>
</xsl:template>
但它改变了组件的 ID 而不是 DirectoryRef:
<DirectoryRef Id="INSTALLDIR">
<Component Id="TARGETDIR">
有没有办法告诉它改为修改 DirectoryRef Id?
这是我的 heat 命令行:
heat" dir "Files\Groupacuthin.exeAutoUpdate" -dr INSTALLDIR -var var.HARVESTDIR -gg -sw -nologo -scom -sreg -sfrag -srd -suid -cg "Groupacuthin.exeAutoUpdate" -t test.xslt -出“组件\Groupacuthin.exeAutoUpdate.wxs”
这是在做模板匹配之前的来源:
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Fragment>
<DirectoryRef Id="INSTALLDIR">
<Component Id="acuthin.exe" Guid="F48C7EB0-6192-4F92-8FCB-8DC8517572B5">
<File Id="acuthin.exe" KeyPath="yes" Source="$(var.HARVESTDIR)\acuthin.exe" />
</Component>
</DirectoryRef>
</Fragment>
<Fragment>
<ComponentGroup Id="Groupacuthin.exeAutoUpdate">
<ComponentRef Id="acuthin.exe" />
</ComponentGroup>
</Fragment>
</Wix>
谢谢!
加里
【问题讨论】:
【参考方案1】:您要修改的是 DirectoryRef 的 Id 属性,但您的模板实际上是在选择一个作为 DirectoryRef 子级的组件。
将您的模板更改为:
<xsl:template match="wix:DirectoryRef[@Id='INSTALLDIR' and wix:Component/@Id='acuthin.exe']">
<xsl:copy>
<xsl:attribute name="Id">TARGETDIR</xsl:attribute>
<xsl:apply-templates select="node()"/>
</xsl:copy>
</xsl:template>
在这里查看它的工作原理:https://xsltfiddle.liberty-development.net/pPJ8LVx
【讨论】:
【参考方案2】:请试试这个代码:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes="xs"
version="2.0">
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="DirectoryRef">
<DirectoryRef>
<xsl:apply-templates select="@* except @Id"/>
<xsl:if test="(@Id='INSTALLDIR') and /Wix/Fragment/ComponentGroup/ComponentRef[@Id='acuthin.exe']">
<xsl:attribute name="Id" select="'TARGETDIR'"/>
</xsl:if>
<xsl:apply-templates/>
</DirectoryRef>
</xsl:template>
【讨论】:
【参考方案3】:你的@match="wix:DirectoryRef[@Id='INSTALLDIR']/wix:Component[@Id='acuthin.exe']" 而不是使用 @match="wix:DirectoryRef[@Id='INSTALLDIR' 和 wix:Component/@Id='acuthin.exe']"
【讨论】:
以上是关于WiX 安装程序:使用 xslt 和 heat.exe 如何在找到父/子匹配后更改父 ID 的值?的主要内容,如果未能解决你的问题,请参考以下文章