I am deploying an ASP.NET app
The app depends on both .NET Framework v1.1 and IIS 5.0
In order for .NET to register itself properly with IIS, IIS needs to be installed first.
On the Preprequisites / Launch Conditions page, I have ticked off:
Minimum IIS Version - IIS 5.0
Minimum .NET Version - .NET Framework 1.1
The installer contains the .NET Framework v1.1 installer, which I have specified on the Prerequisites / Software page
However, when installing to a target which has neither IIS nor .NET Framework, the .NET is installing first, then the message that IIS is necessary is installed. Basically, I want the installer to NOT install .NET if IIS is not already installed. How can I do this?
Thanks,
Jason