NCover repository

NCover repository

Is there an NCover repository or isn't it possible to contribute through a public repository?


Re: Having trouble using multiple exclusion attributes

Jeff,

Sorry about that - it is a bug in the construction of the settings file passed to NCover by the MSBuild task. the MSBuild task does this:

<ExclusionAttributes>CoverageExcludeAttribute;CoverageExclude2Attribute</ExclusionAttributes>

but NCover wants this:
  <ExclusionAttributes>CoverageExcludeAttribute</ExclusionAttributes>
  <ExclusionAttributes>CoverageExclude2Attribute</ExclusionAttributes>

I will push a new build up to my website shortly - look for 1.3.6.12 of NCoverExplorer.Extras. Thanks for reporting the issue.


Re: Having trouble using multiple exclusion attributes

Thanks a lot, works like a charm now!