Bingjie Han
Bingjie Han

Reputation: 306

deploy VSTO into one single Installer

I have deployed a VSTO application by using ClickOnce and I got this:

publish folder of ClickOnce

This installer works real fine.

However, what I really want is one single installer, like a single .exe file or a single .msi file, so that it would be much convinenet to distribute.

I guess I have to pack all the dll, xml, vsto and exe into one single installer. Does anyone know how to do this?

Thanks in advance to anyone who has taken time to look at my problem!

Upvotes: 3

Views: 930

Answers (1)

PetLahev
PetLahev

Reputation: 688

Check this https://github.com/bovender/VstoAddinInstaller A few years ago I wrote a few installers for VSTO projects via Inno Setup. There are also other players like (all paid) Advanced Installer, InstallShield and probably many others. There is also VS installer but I've never used it (but still should be possible)

Upvotes: 3

Related Questions