From 33c803744762efa92493e0ba408eaa92d5e60d7a Mon Sep 17 00:00:00 2001 From: Stephen Fox Date: Sat, 21 Mar 2020 14:29:48 -0400 Subject: [PATCH] Added a basic go doc. --- doc.go | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 doc.go diff --git a/doc.go b/doc.go new file mode 100644 index 0000000..0de57e6 --- /dev/null +++ b/doc.go @@ -0,0 +1,9 @@ +// Package finley provides functionality that extends the CLI implementation of +// ILSpy (https://github.com/icsharpcode/ILSpy). ILSply is an open source .NET +// decompiler. It is normally invoked as a GUI application. However, a CLI +// implementation ('ilspycmd') provides a better platform for automation. +// +// The primary features of finley include recursive decompilation of .NET +// binaries in a given directory, duplicate .NET binary avoidance, and +// configurable concurrent decompilation of .NET binaries. +package finley