Ejemplo n.º 1
0
 protected IOption BuildReleaseLabel(IOptionCreator optionCreator)
 => optionCreator.SingleValue("b", "releaseLabel", "label", "Filters packages by a release label");
Ejemplo n.º 2
0
 protected IOption BuildRepositoryOption(IOptionCreator optionCreator)
 => optionCreator.SingleValue("p", "repositoryPath", "path", "Sets a manual repository path");
Ejemplo n.º 3
0
 protected IOption BuildDryRunOption(IOptionCreator optionCreator)
 => optionCreator.NoValue("r", "dryrun", "Dependencies must be checked but no changes to the local repository should be made; use it to check for changes without updating to latest versions");
Ejemplo n.º 4
0
 protected IOption BuildForceOption(IOptionCreator optionCreator)
 => optionCreator.NoValue("f", "force", "All dependencies must be deleted and reinstalled from scratch even if none changed since the last time");
Ejemplo n.º 5
0
 protected IOption BuildConfigurationOption(IOptionCreator optionCreator)
 => optionCreator.SingleValue("c", "configuration", "value", "Build configuration (debug or release). Default release. If a dependency doesn't include debug build release will be used");
Ejemplo n.º 6
0
 protected IOption BuildManifestOption(IOptionCreator optionCreator)
 => optionCreator.SingleValue("m", "manifest", "manifestFile", "The manifest file.");
Ejemplo n.º 7
0
 protected IOption BuildLocalOption(IOptionCreator optionCreator)
 => optionCreator.NoValue("l", "localOnly", "Use local repositories only.");