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?