2017-07-30 58 views
0

我正打算在我的软件包链中包含一个驱动程序MSI,但我不确定如何引用它。在WiX引导程序中绑定第三方Msi

我有以下代码微星是在我的项目文件夹/资源/ DriverInstaller.msi

这是我,但我收到关于构建

未定义的预处理器变量“$此错误(var.InstallerBootstrapper.ProjectDir)”。 InstallerBootstrapper

<?xml version="1.0" encoding="utf-8"?> 
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:bal="http://schemas.microsoft.com/wix/BalExtension"> 
    <Bundle Name="Installer" Version="4.0.0.0" Manufacturer="Laxus Hipot" UpgradeCode="7cbb781f-c5cc-4805-b599-713357824532"> 
    <BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.RtfLicense"> 
     <bal:WixStandardBootstrapperApplication LicenseFile="Resources\EULA.rtf" LogoFile="Resources\Icon.png" /> 
    </BootstrapperApplicationRef> 
    <Chain> 
     <MsiPackage Id="DriverInstaller" SourceFile="$(var.InstallerBootstrapper.ProjectDir)Resources\DriverInstaller.msi" /> 
     <MsiPackage Id="Installer" SourceFile="$(var.InstallerSetup.TargetPath)" /> 
    </Chain> 
    </Bundle> 
</Wix> 

回答

1

参考在wixproj文件中的相关项目 “InstallerBootstrapper”。 例如

<ProjectReference Include="..\InstallerBootstrapper.csproj"> 
     <Name>InstallerBootstrapper</Name> 
     <Project>{project guid}</Project> 
</ProjectReference>