I’m currently developing a visual studio add-in, however when I close visual studio and shutdown my machine and come back the next day, I cannot build the add-in because it is currently loaded in visual studio. How do i fix this problem so I don’t have to manually remove delete and reinstall the add-in every time I wish to debug or change my add-in?
I’m currently developing a visual studio add-in, however when I close visual studio and
Share
AddIns are usually loaded by .AddIn file which is placed in one of these locations
C:\Documents and Settings\All Users\Application Data\Microsoft\MSEnvShared\Addins\ C:\Documents and Settings\Computer.User\My Documents\Visual Studio 2008\Addins
So when I do AddIn development, I start Visual Studio with special .bat file. I also use the AddIn when working on other projects, so there are additional complications. Here is an example of the file I use:
I also do this on Prebuilt event in AddIn project:
Also you could look into Visual Studio command line parameter /rootsuffix , but I wasn’t able to find a solution around that.