我正在尝试使用 InstallSheild 安装程序创建 VSTO。我已按照此处找到的说明创建 2010 VSTO 的自定义可再发行版本。但是,当我刷新列表时,新的自定义.prq
不会出现。如何创建.prq
将显示在可再发行列表中的自定义?
这是我用来创建自定义 prereq 的 xml 代码:
<?xml version="1.0" encoding="UTF-8"?>
<SetupPrereq>
<conditions>
<condition Type="32" Comparison="2" Path="HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VSTO Runtime Setup\v4R" FileName="Version" ReturnValue="10.0.40309" Bits="2"></condition>
</conditions>
<files>
<file LocalFile="<ISProductFolder>\SetupPrerequisites\VSTOR\vstor_redist.exe" URL="http://download.microsoft.com/download/B/5/1/B51D2F9E-1432-4B76-8248-F47316BB8EE0/vstor_redist.exe" CheckSum="a1b5c8fb246a9d0d66f12d3b6f5e471d" FileSize="0,40051808"></file>
</files>
<execute file="vstor_redist.exe" returncodetoreboot="1641,3010" requiresmsiengine="1">
</execute>
<properties Id="{3A84D56D-8682-4CAC-925E-3F1BDF3BE700}" Description="This prerequisite installs the most recent version of the Microsoft Visual Studio 2010 Tools for Office Runtime." >
</properties>
</SetupPrereq>