Skip to content

Commit

Permalink
require .net 4 to be installed before setup
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastien Pouliot committed Apr 12, 2011
1 parent 9c4696d commit a1bea8b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions gendarme/wix/Product.wxs
Expand Up @@ -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 -->
Expand Down

0 comments on commit a1bea8b

Please sign in to comment.