如何在Outlook加载项清单中删除对Office 2013的支持

问题描述 投票:0回答:2

我有一个非常基本的标准清单,如下所示: https://docs.microsoft.com/en-us/outlook/add-ins/manifests

我的Outlook加载项支持以下客户端:

  • Outlook 2013或更高版本
  • Outlook 2013 Service Pack 1或更高版本
  • Outlook 2016或更高版本
  • 网络上的展望
  • Outlook 2016 for Mac

如何删除对Outlook 2013的支持并仅保留2016年?

outlook-addin office-js
2个回答
1
投票

提交到Office Store的所有应用和加载项都必须符合Office Store Validation Policies

特别是第4.12.1节,“您的加载项必须适用于支持您在加载项清单中的Requirements元素中定义的方法的所有平台。”有关哪些平台支持哪些方法的详细信息,请参阅Office Add-in host and platform availability


1
投票

如上所述,您必须支持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&amp;view=desktop&amp;mode=read"/>
        <RequestedHeight>450</RequestedHeight>
      </DesktopSettings>
    </Form>
  </FormSettings>
© www.soinside.com 2019 - 2024. All rights reserved.