I'm running VS2010 on Windows 7.
I've been creating an Add In following the MZTools articles and I've run into a problem. The ext_ConnectMode.ext_cm_UISetup is being sent to the OnConnection method of my AddIn every time VS loads. I amnot running in the debugger so /resetaddin <MyAddIn>.Connect is not getting called.
I figured I must've nubbed something up in my code so I created a brand new AddIn solution, and added a MessageBox.Show in the OnConnect when I receive ext_ConnectMode.ext_cm_UISetup. It is getting called everytime Visual Studio loads. The load settings in the .AddIn file are:
<LoadBehavior>1</LoadBehavior><CommandPreload>1</CommandPreload>
<CommandLineSafe>0</CommandLineSafe>
The .AddIn file is located in my \Documents\Visual Studio 2010\Addins folder.
What am I missing? Is there a way to properly install the AddIn? From what I've read, installing the AddIn is just having the .AddIn file in said folder and having it point to the AddIn's DLL.
I'm stumped...