I'm in the process of learning how to create add-ins for Microsoft Office Word. I've created a simple Word 2010 Add-In project in Visual Studio 2010 which displays "Hello World" in a message box. Up to this point everything works fine. But if I want to change the message for instance from "Hello World" to "Hi" i get the following error message
System.Deployment.Application.DeploymentException: Unable to install this application because an application with the same identity is already installed. To install this application, either modify the manifest version for this application or uninstall the preexisting application.
After installing the add-in I do the following:
- Remove the add-in from Ms Word Options,Add-Ins
- Uninstall the add-in from Add Remove Programs
- Delete the Normal.dot file
- Delete the .vsto in my bin/Debug folder of the project
Once I re-run the project I get the error above. I really don't know where else can this plug in exist as I think I delete all possible places where any references to it could be found.
I've also tried running RegScanner and deleting all the registry entries pertaining to the add in,yet im getting the same error...
If anyone had this issue before and you know exactly how to solve it and what could be causing it please let me know!