varinputAssemblyFileName=app.Argument("Assembly filename name","The assembly that is being decompiled. This argument is mandatory.");
varprojectOption=app.Option("-p|--project","Decompile assembly as compilable project. This requires the output directory option.",CommandOptionType.NoValue);
varoutputOption=app.Option("-o|--outputdir <directory>","The output directory, if omitted decompiler output is written to standard out.",CommandOptionType.SingleValue);
vartypeOption=app.Option("-t|--type <type-name>","The FQN of the type to decompile.",CommandOptionType.SingleValue);
vartypeOption=app.Option("-t|--type <type-name>","The fully qualified name of the type to decompile.",CommandOptionType.SingleValue);
varlistOption=app.Option("-l|--list <entity-type(s)>","Lists all entities of the specified type(s). Valid types: c(lass), i(interface), s(truct), d(elegate), e(num)",CommandOptionType.MultipleValue);
app.ExtendedHelpText=Environment.NewLine+"-o is valid with every option and required when using -p.";