Partcover:通过命令行排除多个命名空间
我正在使用 Partcover 生成代码覆盖率统计信息,并希望使用命令行参数 --exclude 排除多个命名空间。
我无法指定要排除的多个命名空间,有人可以建议如何执行此操作吗?显然,单个名称空间掩码运行良好。
I'm using Partcover to generate code coverage statistic and want to exclude multiple namespaces using commandline parameter --exclude.
I can't manage to specify multiple namespaces to be excluded, could anyone suggest how to do it? Obviously single namespace mask working well.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够为每个程序集/命名空间组合添加 --exclude
,即 --exclude [Assembly*]Namespace1.* --exclude [Assembly*]Namespace2.*
You should just be able to add a --exclude for each assembly/namespace combination
i.e. --exclude [Assembly*]Namespace1.* --exclude [Assembly*]Namespace2.*