I am building a Visual Studio extension and I am stumped on how I would show a dialog when visual studio is started.
The main use for it is going to be when Visual studio starts my extension will check for updates if an update is found a dialog appears.
Information on extensions is very scarce so I have no idea how to do this. I am using C#.
Edit: I have tried adding the code in the package file that has all of the command code/callbacks into it's initialize event and it shows the dialog before visual studio appears to have even loaded and does not continue to load until I close it. I feel like I am getting closer though.
Is their an extension start up command I can create in VSCT file, kind of like they have for menu items?