我正在尝试将 NCover 2 集成到 TeamCity 5.0.1 中,并且由于项目中有一些不受我控制的文件,因此我想从 NCover 统计信息中排除这些文件。
在 TeamCity 构建运行程序设置中,我有一个“附加 NCover 参数”选项,通过查看描述 NCover 参数的页面,我在此框中添加了以下内容:
//exclude-types "Markdown;Settings;Resources"
运行 teamcity 构建步骤时,我在日志中收到此错误,并且构建失败:
NCover has determined that one of the paths in the
//h or //w commands ends with a backslash (\).
Please remove or escape the backslash and run NCover again.
如果我删除此设置,错误就会消失。
有没有人像这样配置 TeamCity 和 NCover 2 并且可以发现我的错误?