_Solution::AddIns Property
Visual Studio 2015
Gets an AddIns collection, which contains all currently available add-ins associated with the solution.
Assembly: EnvDTE (in EnvDTE.dll)
Only registered Add-ins appear in the Addins collection, and they load and unload when the solution loads and unloads.
Sub AddinsExample() ' Open a solution before running this example. Dim soln As Solution ' Create a reference to the solution. soln = DTE.Solution ' List number of Add-ins. MsgBox(soln.AddIns.Count) End Sub
Show: