Questions tagged [envdte]

EnvDTE is an assembly-wrapped COM library containing the objects and members for Visual Studio core automation.

The MSDN Documentation for EnvDTE says

EnvDTE is an assembly-wrapped COM library containing the objects and members for Visual Studio core automation.

572 questions
-3
votes
2 answers

How to write unit test for the following method?

public List GetActiveProjects() { foreach (Project project in _applicationObject.DTE.Solution.Projects) { if (project.FullName.EndsWith(".csproj")) projects.Add(new TempProject(project)); } return…
1 2 3
38
39