我偶然发现了这个文档。http://wix.sourceforge.net/manual-wix3/wixnetfxextension.htm。
我不知道如何在未安装时安装例如 .net4full。
目前我的 wix xml 看起来像这样:
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension">
<Product Id="*"
.....
.........
>
<PropertyRef Id="NETFRAMEWORK40FULL"/>
<Condition Message="This application requires .NET Framework 4 FULL. Please install the .NET Framework then run this installer again.">
<![CDATA[Installed OR NETFRAMEWORK40FULL]]>
</Condition>
.....
.........
............
.........
............
</Product>
.......................
..............................
................................
.........................
</Wix>
顺便说一句,我使用的是 wix 3.7!