Skip to content

Instantly share code, notes, and snippets.

@gshutler
Created April 13, 2012 13:07
Show Gist options
  • Save gshutler/2376749 to your computer and use it in GitHub Desktop.
Save gshutler/2376749 to your computer and use it in GitHub Desktop.
var optionSet = new OptionSet
{
{"p|password=", "The password for each certificate", x => password = x},
{"f|format=", "The string format for certificate names", x => format = x}
};
var outputPath = optionSet.Parse(args).FirstOrDefault();
// Vessl e:\Export
// Vessl --password=foobar e:\Export
// Vessl --password=foobar --format=xml e:\Export
// Vessl -p foobar -f xml e:\Export
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment