diff --git a/Program.cs b/Program.cs index 70bfb22b..fa5a5381 100644 --- a/Program.cs +++ b/Program.cs @@ -9,13 +9,14 @@ await Host.CreateDefaultBuilder() [Command(Description = "Downloads SCP: SL assembly files.")] public class AppCommand { - [Option(Description = "Branch.")] - public string Branch { get; set; } = ContentDownloader.DEFAULT_BRANCH; - [Required] - [Option(Description = "Files to download.")] + [Option(Description = "Files to download.", LongName = "filesToDownload")] public string FilesToDownload { get; set; } = "Assembly-CSharp.dll"; + [Required] + [Option(Description = "Branch.", LongName = "branch")] + public string Branch { get; set; } = ContentDownloader.DEFAULT_BRANCH; + public async Task OnExecute(IConsole console) { try