added args using CommandLineParser

This commit is contained in:
irongut
2021-04-11 23:07:09 +01:00
parent 96bcb6d125
commit 43337cd72e
3 changed files with 40 additions and 13 deletions
@@ -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; }
}
}