Reputation: 6466
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
Reputation: 318
Try ClickOnce or MSI installer - https://msdn.microsoft.com/en-us/library/bb386179.aspx
https://msdn.microsoft.com/en-us/library/ms973805.aspx
Upvotes: 0
Reputation: 2979
Use the Advanced Installer product to create your MSI installer:
http://www.advancedinstaller.com/
Upvotes: 2
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