NAnt
![]() ![]() ![]() |
v0.85 |
[This is preliminary documentation and subject to change.]
Disassembles any portable executable (PE) file that contains intermediate language (IL) code.
Attribute | Type | Description | Required |
---|---|---|---|
all | bool | Specifies whether or not the disassembler should combine the /HEADER , /BYTE , and TOKENS options. |
False |
bytes | bool | Specifies whether or not the disassembler should generate the IL stream bytes (in hexadecimal notation) as instruction comments. | False |
header | bool | Specifies whether or not the disassembler should include PE header information and runtime header information in the output. | False |
input | file | Specifies the PE file to disassemble. | False |
item | string | Instructs the disassembler to disassemble the specified item only. | False |
linenumbers | bool | Specifies whether or not the disassembler should include references to original source lines. | False |
noil | bool | Specifies whether or not the disassembler should suppress ILASM code output. | False |
output | file | Specifies the name of the output file created by the disassembler. | False |
publiconly | bool | Specifies whether or not the disassembler should disassemble public items only. This is a shortcut for visibility="pub" . |
False |
quoteallnames | bool | Specifies whether or not the disassembler should enclose all names in single quotation marks. By default, only names that don't match the ILASM definition of a simple name are quoted. | False |
rawexceptionhandling | bool | Specifies whether or not the disassembler should generate structured exception handling clauses in canonical (label) form. | False |
rebuild | bool | Instructs NAnt to rebuild the output file regardless of the file timestamps. | False |
source | bool | Specifies whether or not the disassembler should generate original source lines as comments. | False |
todir | directory | Specifies the directory to which outputs will be stored. | False |
tokens | bool | Specifies whether or not the disassembler should generate metadata token values as comments. | False |
unicode | bool | Specifies whether or not the disassembler should use the UNICODE encoding when generating the output. The default is ANSI. | False |
utf8 | bool | Specifies whether or not the disassembler should use the UTF-8 encoding when generating the output. The default is ANSI. | False |
visibility | string | Instructs the disassembler to disassemble only the items with the specified visibility. | False |
failonerror | bool | Determines if task failure stops the build, or is just reported. The default is true. | False |
if | bool | If true then the task will be executed; otherwise, skipped. The default is true. | False |
timeout | int | The maximum amount of time the application is allowed to execute, expressed in milliseconds. Defaults to no time-out. | False |
unless | bool | Opposite of if . If false then the task will be executed; otherwise, skipped. The default is false. |
False |
verbose | bool | Determines whether the task should report detailed build log messages. The default is false. | False |
Attribute | Type | Description | Required |
---|---|---|---|
exename | string | The name of the executable that should be used to launch the external program. | False |
useruntimeengine | bool | Specifies whether the external program should be executed using a runtime engine, if configured. The default is false. | False |
Contains a collection of <arg> elements.
Disassembles helloworld.exe
to helloworld.il
.
<ildasm input="helloworld.exe" output="helloworld.il" />
Disassembles a set of PE files into the specified directory.
<ildasm todir="."> <assemblies> <include name="*.exe" /> <include name="*.dll" /> </assemblies> </ildasm>