Is It Possible To Load Add-in On Outlook Of MacOS

Smit Rathod 100 Reputation points
2023-01-20T06:25:48.9466667+00:00

I have one native shim add-in project including C# class libraries.

Add-in works fine in windows OS (By using WIX).

Is it possible to load this add-in on outlook of MacOS?

If so, How can i do that ?

Outlook
Outlook
A family of Microsoft email and calendar products.
3,318 questions
C#
C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
10,562 questions
C++
C++
A high-level, general-purpose programming language, created as an extension of the C programming language, that has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation.
3,608 questions
Office Development
Office Development
Office: A suite of Microsoft productivity software that supports common business tasks, including word processing, email, presentations, and data management and analysis.Development: The process of researching, productizing, and refining new or existing technologies.
3,680 questions
Office Mac
Office Mac
Office: A suite of Microsoft productivity software that supports common business tasks, including word processing, email, presentations, and data management and analysis.Mac: A family of Apple personal computers that run the macOS operating system.
480 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Dimple Rane 906 Reputation points
    2023-01-20T07:23:33.39+00:00

    It may be possible to load your native Shim add-in on Outlook for macOS, but it will likely require some modifications to the add-in and the development of a separate installer for macOS.

    Outlook for macOS uses a different add-in model than Outlook for Windows, called Office Add-ins for Mac. Office Add-ins for Mac are built using HTML, CSS, and JavaScript, and are not compatible with native Shim add-ins built using C# and the .NET Framework.

    To use your add-in on Outlook for macOS, you will need to convert your existing Shim add-in to an Office Add-in for Mac. This process will involve re-writing the add-in using web technologies and then packaging it as an Office Add-in for Mac.

    Additionally, you will need to develop a separate installer for macOS that can be used to install and register the add-in on Outlook for macOS. You can use the Microsoft Office Developer Tools for Visual Studio or the Yeoman generator for Office Add-ins to create the installer package.

    0 comments No comments