main
1<?xml version="1.0" encoding="utf-8"?>
2<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3 xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="xsl msxsl"
4>
5 <xsl:param name="help"/>
6 <xsl:output method="xml" indent="yes"/>
7
8
9 <xsl:template match="/*">
10 <xsl:if test="$help='true'">
11 <xsl:message terminate="yes">
12 Xml template for protobuf-net.
13
14 This template writes the proto descriptor as xml.
15 No options available.
16 </xsl:message>
17 </xsl:if>
18 <xsl:call-template name="main"/>
19 </xsl:template>
20
21 <xsl:template match="@* | node()" name="main">
22 <xsl:copy>
23 <xsl:apply-templates select="@* | node()"/>
24 </xsl:copy>
25 </xsl:template>
26</xsl:stylesheet>