我是否需要开发多个版本的 MS Outlook VSTO 加载项?
Do I need to develop multiple versions of my MS Outlook VSTO add-in?
我即将开发我的第一个 MS Outlook 加载项(在 this MS guide 之后)。
当我创建新项目时,我看到了这个...
这些版本的 Outlook 之间真的有这样的变化吗?这是否意味着我将有两个开发插件的两个副本?没有forward/backward可比性吗?
我是否遵循了正确的指南?我应该开发 VSTO 吗? This question 有 Outlook Add-ins Team - MSFT
的回答(尽管他们的个人资料实际上没有任何实际的 MS 隶属关系),从
开始
We recommend using the web add-in framework, instead of COM, for
writing an Outlook add-in. The web add-in framework enables developers
to:
Write once and have their add-in run across supported Outlook clients
enabling the add-in to reach millions of Outlook Desktop, Outlook for
Web, Outlook for Mac, and Outlook Mobile users.
简短的回答是否定的,2013-2016 VSTO 插件可以与 2010 一起使用。如果您需要它与 Office 2007 一起使用,则必须添加程序集 Outlook 2007 Primary Interop Assembly (PIA)。
我即将开发我的第一个 MS Outlook 加载项(在 this MS guide 之后)。
当我创建新项目时,我看到了这个...
这些版本的 Outlook 之间真的有这样的变化吗?这是否意味着我将有两个开发插件的两个副本?没有forward/backward可比性吗?
我是否遵循了正确的指南?我应该开发 VSTO 吗? This question 有 Outlook Add-ins Team - MSFT
的回答(尽管他们的个人资料实际上没有任何实际的 MS 隶属关系),从
We recommend using the web add-in framework, instead of COM, for writing an Outlook add-in. The web add-in framework enables developers to:
Write once and have their add-in run across supported Outlook clients enabling the add-in to reach millions of Outlook Desktop, Outlook for Web, Outlook for Mac, and Outlook Mobile users.
简短的回答是否定的,2013-2016 VSTO 插件可以与 2010 一起使用。如果您需要它与 Office 2007 一起使用,则必须添加程序集 Outlook 2007 Primary Interop Assembly (PIA)。