20 lines
703 B
Plaintext
20 lines
703 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.2.0.0")]
|
|
[assembly: AssemblyFileVersion("2.2.0.0")]
|
|
[assembly: AssemblyCopyright("Steamware © 2007-<#= DateTime.Now.Year #>")]
|
|
[assembly: AssemblyCompany("Steamware")]
|
|
<#+
|
|
// int Major = 2;
|
|
// int Minor = 4;
|
|
// int Build = 602;
|
|
// int RevisionNumber = (int)(DateTime.UtcNow - new DateTime(2010,1,1)).TotalDays;
|
|
int Build = (int)((DateTime.Today.Year - 2000) * 100 + DateTime.Today.Month);
|
|
int RevisionNumber = (int)(DateTime.Now - DateTime.Today).TotalMinutes;
|
|
#> |