CoberturaConverter

    Build Status
    Built with Nuke
    NuGet MyGet

    Changelog
    Documentation

    This package aims to provide conversion of code coverage reports to the Cobertura format. Currently, it supports OpenCover and dotCover source formats. It can be either directly used via the CoberturaConverter NuGet package, as Dangl.Nuke.CoberturaConverter for the NUKE Build system or as command line tool via CoberturaConverter.CommandLine.

    This project is based on Daniel Palmes OpenCoverToCobertura Converter, which is licensed under the Apache License.

    Referencing

    If this is used in full .Net framework 4.6.1 and earlier, please add a reference to

    <PackageReference Include="System.ValueTuple" Version="4.4.0" />
    

    CI Builds

    All builds are available on MyGet:

    https://www.myget.org/F/dangl/api/v2
    https://www.myget.org/F/dangl/api/v3/index.json
    

    CLI Usage

    You can use the converter from the command line, it is available in the CoberturaConverter.CommandLine NuGet package under /tools both for net471 and netcoreapp2.0.

    CoberturaConverter.CommandLine.exe -i <InputFile> -o <OutputFile> -s <DotCover | OpenCover>
    
    Parameter Description
    -i Path to the input file
    -o Path where to save the converted report to
    -s Source report format, can be either DotCover or OpenCover
    --help Display options

    NUKE Example

    The package is available as Dangl.Nuke.CoberturaConverter.

    using static Nuke.CoberturaConverter.CoberturaConverterTasks;
    
    await DotCoverToCobertura(s => s
        .SetInputFile(OutputDirectory / "coverage.xml")
        .SetOutputFile(OutputDirectory / "cobertura_coverage.xml"));
    

    License

    • Improve this Doc
    Back to top © Dangl IT - Georg Dangl