Reputation: 3050
I have created a VSTO Excel Addin and deployed it via Visual Studio Installer. Now I want to update the deployed addin. I have tried to change Product code, Upgrade code & version in Project Properties of Visual Studio Installer Project but it does not update the installation. How i can update the installation ?
Upvotes: 1
Views: 310
Reputation: 10993
You must not change the upgrade code, that will break your upgrade process.
You must increase the version and change the product code for a major upgrade. Read the linked MSDN article for more details.
Upvotes: 1