Skip to content

Commit

Permalink
Change install pre-req from .NET 3.5 to 3.5 or later.
Browse files Browse the repository at this point in the history
  • Loading branch information
tdanner committed Feb 8, 2016
1 parent dd49b8e commit c970cd8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Src/Install/Product.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@
InstallScope="perMachine" />

<PropertyRef Id="NETFRAMEWORK35"/>
<PropertyRef Id="NETFRAMEWORK40FULL"/>

<Condition Message="This application requires .NET Framework 3.5. Please install the .NET Framework then run this installer again.">
<![CDATA[Installed OR NETFRAMEWORK35]]>
<Condition Message="This application requires .NET Framework 3.5 or later. Please install the .NET Framework then run this installer again.">
<![CDATA[Installed OR NETFRAMEWORK35 OR NETFRAMEWORK40FULL]]>
</Condition>

<?include AddRemovePrograms.wxi ?>
Expand Down

0 comments on commit c970cd8

Please sign in to comment.