我想从 CruiseControl 构建后生成的 NCover 报告中排除 XSD 文件。
搜索后,我从Ncover 网站发现了以下选项
<ExcludeFiles><SourceFile>D:\castletech\operations\dev\ncover\resources\setting.cs</SourceFile></ExcludeFiles>
但是我不能把它放在 CC.NET 配置文件中。
我想从 CruiseControl 构建后生成的 NCover 报告中排除 XSD 文件。
搜索后,我从Ncover 网站发现了以下选项
<ExcludeFiles><SourceFile>D:\castletech\operations\dev\ncover\resources\setting.cs</SourceFile></ExcludeFiles>
但是我不能把它放在 CC.NET 配置文件中。
It seems all this can be done from the command line, see //exclude-*
attributes. So, it could be solved by feeding correct command line to ncover task in CC.NET. I didn't try it myself, though.