用于枚举源文件的插件
我被要求开发一个插件,它通过 C# 解决方案并从源文件中提取所有文档并将它们导出到 HTML 文件。我们不能使用普通的文档生成器,因为导出需要采用特定的格式。
我知道如何创建基本插件,但不知道如何枚举源文件。
关于如何开始这个项目有什么想法/资源吗?
谢谢。
I've been asked to develop an addin that goes through a C# solution and extracts all the documentation from the source files and export them to an HTML file. We can't use normal document generators since the export needs to be in a specific format.
I know how to create a basic addin but have no clue as to how to go about enumerating through the source files.
Any ideas/resources on how to go about starting this project?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是我用来搜索以给定
字符串
结尾的文件的一些代码。该结构类似于 Visual Studio 中的解决方案资源管理器:
无论您的代码在何处执行,您都可以提取解决方案中的项目,然后提取这些项目中的项目项。
asdasd
我不知道这是否是执行此操作的最佳方法,但它应该有效。鉴于上面的代码,您可以将其更改为执行
File.Open()
并读取内容或类似的内容。Here is some code I'm using to search for a file that ends with a given
string
.The structure is like the Solution Explorer in Visual Studio:
Wherever your code is executing, you can pull up the Projects in the Solution, and then the ProjectItems in those Projects.
asdasd
I don't know if this is the most optimal way to do this, but it should work. Given the code above you can change it to do a
File.Open()
and read the contents or something similar.