Cover3 Report - aegoroff/msbuildteamcitytasks GitHub Wiki

Manually configures .NET coverage processing using NCover 3 tool.

Introduction

Since TeamCity 5.1 you can alternatively configure .NET coverage processing by means of service messages. This can be helpful, if you use a runner different from MSBuild, NAnt or Visual Studio (sln) runner, for example, Rake runner, or if you run NUnit tests via test launcher other than TeamCity NUnit Test Launcher. This task helps you to configure .NET coverage processing using NCover 3 tool. See http://confluence.jetbrains.net/display/TCD5/Manually+Configuring+Reporting+Coverage

Details

Configures .NET coverage processing using NCover3 tool

    <NCover3Report
           ToolPath="C:\Program Files\NCover3"
           XmlReportPath="D:\project\ncover3.xml"
    />

Configures .NET coverage processing using NCover3 tool and specifying arguments for NCover report generator

    <NCover3Report
           ToolPath="C:\Program Files\NCover3"
           XmlReportPath="D:\project\ncover3.xml"
           Arguments="FullCoverageReport:Html:{teamcity.report.path}"
    />