Sha256: 21ca46fe7815bb31f266e0b830ab50a82a3225f4d692b5ccdb9a2cc2a8f72797

Contents?: true

Size: 815 Bytes

Versions: 6

Compression:

Stored size: 815 Bytes

Contents

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="xsl msxsl"
>
  <xsl:param name="help"/>
  <xsl:output method="xml" indent="yes"/>


  <xsl:template match="/*">
    <xsl:if test="$help='true'">
      <xsl:message terminate="yes">
        Xml template for protobuf-net.
        
        This template writes the proto descriptor as xml.
        No options available.
      </xsl:message>
    </xsl:if>
    <xsl:call-template name="main"/>
  </xsl:template>
  
    <xsl:template match="@* | node()" name="main">
        <xsl:copy>
            <xsl:apply-templates select="@* | node()"/>
        </xsl:copy>
    </xsl:template>
</xsl:stylesheet>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
game_machine-1.0.4 mono/bin/csharp/xml.xslt
game_machine-1.0.2 mono/bin/csharp/xml.xslt
game_machine-0.0.11 mono/bin/csharp/xml.xslt
game_machine-0.0.10 mono/bin/csharp/xml.xslt
game_machine-0.0.9 mono/bin/csharp/xml.xslt
game_machine-0.0.8 mono/bin/csharp/xml.xslt