VSTO 2nd Edition compatibility issue

J

Jonel

Hello,

I have an Outlook add-in solution created using the RTM version of VSTO and
after I installed the VSTO 2nd Edition, the main project in the solution is
not loading anymore. Is there a URL which explains a workaround or a fix for
this issue?

Thanks,
Jonel
 
K

Ken Slovak - [MVP - Outlook]

Do you mean VSTO 2005 SE? The names and locations got changed. You have to
modify your code, you can't just port it or open it in VSTO 2005 SE if it
was originally created in VSTO 2005.

A VSTO 2005 SE addin uses ThisAddIn and this.Application to get the Outlook
Application object. In other classes in the project you would refer to
ThisAddIn.Application to get the Outlook Application object.
 
Top