How do you create a physical folder using DTE and have it added to the current path within a visual studio project? Ideally I’d like to be able to do this using PowerShell (through StudioShell). I would like to automate creating a directory structure that I use frequently.
Thanks!
How do you create a physical folder using DTE and have it added to
Share
Use foo.ProjectItems.AddFolder, where foo is your EnvDTE.Project or any other folder (EnvDTE.ProjectItem).