IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
ExportCommandOptions.cs
Go to the documentation of this file.
1using System;
2using System.IO;
3
5{
6
10 [Serializable]
12 {
13
17 public FileInfo Output { get; set; }
18
22 public FileInfo[] References { get; set; } = [];
23
27 public DirectoryInfo[] Libraries { get; set; } = [];
28
32 public string[] Namespaces { get; set; } = [];
33
37 public bool Shared { get; set; }
38
42 public bool NoStdLib { get; set; }
43
47 public bool Forwarders { get; set; }
48
52 public bool IncludeParameterNames { get; set; }
53
57 public bool IncludeNonPublicTypes { get; set; }
58
62 public bool IncludeNonPublicInterfaces { get; set; }
63
67 public bool IncludeNonPublicMembers { get; set; }
68
72 public bool SerialVersionUID { get; set; }
73
77 public bool ContinueOnError { get; set; }
78
82 public bool Bootstrap { get; set; }
83
87 public FileInfo Assembly { get; set; }
88
92 public string Log { get; set; }
93
94 }
95
96}
IKVM.Reflection.Assembly Assembly
string[] Namespaces
Set of namespaces to export.
bool Forwarders
Whether to include forwarder types.
string Log
Gets the various logging configurations.
bool IncludeNonPublicTypes
Whehter to export non-public types.
bool NoStdLib
Whether to include the standard library references.
bool IncludeParameterNames
Whether to export parameter names.
FileInfo[] References
Assembly references.
bool Bootstrap
Whether we are to run in bootstrap mode.
bool IncludeNonPublicMembers
Whether to export non-public members.
bool IncludeNonPublicInterfaces
Whether to export non-public interface implementations.
bool SerialVersionUID
Whether to export serialVersionUID fields.
bool ContinueOnError
Whether to continue execution on error.
DirectoryInfo[] Libraries
Path to directories to search for assembly references.
bool Shared
Are we doing a shared export.