| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?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 -->
- <xsl:key name="shellext-search" match="wix:Component[contains(wix:File/@Source, 'NCContextMenu.dll') or contains(wix:File/@Source, 'NCOverlays.dll')]" use="@Id" />
- <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>
|