StyleCop SDK:如何获取源文档的项目名称

发布于 2024-10-09 16:40:11 字数 158 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

述情 2024-10-16 16:40:11

我得到了解决方案。

字符串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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文