2020-01-31 22:38:56 +00:00
|
|
|
|
using System;
|
2020-07-02 04:50:30 +00:00
|
|
|
|
using Markdig.Syntax.Inlines;
|
2020-01-31 22:38:56 +00:00
|
|
|
|
using Wabbajack.CLI.Verbs;
|
|
|
|
|
|
|
|
|
|
namespace Wabbajack.CLI
|
|
|
|
|
{
|
|
|
|
|
public class OptionsDefinition
|
|
|
|
|
{
|
2020-02-11 05:04:56 +00:00
|
|
|
|
public static readonly Type[] AllOptions = {
|
|
|
|
|
typeof(OptionsDefinition),
|
|
|
|
|
typeof(Encrypt),
|
|
|
|
|
typeof(Decrypt),
|
|
|
|
|
typeof(Validate),
|
|
|
|
|
typeof(DownloadUrl),
|
|
|
|
|
typeof(UpdateModlists),
|
2020-02-19 14:49:06 +00:00
|
|
|
|
typeof(UpdateNexusCache),
|
2020-02-25 23:10:41 +00:00
|
|
|
|
typeof(ChangeDownload),
|
2020-03-02 23:16:15 +00:00
|
|
|
|
typeof(ServerLog),
|
|
|
|
|
typeof(MyFiles),
|
2020-04-06 18:26:09 +00:00
|
|
|
|
typeof(DeleteFile),
|
2020-04-08 19:56:53 +00:00
|
|
|
|
typeof(Changelog),
|
2020-05-02 20:15:36 +00:00
|
|
|
|
typeof(FindSimilar),
|
2020-05-04 23:03:50 +00:00
|
|
|
|
typeof(BSADump),
|
2020-06-20 22:51:47 +00:00
|
|
|
|
typeof(MigrateGameFolderFiles),
|
2020-07-02 04:50:30 +00:00
|
|
|
|
typeof(HashFile),
|
2020-07-08 20:48:48 +00:00
|
|
|
|
typeof(InlinedFileReport),
|
|
|
|
|
typeof(ExtractBSA),
|
2020-07-13 22:10:05 +00:00
|
|
|
|
typeof(PurgeNexusCache),
|
2020-08-05 00:34:09 +00:00
|
|
|
|
typeof(ForceHealing),
|
|
|
|
|
typeof(HashVariants),
|
2020-08-06 22:40:07 +00:00
|
|
|
|
typeof(ParseMeta),
|
2020-08-12 04:25:12 +00:00
|
|
|
|
typeof(NoPatch),
|
2020-11-03 01:55:54 +00:00
|
|
|
|
typeof(NexusPermissions),
|
|
|
|
|
typeof(ExportServerGameFiles),
|
2020-11-09 00:41:17 +00:00
|
|
|
|
typeof(HashGamefiles),
|
|
|
|
|
typeof(Backup),
|
2020-12-09 21:46:08 +00:00
|
|
|
|
typeof(Restore),
|
2020-12-31 06:44:42 +00:00
|
|
|
|
typeof(PurgeArchive),
|
|
|
|
|
typeof(AllKnownDownloadStates),
|
2021-01-11 02:08:14 +00:00
|
|
|
|
typeof(VerifyAllDownloads),
|
2021-02-17 05:46:05 +00:00
|
|
|
|
typeof(HashBenchmark),
|
2021-05-13 19:41:33 +00:00
|
|
|
|
typeof(StressTestURL),
|
2021-06-27 20:35:11 +00:00
|
|
|
|
typeof(MirrorFolder),
|
|
|
|
|
typeof(DownloadFromMeta)
|
2020-01-31 22:38:56 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|