2

我想使用 xslt 来编辑从 wix 中生成的 .wxsheat文件

这是 components_en_us.wxs

<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
        <Fragment>
            <DirectoryRef Id="CLASSES">
                <Directory Id="dirAB609E465A12655D740B32B2BA26C468" Name="alfresco">
                <Directory Id="dir68A1A3CC25353B021B1D7D979B520AF0" Name="extension">
                    <Component Id="cmp0FAE663628DD6BAE53501BB26264259B" Guid="1CBE6568-96E5-4844-BF02-99AF0DE1719D">
                        <File Id="fil867FDB2D2761B5912BA54F92F5E928D1" KeyPath="yes" Source="SourceDir\alfresco\extension\web-client-config-custom.xml" />
                    </Component>
                </Directory>
                </Directory>
            </DirectoryRef>
    </Fragment>
</Wix>

但问题是我有其他 .wxs 文件(其他语言的 components_xx_yy.wxs)并且组件/文件 ID 是相同的。如果我使用这种方法编译我会得到一个错误

error LGHT0091 : Duplicate symbol 'Component:cmp0FAE663628DD6BAE53501BB26264259B' found. 
This typically me ans that an Id is duplicated. Check to make sure all your identifiers 
of a given type (File, Component, Feature) are unique.

我用谷歌搜索,发现我可以使用 xslt 来更改 components_en_us.wxs 中的 Component/File id

所以,我期待像

<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
    <Fragment>
        <DirectoryRef Id="CLASSES">
            <Directory Id="dirAB609E465A12655D740B32B2BA26C468" Name="alfresco">
            <Directory Id="dir68A1A3CC25353B021B1D7D979B520AF0" Name="extension">
                <Component Id="en_US_cmp0FAE663628DD6BAE53501BB26264259B" Guid="1CBE6568-96E5-4844-BF02-99AF0DE1719D">
                    <File Id="fil867FDB2D2761B5912BA54F92F5E928D1" KeyPath="yes" Source="SourceDir\alfresco\extension\web-client-config-custom.xml" />
                </Component>
            </Directory>
            </Directory>
        </DirectoryRef>
    </Fragment>
</Wix>

现在,我从另一个问题中得到了这个 xslt,但我不知道如何按照我的意愿实现它。

<?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" indent="yes"/>

  <xsl:template match="@* | node()">
    <xsl:copy>
      <xsl:apply-templates select="@* | node()"/>
    </xsl:copy>
  </xsl:template>
</xsl:stylesheet>

所以,如果我的理解有误,请纠正我,也请帮助我处理 .xslt

提前致谢

编辑:这种方式是最佳实践,还是我应该做其他事情来解决这个重复错误。

4

1 回答 1

5

我能在这两个 XML 列表之间找到的唯一变化是在组件 ID 之前添加了“en_US_”。这是全部吗?如果是这样,请尝试将此模板添加到您当前的 XSLT 文件中:

<xsl:template match="wix:Component/@Id">
   <xsl:attribute name="{name()}">
     <xsl:value-of select="concat('en_US_', .)" />
   </xsl:attribute>
</xsl:template>
于 2013-01-21T10:28:04.710 回答