Browse Source

add OS version restriction to setup

pull/297/head
Siegfried Pammer 12 years ago
parent
commit
353bdff1de
  1. 6
      src/Setup/Setup.wxs

6
src/Setup/Setup.wxs

@ -54,6 +54,12 @@
and then run the msi to uninstall SharpDevelop. Without the and then run the msi to uninstall SharpDevelop. Without the
"Installed OR" this would not be allowed. "Installed OR" this would not be allowed.
--> -->
<!-- SharpDevelop 5 doesn't support Win XP and below. -->
<Condition Message="SharpDevelop $(var.PRODUCTDISPLAYVERSION) can only be installed on Windows Vista and higher.">
Installed OR (VersionNT >= 600)
</Condition>
<!-- <!--
Check for .NET 4.0 RTM Full Check for .NET 4.0 RTM Full
--> -->

Loading…
Cancel
Save