parent
48e87c8e8f
commit
841bb33e36
@ -1,22 +1,7 @@ |
|||||||
<Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types"> |
<Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types"> |
||||||
<Default Extension="vsixmanifest" ContentType="text/xml"/> |
<Default Extension="vsixmanifest" ContentType="text/xml"/> |
||||||
|
|
||||||
<Default Extension="jpg" ContentType="image/jpg"/> |
|
||||||
<Default Extension="png" ContentType="application/octet-stream"/> |
<Default Extension="png" ContentType="application/octet-stream"/> |
||||||
<Default Extension="bmp" ContentType="application/octet-stream"/> |
|
||||||
|
|
||||||
<Default Extension="c" ContentType="application/octet-stream"/> |
|
||||||
<Default Extension="h" ContentType="application/octet-stream"/> |
|
||||||
<Default Extension="S" ContentType="application/octet-stream"/> |
|
||||||
|
|
||||||
<Default Extension="txt" ContentType="text/plain"/> |
<Default Extension="txt" ContentType="text/plain"/> |
||||||
|
|
||||||
<Default Extension="conf" ContentType="application/octet-stream"/> |
|
||||||
<Default Extension="inf" ContentType="application/octet-stream"/> |
|
||||||
|
|
||||||
<Default Extension="xml" ContentType="text/xml"/> |
<Default Extension="xml" ContentType="text/xml"/> |
||||||
|
<Default Extension="zip" ContentType="application/octet-stream"/> |
||||||
<Default Extension="css" ContentType="application/octet-stream"/> |
|
||||||
<Default Extension="html" ContentType="text/html"/> |
|
||||||
<Default Extension="js" ContentType="application/octet-stream"/> |
|
||||||
</Types> |
</Types> |
||||||
|
@ -0,0 +1,18 @@ |
|||||||
|
<AsfContentProvider Version="1.0.0"> |
||||||
|
<Identifier Id="0e160d5c-e331-48d9-850b-e0387912171b"> |
||||||
|
<Org>FourWalledCubicle</Org> |
||||||
|
<ShortName>LUFA</ShortName> |
||||||
|
<Author>Dean Camera</Author> |
||||||
|
<Description></Description> |
||||||
|
<FollowFolderStructure>True</FollowFolderStructure> |
||||||
|
</Identifier> |
||||||
|
<AsfContent Type="zip" Path="contents.zip"> |
||||||
|
<Content> |
||||||
|
<Version></Version> |
||||||
|
<HelpURL/> |
||||||
|
<Locator/> |
||||||
|
<DbXMLPath>content.xml.cache</DbXMLPath> |
||||||
|
<Description/> |
||||||
|
</Content> |
||||||
|
</AsfContent> |
||||||
|
</AsfContentProvider> |
@ -0,0 +1,35 @@ |
|||||||
|
<!-- |
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
--> |
||||||
|
|
||||||
|
<!-- Atmel Studio framework VSIX XML transform file --> |
||||||
|
|
||||||
|
|
||||||
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> |
||||||
|
<xsl:output method="xml" omit-xml-declaration="yes"/> |
||||||
|
|
||||||
|
<!-- Need to input the LUFA version for later use --> |
||||||
|
<xsl:param name="lufa-version"/> |
||||||
|
|
||||||
|
<!-- Recursively match and copy/process all nodes/attributes --> |
||||||
|
<xsl:template match="@*|node()"> |
||||||
|
<xsl:copy> |
||||||
|
<xsl:apply-templates select="@*|node()"/> |
||||||
|
</xsl:copy> |
||||||
|
</xsl:template> |
||||||
|
|
||||||
|
<!-- Update the LUFA version to the version passed as a parameter --> |
||||||
|
<xsl:template match="Version"> |
||||||
|
<xsl:copy> |
||||||
|
<xsl:value-of select="substring($lufa-version, 1, 2)"/> |
||||||
|
<xsl:text>.</xsl:text> |
||||||
|
<xsl:value-of select="substring($lufa-version, 3, 2)"/> |
||||||
|
<xsl:text>.</xsl:text> |
||||||
|
<xsl:value-of select="substring($lufa-version, 5, 2)"/> |
||||||
|
</xsl:copy> |
||||||
|
</xsl:template> |
||||||
|
</xsl:stylesheet> |
Loading…
Reference in new issue