3 Copyright (C) Dean Camera, 2013.
5 dean [at] fourwalledcubicle [dot] com
9 <!-- Atmel Studio framework VSIX XML transform file -->
12 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:vs="http://schemas.microsoft.com/developer/vsx-schema/2010" version="1.0">
13 <xsl:output method="xml" omit-xml-declaration="yes"/>
15 <!-- Need to input the extension version for later use -->
16 <xsl:param name="extension-version"/>
18 <!-- Recursively match and copy/process all nodes/attributes -->
19 <xsl:template match="@*|node()">
21 <xsl:apply-templates select="@*|node()"/>
25 <!-- Update the extension version to the version of LUFA being used -->
26 <xsl:template match="vs:Version">
28 <xsl:value-of select="$extension-version"/>