Projects Interface
Represents all of the projects of a given kind.
Namespace: EnvDTE
Assembly: EnvDTE (in envdte.dll)
Assembly: EnvDTE (in envdte.dll)
The Projects collection represents all projects of the same kind in the current instance of the integrated development environment (IDE). Typically, this collection is late-bound to the DTE object.
Sub ProjectsExample() ' Before running, be sure you have one or more projects ' loaded in the solution. Dim prj As Project Dim prjs As Projects Dim msg As String ' Go through all of the projects in the solution and display ' their names and types. prjs = DTE.Solution.Projects For Each prj In prjs msg += "NAME: " & prj.Name & "TYPE: " & prj.Kind & vbCr Next MsgBox(msg) End Sub