Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Office 2016 add-in development in Visual studio 2013

We need to develop add-in for the Office 2016. We are using the Visual studio 2013. It is only showing the Office 2013 add-in templates. Is it possible to create Office 2016 add-in from Visual studio 2013? If so, kindly let me know the steps.

like image 944
Vijay VSTO Avatar asked Dec 02 '22 13:12

Vijay VSTO


1 Answers

You need VS 2015 to get the specific templates for Office 2016. VSTO only ever provides templates for "current" versions of Office.

If Office 2013 is installed you can develop an Add-in for it. There should be no problem installing and running it in Office 2016 - unless you want to use technology specific to 2016. In that case, you could use late-binding (PInvoke) for the 2016-specific portions, but debugging/testing would be a bit of a pain.

You can download the free Visual Studio 2015 Community edition (https://www.visualstudio.com/en-us/downloads/download-visual-studio-vs.aspx) as well as the VSTO package (https://www.visualstudio.com/en-us/features/office-tools-vs.aspx): VSTO does integrate into the Community edition for version 2015 (and 2013, for that matter). Licensing restrictions would apply, of course.

Other than that, you'd need to upgrade to a full VS 2015.

like image 78
Cindy Meister Avatar answered Dec 05 '22 14:12

Cindy Meister