Using Professional Edition of Visual Studio 8 I use the following interfaces:
EnvDTE80::DTE2
EnvDTE::Window
EnvDTE::_Solution
EnvDTE::Project
EnvDTE::Properties
EnvDTE::Debugger
EnvDTE::Events
EnvDTE::_DTEEvents
EnvDTE::Breakpoints
EnvDTE::Documents
EnvDTE::Document
Accessed via VisualStudio.DTE.8.0
and imported thru:
// EnvDTE
#import "libid:80cc9f66-e7d8-4ddd-85b6-d9e6cd0e93e2" version("8.0") lcid("0") raw_interfaces_only
// EnvDTE80
#import "libid:1A31287A-4D7D-413e-8E32-3B374931BD89" version("8.0") lcid("0") raw_interfaces_only
Are these available with the Express Edition
Thanx

Does Express support the EnvDTE COM interfaces
Hiral
In a Webcast about Visual Studio extensibility that I watched last Spring, the speaker said that Automation and Extensibility are not supported with the Express Editions. The feature comparison table confirms this.
The Visual Studio Extensibility Center and the MSDN Visual Studio Extensibility Forum have more information.
- Dennis
shakalama
I'd just about come to that conclusion, and I have looked thru these pages and many others.
Although I note that HKEY_CLASSES_ROOT\VCExpress.DTE CLSID is partially registered and
C:\Program Files\Common Files\Microsoft Shared\MSEnv\dte80a.olb is installed with express.
Thanx