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

github.com/mono/mono-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Pouliot <sebastien@ximian.com>2011-04-13 03:17:34 +0400
committerSebastien Pouliot <sebastien@ximian.com>2011-04-13 03:17:34 +0400
commita1bea8b03d7d418f2a40f7b464cfe21c6cda4d15 (patch)
tree7a1b584eb8d0d871200b11d4235f4bb830aa3001 /gendarme
parent9c4696d1dfc73718ea9eeee47c573a519e44d2ec (diff)
require .net 4 to be installed before setup
Diffstat (limited to 'gendarme')
-rw-r--r--gendarme/wix/Product.wxs8
1 files changed, 4 insertions, 4 deletions
diff --git a/gendarme/wix/Product.wxs b/gendarme/wix/Product.wxs
index e58faff5..cd04e059 100644
--- a/gendarme/wix/Product.wxs
+++ b/gendarme/wix/Product.wxs
@@ -92,10 +92,10 @@
<RemoveExistingProducts After="InstallValidate" />
</InstallExecuteSequence>
- <!-- Ensure .Net Framework 3.5 is installed -->
- <PropertyRef Id="NETFRAMEWORK35" />
- <Condition Message="This setup requires the .NET Framework 3.5 to be installed.">
- <![CDATA[Installed OR NETFRAMEWORK35]]>
+ <!-- Ensure .Net Framework 4.0 is installed -->
+ <PropertyRef Id="NETFRAMEWORK40FULL" />
+ <Condition Message="This setup requires the .NET Framework 4.0 (full) to be installed.">
+ <![CDATA[Installed OR NETFRAMEWORK40FULL]]>
</Condition>
<!-- This enables the license screen and where to install screen -->