PMCCommand
PMCCommand copied to clipboard
CommandLine version no longer available and not compatible
Cannot get the version of CommandLine in this project from Nuget and it breaks the application. Update is needed in program.cs as follows:
private static void Main(string[] args)
{
var options = new CmdLineOptions();
var settings = new CommandLine.CommandLineParserSettings();
var parser = new CommandLine.CommandLineParser(settings);
if (parser.ParseArguments(args, options))
{
And packages.config
<package id="CommandLineParser" version="1.9.3.15" targetFramework="net452" />
That's the oldest version you can get from nuget right now.
When I get home from work I can add a pull request if that helps.