I have defined a SQL server bootstrapper in the .wixproj file:
<BootstrapperFileV7 Include="Microsoft.Sql.Server.Express.10.0">
<ProductName>Sql Server Express</ProductName>
</BootstrapperFileV7>
And the pre-requisite check in the .wxs file:
<PropertyRef Id="NETFRAMEWORK35_SP_LEVEL" />
<Condition Message="This setup requires the .NET Framework 3.5 Service Pack 1 to be installed.">
<![CDATA[Installed OR NETFRAMEWORK35_SP_LEVEL]]>
The SQL server bootstrapper is called before the .NET check and fails as it requires .Net.
What I would like to happen is inform the user they need to to download and install .Net as it is too large to include in the installer. Is there a way to ensure that the pre-requisite is called before the bootstrapper is run?