From d25aacaf29b21a7d0340c425c2225f18de90f930 Mon Sep 17 00:00:00 2001 From: CWX Date: Sun, 11 Aug 2024 11:34:29 +0100 Subject: [PATCH] make description a little clearer on whats required --- ReCodeItCLI/Commands/Dumper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReCodeItCLI/Commands/Dumper.cs b/ReCodeItCLI/Commands/Dumper.cs index bf8fb61..c3c498b 100644 --- a/ReCodeItCLI/Commands/Dumper.cs +++ b/ReCodeItCLI/Commands/Dumper.cs @@ -9,7 +9,7 @@ namespace ReCodeIt.Commands; [Command("Dumper", Description = "Generates a dumper zip")] public class Dumper : ICommand { - [CommandParameter(0, IsRequired = true, Description = "The absolute path to your Managed folder for EFT, folder must contain all references to be resolved.")] + [CommandParameter(0, IsRequired = true, Description = "The absolute path to your Managed folder for EFT, folder must contain all references to be resolved. Assembly-CSharp-cleaned.dll, mscorlib.dll, FilesChecker.dll")] public string ManagedDirectory { get; init; } public ValueTask ExecuteAsync(IConsole console)