Building a MSI on Windows 7 error in Netbeans 7.4 using JDK 8 (build 1.8.0-ea-b121), the generated build script jfx-impl.xml contains a line that validates the presence of Wix. The block that has an issue shown below. When running the Wix candle application from the command line the output is "Windows Installer XML Toolset Compiler version 3.8.1128.0" The block below does not validate the presence of Wix because it does not have the word "Toolset" in the ant build include file. I've modified the script once but Netbeans resets the xml; how can I prevent Netbeans from updating the build script?
<condition property="missing.WiX">
<not><and>
<contains string="${exec-output}" substring="Windows Installer Xml Compiler version"/>
<not><contains string="${exec-output}" substring="Windows Installer Xml Compiler version 1"/></not>
<not><contains string="${exec-output}" substring="Windows Installer Xml Compiler version 2"/></not>
</and></not>
</condition>
<condition property="missing.WiX">
<not><and>
<contains string="${exec-output}" substring="Windows Installer Xml Compiler version"/>
<not><contains string="${exec-output}" substring="Windows Installer Xml Compiler version 1"/></not>
<not><contains string="${exec-output}" substring="Windows Installer Xml Compiler version 2"/></not>
</and></not>
</condition>