在 Outlook 插件中删除对 outlook 2013 的支持
Remove Support for outlook 2013 in Outlook add in
Outlook 插件被拒绝,因为它不能在 outlook 2013 中运行。如何从 outlook 插件清单文件中删除对 outlook 2013 的支持??
我们也尝试了 outlook 2013 测试,但微软不再支持下载
无法下载 mac 的 Outlook 2013
Outlook add-ins declare what API versions they require by using the
Requirements element in their manifest. Outlook add-ins always include
a Set element with a Name attribute set to Mailbox and a MinVersion
attribute set to the minimum API requirement set that supports the
add-in's scenarios.
针对您的情况
<Requirements>
<Sets>
<Set Name="Mailbox" MinVersion="1.5" />
</Sets>
</Requirements>
阅读更多内容
Outlook 插件被拒绝,因为它不能在 outlook 2013 中运行。如何从 outlook 插件清单文件中删除对 outlook 2013 的支持??
我们也尝试了 outlook 2013 测试,但微软不再支持下载
无法下载 mac 的 Outlook 2013
Outlook add-ins declare what API versions they require by using the Requirements element in their manifest. Outlook add-ins always include a Set element with a Name attribute set to Mailbox and a MinVersion attribute set to the minimum API requirement set that supports the add-in's scenarios.
针对您的情况
<Requirements>
<Sets>
<Set Name="Mailbox" MinVersion="1.5" />
</Sets>
</Requirements>
阅读更多内容