Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does VSTO Add-In support to Mac(iOS) Operating system?

Tags:

c#

vsto

I have created a VSTO Add-In. It will add new Tab to ribbon. Currently, it is working fine in Windows system.

I don't know whether it supports to Mac(iOS) operating system.

Can anybody please suggest me about it support? If it doesn't, what I should use to create project which support both windows and Mac(iOS)?enter image description here

like image 771
Nanji Mange Avatar asked May 13 '16 14:05

Nanji Mange


1 Answers

The straight answer is that VSTO add-ins are based on the COM technology which doesn't exist on MACs. It is for Windows OS only. VSTO in particular and COM addins in general donot have the ability to work on the Mac OS or in iOS. The architecture needed to invoke add-ins based on .NET controls is fundamentally different from the BSD Unix based ones that Mac uses.

The twist to this answer is if you are willing to stretch your programming towards Office Apps you will get what you are looking for.

This brief from MS will help you with the requirements for OS X desktop

Word for Mac version 15.18 (160109) is required to run Office add-ins.

Excel for Mac version 15.19 (160206) is required to run Office add-ins.

Source : https://dev.office.com/docs/add-ins/overview/requirements-for-running-office-add-ins

like image 111
Paras Parmar Avatar answered Sep 26 '22 00:09

Paras Parmar