如何在opencover中按多个类名进行过滤,并在bat文件中使用报告生成器
有必要只接收命名空间中的那些类
.AutomapperConfigurators.或ProjectName.BL.ServiceInteraction.*
露天
-filter:"+.AutomapperConfigurators.;+ProjectName.BL.ServiceInteraction*
用于报表生成器
-类过滤器:"+.AutomapperConfigurators.;+ProjectName.BL.ServiceInteraction]*
它不起作用
对于opencover,您需要正确使用过滤器。
对于给定的例子,你的过滤器可能看起来像这个
-filter:"+[*]*.AutomapperConfigurators.* +[*]ProjectName.BL.ServiceInteraction.*"
一旦opencover过滤器正确,就不需要应用[m]任何reportgenerator过滤器。