Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/setup
diff options
context:
space:
mode:
authorLluis Sanchez Gual <lluis@novell.com>2011-06-28 12:39:38 +0400
committerLluis Sanchez Gual <lluis@novell.com>2011-06-28 12:48:01 +0400
commitec5a3dbbe9c8f67e825c60d37db926562b4a0264 (patch)
tree2e13deae96fe8acf5b2f87e16adfd40e2d75d8e4 /setup
parent40d2bf5070db2e38c25858afd929fb4f471af922 (diff)
Update version number
Diffstat (limited to 'setup')
-rw-r--r--setup/WixSetup/build.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/setup/WixSetup/build.js b/setup/WixSetup/build.js
index d0d7e1c6fb..0fc8be30dc 100644
--- a/setup/WixSetup/build.js
+++ b/setup/WixSetup/build.js
@@ -1,7 +1,9 @@
var MAJOR_VERSION = 2;
var MINOR_VERSION = 5;
var POINT_VERSION = 9;
-var BUILD_VERSION = 0;
+var BUILD_VERSION = 3;
+
+var PRODUCT_VERSION_TEXT = "2.6 Beta 4"
var ASSEMBLY_MAJOR_VERSION = 2;
var ASSEMBLY_MINOR_VERSION = 6;
@@ -14,7 +16,6 @@ var MONO_LIBS = "C:\\Program Files\\MonoLibraries\\2.6";
var MD_DIR = "..\\..";
var MD_EXTRAS_DIR = "..\\..\\extras";
var PRODUCT_VERSION = "" + MAJOR_VERSION + "." + MINOR_VERSION + "." + POINT_VERSION + (BUILD_VERSION != 0 ? "." + BUILD_VERSION : "");
-var PRODUCT_VERSION_TEXT = "" + MAJOR_VERSION + "." + MINOR_VERSION + (POINT_VERSION != 0 || BUILD_VERSION != 0 ? "." + POINT_VERSION : "") + (BUILD_VERSION != 0 ? "." + BUILD_VERSION : "");
var ASSEMBLY_VERSION = ASSEMBLY_MAJOR_VERSION + "." + ASSEMBLY_MINOR_VERSION + "." + ASSEMBLY_POINT_VERSION + "." + ASSEMBLY_BUILD_VERSION;
var MONO_PRODUCT_VERSION = "" + MAJOR_VERSION + format (MINOR_VERSION, 2) + format (POINT_VERSION, 2) + format (BUILD_VERSION, 3);