Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

EnvDTE substitute in Visual Studio 2012

Tags:

Until now, I have been successfully using EnvDTE to manage Visual Studio Toolbox.

There are customized DLLs to deal with different Visual Studio versions:

EnvDTE.dll - common VS automation (probably works on all versions)

EnvDTE80.dll - to deal with VS 2005

EnvDTE90.dll - to deal with VS 2008

EnvDTE100.dll - to deal with VS 2010

However, there is no EnvDTE110 for VS 2012. Does that mean these is different way of VS automation than using these COM wrapper libraries?

If so, how to for example work with VS 2012 projects and Toolbox remotely other way than using EnvDTE ?