Sha256: 1e454ab3cf5d066a2203c58627784338b43dc7a7fb3ef802dcb3d99d29457e23
Contents?: true
Size: 839 Bytes
Versions: 17
Compression:
Stored size: 839 Bytes
Contents
using System.Collections.Generic; using CommandLine; namespace Generators { public class Options { [Option('e', "exercises", Required = false, HelpText = "Exercises to generate (if not specified, defaults to all exercises).")] public IEnumerable<string> Exercises { get; set; } [Option('d', "canonicaldatadirectory", Required = false, Default = "./.problem-specifications", HelpText = "Canonical data directory. If the directory does not exist, the canonical data will be downloaded.")] public string CanonicalDataDirectory { get; set; } [Option('c', "cachecanonicaldata", Required = false, Default = false, HelpText = "Use the cached canonical data and don't update the data.")] public bool CacheCanonicalData { get; set; } } }
Version data entries
17 entries across 17 versions & 1 rubygems