0
0
mirror of https://github.com/sp-tarkov/assembly-tool.git synced 2025-02-12 16:50:44 -05:00

make description a little clearer on whats required

This commit is contained in:
CWX 2024-08-11 11:34:29 +01:00
parent ea7b39363e
commit d25aacaf29

View File

@ -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)