PMCCommand icon indicating copy to clipboard operation
PMCCommand copied to clipboard

CommandLine version no longer available and not compatible

Open jfrancis2 opened this issue 5 years ago • 0 comments

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.

jfrancis2 avatar Jun 21 '19 08:06 jfrancis2