I'm writing a simply c# add-in in VS2015 for Outlook 2016. My project has an AssemblyInfo.cs file and I update the AssemblyVersion and AssemblyFileVersion in there before building the project. This updates the version of the .dll file which is built, but the version number of the VSTO itself remains at 1.0.0.0. This means that when I try to install a new version of the VSTO, I'm told that I already have the latest version. I have to uninstall my add-in from Add/Remove Programs (where it shows as v1.0.0.0) before I can re-install a later build on my add-in.
How do I update the version number of the actual VSTO please? Ideally would be nice for all three version numbers (DLL Assembly and File as well as VSTO) to stay in synch and increment each time I produce a new build. I've done lots of hunting around and googling but cannot find the answer.
Thanks, Tony