2020-09-05 08:35:53 +03:00
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version= "1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:wix="http://schemas.microsoft.com/wix/2006/wi">
<xsl:output method= "xml" indent= "yes" />
<!-- Copy all attributes and elements to the output. -->
<xsl:template match= "@*|*" >
<xsl:copy >
<xsl:apply-templates select= "@*" />
<xsl:apply-templates select= "*" />
</xsl:copy>
</xsl:template>
<!-- Identify MainExecutable -->
<xsl:key name= "exe-search" match= "wix:File[contains(@Source, '@APPLICATION_EXECUTABLE@.exe')]" use= "@Id" />
<xsl:template match= "wix:File[key('exe-search', @Id)]" >
<xsl:copy >
<xsl:apply-templates select= "@*" />
<xsl:attribute name= "Id" >
<xsl:text > MainExecutable</xsl:text>
</xsl:attribute>
<xsl:apply-templates />
</xsl:copy>
</xsl:template>
<!-- Exclude Shell Extensions -->
2022-12-21 14:20:46 +03:00
<xsl:key name= "shellext-search" match= "wix:Component[contains(wix:File/@Source, 'NCContextMenu.dll') or contains(wix:File/@Source, 'NCOverlays.dll')]" use= "@Id" />
2020-09-05 08:35:53 +03:00
<xsl:template match= "wix:Component[key('shellext-search', @Id)]" />
<xsl:template match= "wix:ComponentRef[key('shellext-search', @Id)]" />
<!-- Exclude VC Redist -->
<xsl:key name= "vc-redist-32-search" match= "wix:Component[contains(wix:File/@Source, 'vc_redist.x86.exe')]" use= "@Id" />
<xsl:template match= "wix:Component[key('vc-redist-32-search', @Id)]" />
<xsl:template match= "wix:ComponentRef[key('vc-redist-32-search', @Id)]" />
<xsl:key name= "vc-redist-64-search" match= "wix:Component[contains(wix:File/@Source, 'vc_redist.x64.exe')]" use= "@Id" />
<xsl:template match= "wix:Component[key('vc-redist-64-search', @Id)]" />
<xsl:template match= "wix:ComponentRef[key('vc-redist-64-search', @Id)]" />
</xsl:stylesheet>