我正在尝试将自定义引导程序包添加到 Visual Studio 2010 中的 clickonce 安装,但该包未显示在先决条件菜单中。我在“C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bootstrapper\Packages”目录中为我的包添加了一个文件夹。
我已经在 Visual Studio 中打开了我的 product.xml 和 package.xml 并且都没有显示任何错误。
我试图检查注册表以确认我将文件放置在正确的位置,但 HKLM\Software\Microsoft\GenericBootstrapper 和 HKCU\Software\Microsoft\GenericBootstrapper 都没有在注册表中。
添加文件后,我也尝试过完全重启。
这是我的 XML 文件:product.xml
<?xml version="1.0" encoding="utf-8" ?>
<Product
xmlns="http://schemas.microsoft.com/developer/2004/01/bootstrapper"
ProductCode="RedemptionDLL">
<RelatedProducts>
<DependsOnProduct Code="Microsoft.Windows.Installer.3.1" />
</RelatedProducts>
<PackageFiles>
<PackageFile Name="RedemptionDLL.msi"/>
</PackageFiles>
<Commands>
<Command PackageFile="RedemptionDLL.msi" Arguments="">
<InstallConditions>
<BypassIf Property="IsMsiInstalled"
Compare="ValueGreaterThan" Value="0"/>
<FailIf Property="AdminUser"
Compare="ValueNotEqualTo" Value="True"
String="NotAnAdmin"/>
</InstallConditions>
<ExitCodes>
<ExitCode Value="0" Result="Success"/>
<ExitCode Value="1641" Result="SuccessReboot"/>
<ExitCode Value="3010" Result="SuccessReboot"/>
<DefaultExitCode Result="Fail" String="GeneralFailure"/>
</ExitCodes>
</Command>
</Commands>
</Product>
包.xml
<?xml version="1.0" encoding="utf-8" ?>
<Package
xmlns="http://schemas.microsoft.com/developer/2004/01/bootstrapper"
Name="DisplayName"
Culture="Culture"
<Strings>
<String Name="DisplayName">RedemptionDLL</String>
<String Name="Culture">en</String>
<String Name="NotAnAdmin">You must be an administrator to install this package. Please contact your administrator.</String>
<String Name="GeneralFailure">A general error has occurred while
installing this package.</String>
</Strings>
</Package>