What are the client requirements for a .NET Outlook-AddIn (VSTO 2010)?

1.5k Views Asked by At

we are planning to implement a Outlook-Addin (2007/2010). Our first attempt would be to do it with VSTO 2010, but we wonder if there are some special requirements on the client in this case.

2

There are 2 best solutions below

3
On BEST ANSWER

VSTO 2010 is required for Office 2010 but if you want to support both Office versions with one add-in you'll have to use version 12 of the PIAs and not 14. What is required is:

0
On

For clients, you build the installer (ClickOnce or SetupProject) which handles the required components (.NET 4.0, PIAs).

VSTO 2010 does the job of embedding the PIAs into the installer DLLs. VSTO for 2007 did not allow for this and always required the installation of the PIA (primary interop assemblies) which overwrote any existing PIA versions.

VSTO 2010 has many fixes for memory leaks and speed issues. VSTO 2010 is also backwards compatible with Office 2007.