我正在开发一个Wix引导程序,我需要它有一个我发现的自定义UI并且一直在关注本教程https://medium.com/@rukshandangalla/how-i-created-custom-ui-using-wpf-mvvm-and-prism-for-wix-installer-5055c2b611e2但是它不完整,并没有显示如何将自定义UI链接到引导程序我我曾尝试将它作为视觉工作室中的参考添加,并作为捆绑中的有效负载添加但我不确定这是否是正确的方法。
当我尝试在visual studio中构建它时,我收到以下错误
'Microsoft.Tools.WindowsInstallerXml.AssemblyDefaultWixExtensionAttribute' 未定义或扩展中定义的类型 <.. \ Setup \ bin \ Debug \ PETSetup.dll'无法加载。
这是我的包
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:bal="http://schemas.microsoft.com/wix/BalExtension" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
<Bundle Name="Abundle name" Version="2.0.1" Manufacturer="manu" Condition="VersionNT64" UpgradeCode="254822db-8638-44bc-8815-95d0506b5145" IconSourceFile="X:\SS\Wix Installer\icon.ico">
<BootstrapperApplicationRef Id="ManagedBootstrapperApplicationHost">
<Payload SourceFile="X:\SS\Wix Installer\Setup\bin\Debug\BootstrapperCore.config"/>
<Payload SourceFile="X:\SS\Wix Installer\Setup\bin\Debug\PETSetup.dll"/>
<Payload SourceFile="C:\Program Files (x86)\WiX Toolset v3.11\SDK\Microsoft.Deployment.WindowsInstaller.dll"/>
</BootstrapperApplicationRef>
<WixVariable Id="WixMbaPrereqPackageId" Value="Netfx4Full" />
<WixVariable Id="WixMbaPrereqLicenseUrl" Value="X:\SS\Wix Installer\eula.rtf" />
<bal:Condition Message="You need to install .Net Framework 4.0 or higher in order to run this install">
<![CDATA[Netfx4FullVersion]]>
</bal:Condition>
<Chain>
<ExePackage Vital="yes" Permanent="yes" Cache="yes" SourceFile="X:\SS\Source\Bin\PrerequistesInstaller.exe"/>
</Chain>
<util:RegistrySearch Id="Net40" Root="HKLM" Key="SOFTWARE\Microsoft\Net Framework Setup\NDP\v4\Full" Value="Version" Variable="Netfx4FullVersion" Result="exists"/>
</Bundle>
</Wix>
这是自定义UI的主要cs文件
using Microsoft.Tools.WindowsInstallerXml.Bootstrapper;
using PETSetup.Models;
using PETSetup.ViewModels;
using PETSetup.Views;
using System.IO;
using System.Windows.Threading;
namespace PETSetup
{
public class PETSetup : BootstrapperApplication
{
Microsoft.Tools.WindowsInstallerXml.AssemblyDefaultWixExtensionAttribute t = new Microsoft.Tools.WindowsInstallerXml.AssemblyDefaultWixExtensionAttribute(typeof(PETSetup));
public static Dispatcher Dispatcher { get; set; }
protected override void Run()
{
Dispatcher = Dispatcher.CurrentDispatcher;
var model = new BootstrapperApplicationModel(this);
var viewModel = new InstallViewModel(model, Engine);
var view = new InstallView(viewModel);
model.SetWindowHandle(view);
Engine.Detect();
view.Show();
Dispatcher.Run();
Engine.Quit(model.FinalResult);
}
}
}
我该怎么办才能让它发挥作用?或者有没有人知道更好的一步一步教程?因为我能找到的唯一其他的是Msi,而不是bootstrappers。
答案 0 :(得分:0)