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:
authorMarek Habersack <grendel@twistedcode.net>2014-07-01 16:22:06 +0400
committerMarek Habersack <grendel@twistedcode.net>2014-07-01 16:22:06 +0400
commit37123578db7fb0f889faf05e1b045c3c3da58ddb (patch)
treed392d618afec71704395099dec5f70c7ddc2e748 /setup
parent5ee08506bad23f41cc08b75a7bd88078ab84ce24 (diff)
Add a WIX condition to prevent the installer from running on Windows XP
The minimum supported Windows version is now 6.0 (Windows Vista)
Diffstat (limited to 'setup')
-rw-r--r--setup/WixSetup/Product.wxs1
1 files changed, 1 insertions, 0 deletions
diff --git a/setup/WixSetup/Product.wxs b/setup/WixSetup/Product.wxs
index 24efae348e..7c625a570d 100644
--- a/setup/WixSetup/Product.wxs
+++ b/setup/WixSetup/Product.wxs
@@ -20,6 +20,7 @@
<Condition Message="Gtk# version 2.12.9 or greater must be installed.">
<![CDATA[GTKSHARPVERSION >= "2.12" OR REMOVE ~= "ALL"]]>
</Condition>
+ <Condition Message="[ProductName] requires at least Windows Vista">VersionNT >= 600</Condition>
<!-- Ensure .Net 4.0 is installed -->
<PropertyRef Id="NETFRAMEWORK40FULL" />