1

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

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

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

根据this thread from 2009,我需要向light.exe 命令添加另一个参数,该参数应该是:

"$(WIX)bin\difxapp_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)\Microsoft\WiX\v3.x\Wix.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)bin\difxapp_x86.wixlib" -->
  </ItemGroup>
  <Import Project="$(WixTargetsPath)" />
</Project>
4

2 回答 2

3

添加一个 WixLibrary 项目:

<WixLibrary Include="difxapp_x86.wixlib" />

于 2014-05-23T01:48:10.343 回答
1

我刚刚将“difxapp_x86.wixlib”添加到“参考”中。这删除了错误“未解决对符号'CustomAction:MsiProcessDrivers'的引用”。

于 2020-01-08T09:13:25.600 回答