0

I'm writing a Visual Studio extension.

Given a particular project (an IVsHierarchy as returned by VsShellUtilities.GetProject), how can I open the 'project properties' window for that project?

Colonel Panic
  • 132,665
  • 89
  • 401
  • 465

1 Answers1

0

The easiest way would be to select that project in the Solution Explorer, get the EnvDTE.DTE instance and then call DTE.ExecuteCommand("Project.Properties")

Carlos Quintero
  • 4,300
  • 1
  • 11
  • 18