インストーラーの実行時に .NET Framework がインストールされているかどうかを確認するチェックを実装しようとしています。
以下を追加しました。
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension">
<PropertyRef Id="NETFRAMEWORK40FULL"/>
<Condition Message="This application requires .NET Framework 4.0. Please install the .NET Framework then run this installer again. Contact support at support@Swiftposter.com if you have further issues.">
<![CDATA[Installed OR NETFRAMEWORK40FUL]]>
</Condition>
ただし、(クライアントだけでなく)完全な.NETフレームワークがインストールされていても停止し続けるため、常にfalseになるようです。
これは何ですか?