From 93ad40d2182b12376003a9cdf8fc56065ace498e Mon Sep 17 00:00:00 2001 From: de4dot Date: Sat, 5 Nov 2011 08:43:40 +0100 Subject: [PATCH] Rename --asmpath option to --asm-path --- de4dot.code/CommandLineParser.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/de4dot.code/CommandLineParser.cs b/de4dot.code/CommandLineParser.cs index 8b62e3c9..882fa418 100644 --- a/de4dot.code/CommandLineParser.cs +++ b/de4dot.code/CommandLineParser.cs @@ -112,7 +112,7 @@ namespace de4dot { miscOptions.Add(new NoArgOption("d", null, "Detect obfuscators and exit", () => { filesOptions.DetectObfuscators = true; })); - miscOptions.Add(new OneArgOption(null, "asmpath", "Add an assembly search path", "path", (val) => { + miscOptions.Add(new OneArgOption(null, "asm-path", "Add an assembly search path", "path", (val) => { AssemblyResolver.Instance.addSearchDirectory(val); })); miscOptions.Add(new NoArgOption(null, "dont-rename", "Don't rename classes, methods, etc.", () => {