Options available to the IKVM importer tool.
More...
|
| int | Timeout = System.Threading.Timeout.Infinite [get, set] |
| | Number of milliseconds to wait for the command to execute.
|
| |
| string? | Input [get, set] |
| | Files to be imported.
|
| |
| string? | Output [get, set] |
| | Path of the output JAR.
|
| |
| IList< string > | References = new List<string>() [get] |
| | Set of paths to assemblies to add as references.
|
| |
| List< string > | Namespaces = new List<string>() [get] |
| | Only include types from specified namespaces.
|
| |
| IList< string > | Lib = new List<string>() [get, set] |
| | Additional directories to search for references.
|
| |
| bool | IncludeNonPublicTypes [get, set] |
| | Whether to emit non-public types.
|
| |
| bool | IncludeNonPublicInterfaces [get, set] |
| | Whether to emit non-public interface implementations.
|
| |
| bool | IncludeNonPublicMembers [get, set] |
| | Whether to emit non-public members.
|
| |
| bool | IncludeParameterNames [get, set] |
| | Emit Java 8 classes with parameter names.
|
| |
| bool | Shared [get, set] |
| | Process all assemblies in shared group.
|
| |
| bool | NoStdLib [get, set] |
| | Do not reference standard libraries.
|
| |
| bool | Forwarders [get, set] |
| | Export forwarded types too.
|
| |
| bool | Bootstrap [get, set] |
| | Run in bootstrap mode.
|
| |
| bool | ContinueOnError [get, set] |
| | Continue when errors are encountered.
|
| |
Options available to the IKVM importer tool.
Definition at line 9 of file IkvmExporterOptions.cs.
◆ Bootstrap
| bool IKVM.Tools.Runner.Exporter.IkvmExporterOptions.Bootstrap |
|
getset |
◆ ContinueOnError
| bool IKVM.Tools.Runner.Exporter.IkvmExporterOptions.ContinueOnError |
|
getset |
◆ Forwarders
| bool IKVM.Tools.Runner.Exporter.IkvmExporterOptions.Forwarders |
|
getset |
◆ IncludeNonPublicInterfaces
| bool IKVM.Tools.Runner.Exporter.IkvmExporterOptions.IncludeNonPublicInterfaces |
|
getset |
◆ IncludeNonPublicMembers
| bool IKVM.Tools.Runner.Exporter.IkvmExporterOptions.IncludeNonPublicMembers |
|
getset |
◆ IncludeNonPublicTypes
| bool IKVM.Tools.Runner.Exporter.IkvmExporterOptions.IncludeNonPublicTypes |
|
getset |
◆ IncludeParameterNames
| bool IKVM.Tools.Runner.Exporter.IkvmExporterOptions.IncludeParameterNames |
|
getset |
◆ Input
| string? IKVM.Tools.Runner.Exporter.IkvmExporterOptions.Input |
|
getset |
◆ Lib
| IList<string> IKVM.Tools.Runner.Exporter.IkvmExporterOptions.Lib = new List<string>() |
|
getset |
Additional directories to search for references.
Definition at line 40 of file IkvmExporterOptions.cs.
40{ get; set; } = new List<string>();
◆ Namespaces
| List<string> IKVM.Tools.Runner.Exporter.IkvmExporterOptions.Namespaces = new List<string>() |
|
get |
Only include types from specified namespaces.
Definition at line 35 of file IkvmExporterOptions.cs.
35{ get; } = new List<string>();
◆ NoStdLib
| bool IKVM.Tools.Runner.Exporter.IkvmExporterOptions.NoStdLib |
|
getset |
◆ Output
| string? IKVM.Tools.Runner.Exporter.IkvmExporterOptions.Output |
|
getset |
◆ References
| IList<string> IKVM.Tools.Runner.Exporter.IkvmExporterOptions.References = new List<string>() |
|
get |
Set of paths to assemblies to add as references.
Definition at line 30 of file IkvmExporterOptions.cs.
30{ get; } = new List<string>();
◆ Shared
| bool IKVM.Tools.Runner.Exporter.IkvmExporterOptions.Shared |
|
getset |
◆ Timeout
| int IKVM.Tools.Runner.Exporter.IkvmExporterOptions.Timeout = System.Threading.Timeout.Infinite |
|
getset |
Number of milliseconds to wait for the command to execute.
Definition at line 15 of file IkvmExporterOptions.cs.
15{
get;
set; } =
System.Threading.Timeout.Infinite;
The documentation for this class was generated from the following file: