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 37 by william, Wed May 9 11:50:09 2012 UTC vs.
Revision 41 by william, Wed May 9 12:34:11 2012 UTC

--- trunk/RomCheater.VersionSupport/Version.cs	2012/05/09 11:50:09	37
+++ trunk/RomCheater.VersionSupport/Version.cs	2012/05/09 12:34:11	41
@@ -9,9 +9,10 @@ namespace RomCheater.VersionSupport
     {
         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;
+        private const string REVISION = "$WCREV$";
+
+        private const string VERSION = MAJOR + "." + MINOR + "." + "." + BUILD + "." + REVISION;
 #if DEBUG
         private const string TAG = "debug";
 #else