我有一个非常基本的标准清单,如下所示: https://docs.microsoft.com/en-us/outlook/add-ins/manifests
我的Outlook加载项支持以下客户端:
如何删除对Outlook 2013的支持并仅保留2016年?
提交到Office Store的所有应用和加载项都必须符合Office Store Validation Policies
特别是第4.12.1节,“您的加载项必须适用于支持您在加载项清单中的Requirements元素中定义的方法的所有平台。”有关哪些平台支持哪些方法的详细信息,请参阅Office Add-in host and platform availability。
如上所述,您必须支持2013年(尽管我认为2013年是EOL在2018年初)。但根据我自己的经验,只需确保这在您的清单中:
<!-- These elements support older clients that don't support add-in commands -->
<FormSettings>
<Form xsi:type="ItemRead">
<DesktopSettings>
<SourceLocation DefaultValue="https://api.franconnect.net/outlook.html?action=upload&view=desktop&mode=read"/>
<RequestedHeight>450</RequestedHeight>
</DesktopSettings>
</Form>
</FormSettings>