gpt4 book ai didi

xml - 使用 XSLT 从 heat 修改 .wxs

转载 作者:数据小太阳 更新时间:2023-10-29 02:57:54 30 4
gpt4 key购买 nike

我想使用 xslt 来编辑从 heat in wix 生成的 .wxs 文件

这是 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 中的组件/文件 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

提前致谢

编辑:这种方式是最佳实践,还是我应该采取其他措施来解决此重复错误。

最佳答案

我能在这两个 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>

关于xml - 使用 XSLT 从 heat 修改 .wxs,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14436495/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com