Mercurial > pub > bltoolkit
view Source/Properties/Revision.tt @ 4:f757da6161a1
!bug 100 + 2h fixed gregression
author | cin |
---|---|
date | Sun, 24 Aug 2014 17:57:42 +0400 |
parents | f990fcb411a9 |
children |
line wrap: on
line source
<#@ template language="C#v3.5" debug="True" #> <#@ output extension=".generated.cs" #> <#@ assembly name="System.Core" #> <#@ import namespace="System.Linq" #> // Autogenerated. Do not modify! namespace BLToolkit { partial class BLToolkitConstants { // <summary> // Revision component of version. // <summary> public const string Revision = "<#= Revision() #>"; } } <#+ string Revision() { try { return System.IO.File.ReadAllLines(@"..\..\_svn\entries").ElementAt(3); } catch { return "0"; } } #>