I'm new to WIX and using 3.0. Can we display a link while displaying a dialog? basically i am stopping the installation when a framework version is missing. Requirement is to direct the user to some resource, below is what i did:
<PropertyRef Id="NETFRAMEWORK10"/>
<Condition Message="Microsoft .NET Framework Version 3.5 is missing. To download please visit **$(var.FrameworkDownload)**">
<![CDATA[Installed OR NETFRAMEWORK10]]>
</Condition>
Though it will display the url, obviously user can't click it or copy it? What should i do make it click-able?