Minor documentation improvements.
[pub/USBasp.git] / LUFA / StudioIntegration / XSLT / lufa_vsmanifest_transform.xslt
1 <!--
2 LUFA Library
3 Copyright (C) Dean Camera, 2013.
4
5 dean [at] fourwalledcubicle [dot] com
6 www.lufa-lib.org
7 -->
8
9 <!-- Atmel Studio framework VSIX XML transform file -->
10
11 <!-- -->
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"/>
14
15 <!-- Need to input the extension version for later use -->
16 <xsl:param name="extension-version"/>
17
18 <!-- Recursively match and copy/process all nodes/attributes -->
19 <xsl:template match="@*|node()">
20 <xsl:copy>
21 <xsl:apply-templates select="@*|node()"/>
22 </xsl:copy>
23 </xsl:template>
24
25 <!-- Update the extension version to the version of LUFA being used -->
26 <xsl:template match="vs:Version">
27 <xsl:copy>
28 <xsl:value-of select="$extension-version"/>
29 </xsl:copy>
30 </xsl:template>
31
32 </xsl:stylesheet>