Files
chromebox-fan-control-win/wix/exclude-service.xsl
2026-04-02 18:32:43 +08:00

12 lines
634 B
XML

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:wi="http://schemas.microsoft.com/wix/2006/wi">
<xsl:output omit-xml-declaration="yes" />
<xsl:key name="service-comp" match="wi:Component[wi:File[contains(@Source,'ChromeboxFanControlService.exe')]]" use="@Id" />
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()" />
</xsl:copy>
</xsl:template>
<xsl:template match="wi:Component[wi:File[contains(@Source,'ChromeboxFanControlService.exe')]]" />
<xsl:template match="wi:ComponentRef[key('service-comp', @Id)]" />
</xsl:stylesheet>