I have created a add-in in visual studio 2010 that will run on the c# project to analyze the code. This add-in references many other assembly also.
Now, i want to create a setup project so that i can install add-in in other machine and test it. For that i have created a new Visual Studio Installer -> Setup Project. I have created a project in such a way that setup will create a separate folder in"Programe Files" and place all the .dll and other files that are required for add-in. And setup will place a .AddIn file in "Documents\Visual Studio 2010\Addins".
Now the problem is after installing this plug-in, it will not run because it will not found the required .dll specified in .AddIn file. So, i want to change that path in .AddIn at runtime during installation.
I searched for that in google but not found any solution.
So, can anyone pls help me out in this issue.