无法抑制 WiX 警告 LGHT1076

Can't suppress WiX warning LGHT1076

我正在使用 WiX 工具收集文件并创建安装程序

heat 链接器产生一些警告 LGHT1076,我尝试将 -sw1076 添加到命令行以抑制警告 ID 1076,但警告仍然显示在控制台上

编辑

这里是控制台上显示的实际警告:

components.wx s(436): warning LGHT1076: ICE60: The file fil7B3FA00E2521DBF8AC02D1673A643A1A is not a Font, and its version is not a companion file reference. It should have a language specified in the Langu age column

Wix 项目编辑器不会将抑制警告值保存到文件中。您需要手动添加它们。在记事本中打开 wixproj 文件并添加以下 属性 组:

<PropertyGroup>
    <SuppressIces>ICE03</SuppressIces>
    <SuppressSpecificWarnings>1076</SuppressSpecificWarnings>
</PropertyGroup>