Skip to content

Instantly share code, notes, and snippets.

View ader1990's full-sized avatar

Adrian Vladu ader1990

View GitHub Profile
@rockarts
rockarts / filter.xslt
Created October 26, 2011 20:04
XSLT Filtering of Output from the Wix Harvest.exe
<?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" />
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>