ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater.VersionSupport/Version.cs
(Generate patch)

Comparing trunk/RomCheater.VersionSupport/Version.cs (file contents):
Revision 35 by william, Wed May 9 11:39:59 2012 UTC vs.
Revision 36 by william, Wed May 9 11:43:29 2012 UTC

--- 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;
     }
 }