How to add filters to OpenCover tool to skip some of the classes in a namespace

Viewed 14722

How can I add filters to skip some of the classes in a namespace/assembly. For example: SYM.UI is the base assembly and i want to skip SYM.UI.ViewModels. Writing the below filter but it is including all of them and not fulfilling my request:

+[SYM.UI*]* -[SYM.UI.ViewModels*]*

Kindly help me correcting this?

2 Answers
Related