我正在尝试使用 WiX 3.7 来生成 MSI 安装程序。我正在使用 heat.exe 从我的构建目录的内容中创建一个 wxs 片段,然后我在一个单独的静态 wxs 文件中引用它。我还需要对这个文件应用 XSL 转换,以便将“ServiceInstall”节点添加到组件之一。即使对于像我这样的 XSL 菜鸟,添加节点也相当简单。但是,为了使生成的 XML 格式正确,我需要向 Wix 节点和 Fragment 节点添加对 WixUtil 扩展的引用。所以,我的 XML 是这样的:
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Fragment>
<DirectoryRef Id="Main">
<Component Id="xyz" Guid="{123}">
<File Id="xyz" KeyPath="yes" Source="$(var.mainDir)\some.exe" />
<util:ServiceInstall Id="xyz" Type="ownProcess" Vital="yes" Name="someService" DisplayName="someService" Description="An example service." etc="etc" />
</Component>
</DirectoryRef>
</Fragment>
</Wix>
我需要它是这样的:
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
<Fragment xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
<DirectoryRef Id="Main">
<Component Id="xyz" Guid="{123}">
<File Id="xyz" KeyPath="yes" Source="$(var.mainDir)\some.exe" />
<util:ServiceInstall Id="xyz" Type="ownProcess" Vital="yes" Name="someService" DisplayName="someService" Description="An example service." etc="etc" />
</Component>
</DirectoryRef>
</Fragment>
</Wix>
我正在将命名空间声明动态添加到 Wix 元素,并且使用以下代码(从 StackOverflow 上的另一个答案借用)可以正常工作:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxsl="urn:schemas-microsoft-com:xslt"
xmlns:old="http://schemas.microsoft.com/wix/2006/wi"
xmlns:wix="http://schemas.microsoft.com/wix/2006/wi"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:util="http://schemas.microsoft.com/wix/UtilExtension"
exclude-result-prefixes="old">
<xsl:output method="xml" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:param name="pNewNamespace" select="'http://schemas.microsoft.com/wix/2006/wi'"/>
<xsl:variable name="vXsi" select="document('')/*/namespace::*[name()='util']"/>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
但是,当我尝试使用相同的方法将声明添加到 Fragment 节点时,它会返回乱码 xml。感觉这应该是一项非常简单、直接的任务。我究竟做错了什么?