views:

95

answers:

1

I'm trying to add a folder to a database project in visual studio 2008. I've found out that database projects don't implement the full EnvDTE.Project interface. Specifically the ProjectItems property is not implemented so I can't do this:

dbProj.ProjectItems.AddFolder("test")

Does anyone know of a workaround? Is there another API available for extending visual studio?

A: 

There is no API available.

I ended up parsing the project text file and adding the new folders that way.

Seth Reno