using System.Collections.Generic; using HeuristicLab.CommandLineInterface; namespace HeuristicLab { [Command(Description = "To build a .hl file.")] class BuildCommand : ICommand { [Option(Shortcut = "o", Required = true, Description = "Sets the output filename.")] public string Output { get; set; } [Value(0)] public string Input { get; set; } public void Execute() { HeuristicLab.DefinitionLanguage.Parser.Parse(Input, Output); } } }