BUGFIX: tf online <path> shouldn't croak if <path> is an add awaiting
[tfs.git] / build / references.xsl
blob67077cd2755a16152385de4f008d1f1c168e3ead
1 <?xml version='1.0'?>
2 <xsl:stylesheet version="1.0"
3 xmlns:x="http://schemas.microsoft.com/developer/msbuild/2003"
4 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
6 <xsl:output method="text" encoding="ascii" indent="yes"/>
8 <xsl:template match="/">
9 <xsl:apply-templates select="x:Project/x:ItemGroup/x:Reference"/>
10 <xsl:apply-templates select="x:Project/x:ItemGroup/x:ProjectReference"/>
11 </xsl:template>
13 <xsl:template match="x:Reference">-r:<xsl:value-of select="@Include" />.dll<xsl:text> </xsl:text></xsl:template>
14 <xsl:template match="x:ProjectReference">-r:<xsl:value-of select="x:Name" />.dll<xsl:text> </xsl:text></xsl:template>
16 </xsl:stylesheet>