Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Version.tt 362 B
Newer Older
<#@ template language="C#" #>
<#@ output extension=".cs"#>
using System.Reflection;
// generated on <#= DateTime.UtcNow.ToString() #>
[assembly: AssemblyVersion("3.0.1.<#= this.RevisionNumber #>")]
[assembly: AssemblyFileVersion("3.0.1.<#= this.RevisionNumber #>")]

<#+
    int RevisionNumber = (int)(DateTime.UtcNow - new DateTime(2015, 1, 1)).TotalDays;
#>