talha06
talha06

Reputation: 6466

How to distribute Microsoft Office addin?

I have developed a PowerPoint addin using Visual Studio. I need to share it with others. How can I share this addin to let others to use it?

Upvotes: 1

Views: 120

Answers (3)

Jamie Garroch - MVP
Jamie Garroch - MVP

Reputation: 2979

Use the Advanced Installer product to create your MSI installer:

http://www.advancedinstaller.com/

Upvotes: 2

virth
virth

Reputation: 66

If you need to share de source code with others, so they can edit the code, you should use Team Foundation Server or Github.

If you just want to distribute the addin, so others can reference and use it in their code the best way would be to create a nuget package

If you want distribut the builded package to install it on different computers you could use dropbox

Upvotes: 1

Related Questions