show the difference between two versions for a specified path
[tfs.git] / build / sources.xsl
blobfc86e8c93fb9f7c4b5a3cca7a237cd9086582631
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:Compile"/>
10 </xsl:template>
12 <xsl:template match="x:Compile[not(@Condition)]">
13 <xsl:value-of select="@Include" /><xsl:text> </xsl:text>
14 </xsl:template>
16 </xsl:stylesheet>