From 15bb9a3a0b510777b140b1a7e7ed67d8ea3e6108 Mon Sep 17 00:00:00 2001 From: Shad Storhaug Date: Mon, 10 Oct 2022 20:56:33 +0700 Subject: [PATCH] ikvmc.md: Added details about -exclude option --- docs/tools/ikvmc.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tools/ikvmc.md b/docs/tools/ikvmc.md index c27db5711d..68056cd23e 100644 --- a/docs/tools/ikvmc.md +++ b/docs/tools/ikvmc.md @@ -56,7 +56,7 @@ Name of a Java `.class` or `.jar file`. May contain wildcards (`*.class`). |---|---| | `-r:\|-reference:` | Add a reference to a class library DLL (.NET assembly). When building Java projects (`.jar` or `.class` files), this can be used to add dependent projects that had previously been compiled. The dependency must be compiled first. This option can appear more than once to reference multiple libraries. | | `-recurse:` | Processes all files matching `filespec` in and under the directory specified by `filespec`. Example: `-recurse:*.class` | -| `-exclude:` | `filename` is a file containing a list of classes to exclude. | +| `-exclude:` | `filename` is a file containing a list of class names to exclude. The file may contain a single .NET-compatible regular expression per line. If the line starts with a `\`, it will be ignored as a comment. | ### Resources @@ -191,4 +191,4 @@ First it generates a library `mylib.dll` from `mylib.jar`. Then it generates an - [Components](../components.md) - [Convert a .jar file to a .dll](../convert-a-jar-file-to-a-dll.md) - [Tools](index.md) -- [Tutorial](../tutorial.md) \ No newline at end of file +- [Tutorial](../tutorial.md)