Files
tporadowski 86a63b3efc enhanced ReleasePackagingTool
- added command-line arguments parser
- support for "-n" that updates source file with new version
2020-01-26 11:39:38 +01:00

17 lines
436 B
C#

using CommandLine;
namespace ReleasePackagingTool
{
class CmdLineOptions
{
[Option('n', "new-version", HelpText = "Prepares new version")]
public string PrepareNewVersion { get; set; }
[Option('p', "root-path", HelpText = "Root path to project folder")]
public string RootPath { get; set; }
[Option('s', "skip-package", HelpText = "When true skips preparing the package")]
public bool SkipPackage { get; set; }
}
}