如何将文件夹添加到数据库项目?
我正在尝试向 Visual Studio 2008 中的数据库项目添加文件夹。我发现数据库项目没有实现完整的 EnvDTE.Project 接口。具体来说,ProjectItems 属性未实现,因此我无法执行此操作:
dbProj.ProjectItems.AddFolder("test")
有人知道解决方法吗?是否有其他 API 可用于扩展 Visual Studio?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有可用的 API。
我最终解析了项目文本文件并以这种方式添加了新文件夹。
There is no API available.
I ended up parsing the project text file and adding the new folders that way.