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

--- trunk/RomCheater.VersionSupport/Version.cs	2012/05/09 11:43:29	36
+++ trunk/RomCheater.VersionSupport/Version.cs	2012/05/09 11:50:09	37
@@ -9,15 +9,15 @@ namespace RomCheater.VersionSupport
     {
         private const string MAJOR = "1";
         private const string MINOR = "0";
-        private const string BUILD = "0";
-        private const string REVISION = "*";
-        private const string VERSION = MAJOR + "." + MINOR + "." + BUILD + "." + REVISION;
+        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;
+        public const string AssemblyFileVersion = VERSION + "-" + TAG;
     }
 }