using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace RomCheater.VersionSupport { public static class Version { private const string MAJOR = "1"; private const string MINOR = "0"; private const string REVISION = "0"; private const string BUILD = "*"; private const string VERSION = MAJOR + "." + MINOR + "." + REVISION + "." + BUILD; #if DEBUG private const string TAG = "debug"; #else private const string TAG = "release"; #endif public const string AssemblyVersion = VERSION; public const string AssemblyFileVersion = VERSION + "-" + TAG; } }