Command line options for AltCover Runner
Usage
using Altcover;
Abstract.ICollectOptions collect = ...
or
using static Altcover.Abstract;
ICollectOptions collect = ...
public interface ICollectOptions
name | description |
---|---|
Cobertura { get; } | Corresponds to command line option -c, --cobertura=VALUE |
CommandLine { get; } | Corresponds to the command line arguments for the executable, given after a -- |
Executable { get; } | Corresponds to command line option -x, --executable=VALUE |
ExposeReturnCode { get; } | Corresponds to the converse of command line option --dropReturnCode |
LcovReport { get; } | Corresponds to command line option -l, --lcovReport=VALUE |
OutputFile { get; } | Corresponds to command line option -o, --outputFile=VALUE |
Packages { get; } | Corresponds to command line option -p, --package=VALUE |
RecorderDirectory { get; } | Corresponds to command line option -r, --recorderDirectory=VALUE |
SummaryFormat { get; } | Corresponds to command line option --teamcity[=VALUE] |
Threshold { get; } | Corresponds to command line option -t, --threshold=VALUE |
Verbosity { get; } | Corresponds to command line option -q |
WorkingDirectory { get; } | Corresponds to command line option -w, --workingDirectory=VALUE |