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-02-15 01:15:04 +0300
committerLluis Sanchez Gual <lluis@novell.com>2011-02-15 01:17:40 +0300
commit0526a2adb779d242470e32898158bcf6760eec26 (patch)
tree17d14f548e8758a58268cd19192315c597ebed52 /setup
parent20707c6f987043967d377da964d75cd91154d175 (diff)
Update setup path and version
Diffstat (limited to 'setup')
-rw-r--r--setup/WixSetup/Product.wxs6
-rw-r--r--setup/WixSetup/build.js6
2 files changed, 6 insertions, 6 deletions
diff --git a/setup/WixSetup/Product.wxs b/setup/WixSetup/Product.wxs
index c643c99ae6..a5971c9178 100644
--- a/setup/WixSetup/Product.wxs
+++ b/setup/WixSetup/Product.wxs
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<?define ProductShortName = "MonoDevelop" ?>
-<?define ProductVersion = "2.6.0" ?>
-<?define ProductVersionText = "2.6" ?>
-<?define HKCRNAME = "MonoDevelop2.6.0.0" ?>
+<?define ProductVersion = "2.5.9" ?>
+<?define ProductVersionText = "2.5.9" ?>
+<?define HKCRNAME = "MonoDevelop2.5.9.0" ?>
<?define Manufacturer = "Novell" ?>
<?define UpgradeCode = "9134F74C-E7E3-471A-9833-C86FB45CD38E" ?>
diff --git a/setup/WixSetup/build.js b/setup/WixSetup/build.js
index 922f273a30..a103fb51b2 100644
--- a/setup/WixSetup/build.js
+++ b/setup/WixSetup/build.js
@@ -1,11 +1,11 @@
var MAJOR_VERSION = 2;
-var MINOR_VERSION = 6;
-var POINT_VERSION = 0;
+var MINOR_VERSION = 5;
+var POINT_VERSION = 9;
var BUILD_VERSION = 0;
var sh = new ActiveXObject("WScript.Shell");
var fs = new ActiveXObject("Scripting.FileSystemObject");
-var MONO_LIBS = "C:\\Program Files (x86)\\MonoLibraries\\2.6\\lib\\mono\\2.0";
+var MONO_LIBS = "C:\\Program Files\\MonoLibraries\\2.6\\lib\\mono\\2.0";
var MD_DIR = "..\\..";
var MD_EXTRAS_DIR = "..\\..\\extras";
var PRODUCT_VERSION = "" + MAJOR_VERSION + "." + MINOR_VERSION + "." + POINT_VERSION + (BUILD_VERSION != 0 ? "." + BUILD_VERSION : "");