好的,那么让我们假设我想按照规则生活,像对待生产代码一样小心对待你的测试代码。如何让 Sonar 和 Stylecop 分析我的测试项目?
我基本上已经在我的 sonar-project.properties 文件中写了这个:
#Core C# Settings
sonar.dotnet.visualstudio.solution.file=SomeSolution.sln
sonar.dotnet.excludeGeneratedCode=true
sonar.dotnet.version=4.0
sonar.donet.visualstudio.testProjectPattern=*.Tests
#StyleCop
sonar.stylecop.mode=
阅读声纳构建日志,我看到除了测试(即 SomeTestProject.Tests)项目之外的所有项目都由 Stylecop 分析。
我怎样才能让 sonar+stylecop 也分析我的测试项目?