As of dotCover 2.0, there is support for attribute filters. This basically allows you to exclude any code marked with a certain filter from your coverage report. There is okay documentation out there for this usage, notably on the TeamCity documentation where they cover integration with dotCover.
The basic syntax used there is -:myAttributeName or -:module=myModuleName;myAttributeName to exclude an attribute or an attribute within a module respectively.
This doesn't work when passed to the dotCover console runner. The coverage report still shows the excluded code.
Does dotCover support the attribute filter in its console (I assume so since TeamCity basically just passes the arguments through to the console runner) and is there a known syntax that works for it?