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?
|
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. |
|||
|
|
|
You can set the behavior of the addin and how it loads, I'd set it to 'load on demand' which I'm currently trying to find you some information on. I can't find anything official but if you go to the Setup project, right click and select "View Registry" it'll show you all the registry keys that are created. Navigate down to the level for your addin and change the 'LoadBehavior' from '3' to '2'. From then on you should be able to load your add-in using the Addin Manager. I'll try and update with more information when I can get it, hope it helps. |
|||||
|
|
This is what worked for me: |
|||
|
|