StyleCop SDK:如何获取源文档的项目名称
我正在使用 StyleCop SDK 编写自定义规则。我需要获取已检查元素所在的 Visual Studio 项目的名称。有什么办法可以得到这个吗?
element.Document.SourceCode.Project 未给出项目名称。
谢谢,
马杜
I am writing custom rules using StyleCop SDK. I need to get the name of visual studio project where the checked element resides. Is there any way to get this?
element.Document.SourceCode.Project does not give the project name.
Thanks,
Madhu
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我得到了解决方案。
字符串projectLocation = element.Document.SourceCode.Project.Location;
字符串projectName = Path.GetFileNameWithoutExtension(projectLocation).Trim();
谢谢,
马杜
I got the solution.
string projectLocation = element.Document.SourceCode.Project.Location;
string projectName = Path.GetFileNameWithoutExtension(projectLocation).Trim();
Thanks,
Madhu