我使用Eclipse 4.5.2来部署JavaFX应用程序(JDK 1.8).我想在安装过程中更改IniFile.Ant任务或JavaFX部署正在生成一个动态wxi文件,该文件将包含在wxs文件中.当我自定义我的wxs文件时,它在安装过程中什么都不做.
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
<Product Id="ca010b32-9fce-45aa-83f3-3a38f0903b26" Name="test"
Language="1033" Version="1.00"
Manufacturer="Test GmbH"
UpgradeCode="ab0ba5d0-6760-4c00-991d-75816e2409a7">
<Package Description="test" Comments="None"
InstallerVersion="200" Compressed="yes"
InstallScope="perUser" Platform="x86"/>
<Media Id="1" Cabinet="simple.cab" EmbedCab="yes" />
<!-- Check some requirements ONLY on "install", but not on modify or uninstall. -->
<Property Id="JAVA_CURRENT_VERSION">
<RegistrySearch Id="JRE_CURRENT_VERSION_REGSEARCH" Root="HKLM" Key="SOFTWARE\JavaSoft\Java Runtime Environment" Name="CurrentVersion" Type="raw" Win64="no" />
</Property>
<Condition Message="Java Runtime Environment (32 Bit) is not installed. Please install Oracle JRE."><![CDATA[(Installed OR JAVA_CURRENT_VERSION)]]></Condition>
<!-- We use RemoveFolderEx to ensure application folder is …Run Code Online (Sandbox Code Playgroud)