varinteractiveOption=newOption<bool>(new[]{"-i","--interactive"},"Use an interactive mode. This will ignore all other options.");
varinteractiveOption=newOption<bool>(new[]{"-i","--interactive"},"Use an interactive mode. This will ignore all other options.");
varfileOption=newOption<FileInfo>(new[]{"-f","--file"},"The file path to the raw mod that should be ported. *REQUIRED*");
varfileOption=newOption<FileInfo>(new[]{"-f","--file"},"The file path to the raw mod that should be ported. *REQUIRED IN NON-INTERACTIVE*");
varlinuxOption=newOption<FileInfo>(new[]{"-l","--linux"},"The output file path for the Linux mod. None given equals to no Linux port.");
varlinuxOption=newOption<FileInfo>(new[]{"-l","--linux"},"The output file path for the Linux mod. None given equals to no Linux port.");
varandroidOption=newOption<FileInfo>(new[]{"-a","--android"},"The output file path for the Android mod. None given equals to no Android port.");
varandroidOption=newOption<FileInfo>(new[]{"-a","--android"},"The output file path for the Android mod. None given equals to no Android port.");
varmacOption=newOption<FileInfo>(new[]{"-m","--mac"},"The output file path for the Mac mod. None given equals to no Mac port.");
varmacOption=newOption<FileInfo>(new[]{"-m","--mac"},"The output file path for the Mac mod. None given equals to no Mac port.");
varnameOption=newOption<string>(new[]{"-n","--name"},"The name used for the Mac or Android mod. Required for the Mac option, and optional for the Android version. Has no effect on anything else.");
varnameOption=newOption<string>(new[]{"-n","--name"},"The name used for the Mac or Android mod. Required for the Mac option, and optional for the Android version. Has no effect on anything else.");
varinternetOption=newOption<bool>(new[]{"-w","--internet"},"Add internet usage permissions to the Android mod. Has no effect to other OS.");
varinternetOption=newOption<bool>(new[]{"-w","--internet"},"Add internet usage permissions to the Android mod. Has no effect to other OS.");
varverboseOption=newOption<bool>(new[]{"-v","--verbose"},"Whether to show verbose output.");
RootCommandrootCommand=newRootCommand
RootCommandrootCommand=newRootCommand("A utility to port Windows AM2R Mods to other operating systems.")