私はこのドキュメントに出くわしました。http://wix.sourceforge.net/manual-wix3/wixnetfxextension.htm。
インストールされていないときに、たとえば.net4fullをインストールする方法がわかりません。
現在、私のwixxmlは次のようになっています。
<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を使用しています!