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?
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?
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")