You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Option('e', "exercise", Required = false, HelpText = "The exercise to generate.")]
public string? Exercise { get; set; }
[Option('d', "dir", Required = false, HelpText = "The directory of the problem-specifications repo. If the not specified, the repo will be downloaded.")]
public string ProbSpecsDir { get; set; } = Path.Combine("..", ".problem-specifications");
public string PracticeExercisesDir = Path.Combine("..", "exercises", "practice");
public static ParserResult<Options> Parse(string[] args) => Parser.Default.ParseArguments<Options>(args);