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

时间:2010-12-24 11:35:46

标签: stylecop

我正在使用StyleCop SDK编写自定义规则。我需要获取checked元素所在的visual studio项目的名称。有没有办法得到这个?

element.Document.SourceCode.Project不提供项目名称。

谢谢,

马杜

1 个答案:

答案 0 :(得分:2)

我得到了解决方案。

string projectLocation = element.Document.SourceCode.Project.Location;

string projectName = Path.GetFileNameWithoutExtension(projectLocation).Trim();

谢谢,

马杜