--- trunk/RomCheater.VersionSupport/Version.cs 2012/05/09 11:39:59 35 +++ trunk/RomCheater.VersionSupport/Version.cs 2012/05/09 11:43:29 36 @@ -10,7 +10,7 @@ namespace RomCheater.VersionSupport private const string MAJOR = "1"; private const string MINOR = "0"; private const string BUILD = "0"; - private const string REVISION = "0"; + private const string REVISION = "*"; private const string VERSION = MAJOR + "." + MINOR + "." + BUILD + "." + REVISION; #if DEBUG private const string TAG = "debug"; @@ -18,6 +18,6 @@ namespace RomCheater.VersionSupport private const string TAG = "release"; #endif public const string AssemblyVersion = VERSION; - public const string AssemblyFileVersion = VERSION + "-" + TAG; + //public const string AssemblyFileVersion = VERSION + "-" + TAG; } } |