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),
|
|
|
|
|
typeof(ForceHealing)
|
2020-01-31 22:38:56 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|