mirror of
https://github.com/irongut/CodeCoverageSummary.git
synced 2026-05-16 23:10:13 +02:00
added args using CommandLineParser
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
using CommandLine;
|
||||
|
||||
namespace CodeCoverageSummary
|
||||
{
|
||||
public class CommandLineOptions
|
||||
{
|
||||
[Value(index: 0, Required = true, HelpText = "Code coverage file to analyse.")]
|
||||
public string Filename { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user