Wise Installation Studio的MSBuild、NAnt或Rake任务

Wise Installation Studio的MSBuild、NAnt或Rake任务,build,installation,wise,Build,Installation,Wise,有人知道控制Wise Installation Studio的任何MSBuild或NAnt任务吗 我知道,我可能应该只使用WiX,但我当前的项目已经很明智了,我需要自动化的只是更新产品代码、升级部分和一些文本 我使用的是CruiseControl.NET-如果需要,可以将其调整为仅在Nant解决方案中使用。我调用wfwi.exe,它包含在Wise安装中,用于命令行访问()。以下是我的ccnet.config中的一个片段: <!-- build installers --> <

有人知道控制Wise Installation Studio的任何MSBuild或NAnt任务吗


我知道,我可能应该只使用WiX,但我当前的项目已经很明智了,我需要自动化的只是更新产品代码、升级部分和一些文本

我使用的是CruiseControl.NET-如果需要,可以将其调整为仅在Nant解决方案中使用。我调用wfwi.exe,它包含在Wise安装中,用于命令行访问()。以下是我的ccnet.config中的一个片段:

<!-- build installers -->

<exec>
<executable>C:\Path\To\WiseWrapper.bat</executable>
<buildArgs>"C:\Path\To\wfwi.exe" "C:\Path\To\Output.wsi" /c /p /s</buildArgs>
</exec>

<!-- build installer exes -->

<exec>
<executable>C:\Path\To\Wise32.exe</executable>
<buildArgs>/c /s C:\Path\To\Your.wse</buildArgs>
</exec>

我使用的是CruiseControl.NET-如果需要,可以将其调整为仅在Nant解决方案中使用。我调用wfwi.exe,它包含在Wise安装中,用于命令行访问()。以下是我的ccnet.config中的一个片段:

<!-- build installers -->

<exec>
<executable>C:\Path\To\WiseWrapper.bat</executable>
<buildArgs>"C:\Path\To\wfwi.exe" "C:\Path\To\Output.wsi" /c /p /s</buildArgs>
</exec>

<!-- build installer exes -->

<exec>
<executable>C:\Path\To\Wise32.exe</executable>
<buildArgs>/c /s C:\Path\To\Your.wse</buildArgs>
</exec>