如何在.wixproj文件中引用WixDifxAppExtension



我正在使用WiX工具集为Windows开发安装程序。我没有直接调用WiX工具,而是创建了一个.wixproj文件,并使用MsBuild来构建它。我的安装程序需要安装一个驱动程序,所以我决定尝试Difxapp扩展。

问题是我不知道如何在.wixproj文件中正确添加Difxapp扩展名。在ItemGroup标记中,我添加了<WixExtension Include="WixDifxAppExtension" />,这导致MSBuild在调用Light.exe时添加参数-ext "C:Program Files (x86)WiX Toolset v3.8binWixDifxAppExtension.dll"。但是,我认为我需要做其他事情,因为我收到以下错误消息:

error LGHT0094: Unresolved reference to symbol 'CustomAction:MsiProcessDrivers'

根据2009年的这个线程,我需要向light.exe命令添加另一个参数,该参数应该是:

"$(WIX)bindifxapp_x86.wixlib"

有没有人可以分享一个例子.wixproj,说明WixDifxAppExtension需要如何引用?或者,有人知道如何添加任意的链接器参数吗?一定有办法。

这是我当前的.wixproj文件:

<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <ProductVersion>1.0.4</ProductVersion>
    <DefineConstants>ProductVersion=$(ProductVersion)</DefineConstants>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
    <ProjectGuid>{FACDEEA0-F843-4ca7-8FCC-09AFFFCAAE85}</ProjectGuid>
    <SchemaVersion>2.0</SchemaVersion>
    <OutputName>installer-$(ProductVersion)</OutputName>
    <OutputType>Package</OutputType>
    <DefineSolutionProperties>false</DefineSolutionProperties>
    <WixTargetsPath Condition=" '$(WixTargetsPath)' == '' ">$(MSBuildExtensionsPath)MicrosoftWiXv3.xWix.targets</WixTargetsPath>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
    <OutputPath>bin$(Configuration)</OutputPath>
    <IntermediateOutputPath>obj$(Configuration)</IntermediateOutputPath>
    <DefineConstants>Debug;ProductVersion=$(ProductVersion)</DefineConstants>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
    <OutputPath>bin$(Configuration)</OutputPath>
    <IntermediateOutputPath>obj$(Configuration)</IntermediateOutputPath>
  </PropertyGroup>
  <ItemGroup>
    <Compile Include="installer.wxs" />
    <WixExtension Include="WixUIExtension" />
    <WixExtension Include="WixDifxAppExtension" />
    <!-- TODO: add  "$(WIX)bindifxapp_x86.wixlib" -->
  </ItemGroup>
  <Import Project="$(WixTargetsPath)" />
</Project>

添加WixLibrary项目:

<WixLibrary Include="difxapp_x86.wixlib" />

我刚刚在"References"中添加了"difxapp_x86.wixlib"。这删除了错误"对符号"CustomAction:MsiProcessDrivers"的未解析引用"。

相关内容

  • 没有找到相关文章

最新更新