12 lines
623 B
XML
12 lines
623 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>
|