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>2010-12-20 19:23:08 +0300
committerLluis Sanchez Gual <lluis@novell.com>2010-12-20 19:25:49 +0300
commit3cb4ee33997b5ddd5df42bc11ebccc9d7e9ecd54 (patch)
tree2705d6ed6afafc7b2564e68079d455046c4326e5 /setup
parentaae4be4501e4902abd2fd68cd49d431cc30a3fc6 (diff)
Added Git addin and updated version number.
Diffstat (limited to 'setup')
-rw-r--r--setup/WixSetup/Product.wxs8
-rw-r--r--setup/WixSetup/build.js4
2 files changed, 8 insertions, 4 deletions
diff --git a/setup/WixSetup/Product.wxs b/setup/WixSetup/Product.wxs
index bca47096c8..a2cfb26184 100644
--- a/setup/WixSetup/Product.wxs
+++ b/setup/WixSetup/Product.wxs
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<?define ProductShortName = "MonoDevelop" ?>
-<?define ProductVersion = "2.4.1" ?>
-<?define ProductVersionText = "2.4.1" ?>
+<?define ProductVersion = "2.4.9.1" ?>
+<?define ProductVersionText = "2.4.9.1" ?>
<?define Manufacturer = "Novell" ?>
<?define UpgradeCode = "9134F74C-E7E3-471A-9833-C86FB45CD38E" ?>
@@ -552,6 +552,10 @@
<Component Id="MonoDevelop_AddIns_VersionControl" Guid="185a74d4-17c2-4e94-9dbc-4c391026eb1e">
<File Name="MonoDevelop.VersionControl.dll" Source="$(var.BuildRoot)\AddIns\VersionControl\MonoDevelop.VersionControl.dll" />
<File Name="MonoDevelop.VersionControl.Subversion.dll" Source="$(var.BuildRoot)\AddIns\VersionControl\MonoDevelop.VersionControl.Subversion.dll" />
+ <File Name="MonoDevelop.VersionControl.Git.dll" Source="$(var.BuildRoot)\AddIns\VersionControl\MonoDevelop.VersionControl.Git.dll" />
+ <File Name="NGit.dll" Source="$(var.BuildRoot)\AddIns\VersionControl\NGit.dll" />
+ <File Name="NSch.dll" Source="$(var.BuildRoot)\AddIns\VersionControl\NSch.dll" />
+ <File Name="Sharpen.dll" Source="$(var.BuildRoot)\AddIns\VersionControl\Sharpen.dll" />
<File Name="comment.png" Source="$(var.BuildRoot)\AddIns\VersionControl\comment.png" />
<File Name="menu_add.png" Source="$(var.BuildRoot)\AddIns\VersionControl\menu_add.png" />
<File Name="menu_commit.png" Source="$(var.BuildRoot)\AddIns\VersionControl\menu_commit.png" />
diff --git a/setup/WixSetup/build.js b/setup/WixSetup/build.js
index 3948b0d871..fe59461f0f 100644
--- a/setup/WixSetup/build.js
+++ b/setup/WixSetup/build.js
@@ -1,7 +1,7 @@
var MAJOR_VERSION = 2;
var MINOR_VERSION = 4;
-var POINT_VERSION = 1;
-var BUILD_VERSION = 0;
+var POINT_VERSION = 9;
+var BUILD_VERSION = 1;
var sh = new ActiveXObject("WScript.Shell");
var fs = new ActiveXObject("Scripting.FileSystemObject");