19 lines
676 B
Plaintext
19 lines
676 B
Plaintext
<#@ template language="C#" #>
|
|
//
|
|
// This code was generated by a tool. Any changes made manually will be lost
|
|
// the next time this code is regenerated.
|
|
//
|
|
|
|
using System.Reflection;
|
|
|
|
[assembly: AssemblyVersion("2.1.139.<#= this.RevisionNumber #>")]
|
|
[assembly: AssemblyFileVersion("2.1.139.<#= this.RevisionNumber #>")]
|
|
[assembly: AssemblyCopyright("Steamware © 2009-<#= DateTime.Now.Year #>")]
|
|
[assembly: AssemblyCompany("Steamware")]
|
|
<#+
|
|
// int Major = 2;
|
|
// int Minor = 4;
|
|
// int Build = 602;
|
|
// int RevisionNumber = (int)(DateTime.Now - DateTime.Today).TotalSeconds;
|
|
int RevisionNumber = (int)(DateTime.UtcNow - new DateTime(2009,1,1)).TotalDays/7;
|
|
#> |