当广告设置为否时设置 Wix 图标

Setting Wix icon when advertise is set to no

好像我一直在问关于 Wix 的问题。 这应该是最后一次了,只是打磨而已。

我希望我的关联文件有一个图标与之搭配,但在我的 ProgId 元素中,未指定广告,我假设默认为否。 因此在 wix 文档中,它指出:

For an advertised ProgId, the Id of an Icon element. For a non-advertised ProgId, this is the Id of a file containing an icon resource.

我完全不明白这是怎么回事。我是否设置一个包含图标的文件夹并使用 IconIndex 引用它?这是我正在使用的 .wxs 的一部分。

<Component Id ="MyApp.exe" Guid="{GUID-HERE}">
            <File Id="MyApp.exe" KeyPath="yes" Source="$(var.MyApp.TargetDir)MyApp.exe" />
            <ProgId Id ="MyAppProgID" Description="MyApp data files" Icon ="Logo.ico" IconIndex="0">
                <Extension Id ="myapp" ContentType="application/myapp">
                    <Verb Id ="open" Command="open" TargetFile="MyApp.exe" Argument="&quot;%1&quot;"/>
                </Extension>
            </ProgId>

<Icon Id="Logo.ico" SourceFile="$(var.MyApp.TargetDir)\Icon\Logo.ico"/>

我正在努力寻找有关 wix 的许多 ProgId 功能的任何示例或适当的文档。

提前致谢

您需要将 Icon 元素更改为 File 并删除 IconIndex

<Component Id ="MyApp.exe" Guid="{GUID-HERE}">
        <File Id="MyApp.exe" KeyPath="yes" Source="$(var.MyApp.TargetDir)MyApp.exe" />
        <File Id="Logo.ico" SourceFile="$(var.MyApp.TargetDir)\Icon\Logo.ico"/>
        <ProgId Id ="MyAppProgID" Description="MyApp data files" Icon ="Logo.ico">
            <Extension Id ="myapp" ContentType="application/myapp">
                <Verb Id ="open" Command="open" TargetFile="MyApp.exe" Argument="&quot;%1&quot;"/>
            </Extension>
        </ProgId>