diff --git a/README.md b/README.md index 53354d8..b2f5262 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ arguments and an explanation of their effects: -d string The directory to search for .NET files -e string - Comma separated list of file extensions to search for (default ".dll") + Comma separated list of file extensions to search for (default ".dll,.exe") -ilspy string The 'ilspycmd' binary to use (default "ilspycmd") -no-ilspy-errors diff --git a/cmd/finley/main.go b/cmd/finley/main.go index c9b716e..a0713f2 100644 --- a/cmd/finley/main.go +++ b/cmd/finley/main.go @@ -26,7 +26,7 @@ var ( func main() { targetDirPath := flag.String("d", "", "The directory to search for .NET files") - fileExtsCsv := flag.String("e", ".dll", "Comma separated list of file extensions to search for") + fileExtsCsv := flag.String("e", ".dll,.exe", "Comma separated list of file extensions to search for") outputDirPath := flag.String("o", "", "The output directory. Creates a new directory if not specified") respectFileCase := flag.Bool("respect-file-case", false, "Respect filenames' case when matching their extensions") noIlspyErrors := flag.Bool("no-ilspy-errors", false, "Exit if ILSpy fails to decompile a file")