How to add reference to EnvDTE project?

Posted by user46503 on Stack Overflow See other posts from Stack Overflow or by user46503
Published on 2010-05-18T19:08:20Z Indexed on 2010/05/18 19:10 UTC
Read the original article Hit count: 635

Filed under:
|
|

Hello, I have the project getting using DTE with C++:

pSolution->get_Projects(&pProjects);
CComPtr<EnvDTE::Project> pProject;
pProjects->get_Items(1, &pProject);

Then I need to add reference to this project. How to do that? As far as I know VsLangProj namespace is not accessible for C++ code. Thanks

© Stack Overflow or respective owner

Related posts about c++

Related posts about envdte