|
@@ -9,15 +9,12 @@ namespace ArcToolkitCLI.Commands
|
|
[Verb("convert", HelpText = "Convert between common data types")]
|
|
[Verb("convert", HelpText = "Convert between common data types")]
|
|
public class ConvertCommand : ICommand
|
|
public class ConvertCommand : ICommand
|
|
{
|
|
{
|
|
- [Value(0, Default = new string[0])]
|
|
|
|
- public IEnumerable<string> SubArgs { get; set; }
|
|
|
|
-
|
|
|
|
public int Run()
|
|
public int Run()
|
|
{
|
|
{
|
|
var commandTypes = typeof(ConvertCommand).Assembly.GetTypes()
|
|
var commandTypes = typeof(ConvertCommand).Assembly.GetTypes()
|
|
.Where(t => !t.IsInterface && !t.IsAbstract && typeof(IConverterCommand).IsAssignableFrom(t)).ToArray();
|
|
.Where(t => !t.IsInterface && !t.IsAbstract && typeof(IConverterCommand).IsAssignableFrom(t)).ToArray();
|
|
|
|
|
|
- return Parser.Default.ParseArguments(SubArgs, commandTypes)
|
|
|
|
|
|
+ return new Parser(with => with.IgnoreUnknownArguments = true).ParseArguments(Environment.GetCommandLineArgs().Skip(2), commandTypes)
|
|
.MapResult((object t) => ((IConverterCommand)t).Run(), errs => 1);
|
|
.MapResult((object t) => ((IConverterCommand)t).Run(), errs => 1);
|
|
}
|
|
}
|
|
}
|
|
}
|