How to best combine build server/client coverage?
How to best combine build server/client coverage?
Hi NCover,
I use CruiseControl.Net/msbuild to launch ncover for buildserver coverage. And just recently, I've started using the explorer on my local machine.
To start with I needed to specify the same excluded assemblies in the explorer project as I've done directly in my msbuild script.
Is there a way to re-use the specified assemblies so I don't have to maintain two identical lists?
Thanks,
Anders, Denmark
RE: How to best combine build server/client coverage?
Hi Anders,
Unfortunately, the NCover config files aren't interchangeable between build scripts and Explorer projects.
I think the best you can do is copy the list of exclusions from the "ExcludeAssemblies=" element of your MSBuild script and paste it into the Runtime Excludes section of the Explorer Project Settings, which is still completely manual.
Sorry I don't have a better solution for you!
NCover Support