0

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.

sll
  • 61,540
  • 22
  • 104
  • 156

1 Answers1

1

You should just be able to add a --exclude for each assembly/namespace combination

i.e. --exclude [Assembly*]Namespace1.* --exclude [Assembly*]Namespace2.*

Shaun Wilde
  • 8,228
  • 4
  • 36
  • 56
  • Just managed to do it, the problem was that I've used semicolon symbol to separate namespaces and a slightly wrong mask, shame to me :( Anyway thanks! – sll Jun 30 '11 at 15:48
  • If you downloaded PartCover with the installer then it should have an RTF manual which describes the commandline – Shaun Wilde Jun 30 '11 at 19:58