NAnt SDK Documentation - v0.85-nightly-2005-11-09

IlasmTask Class

[This is preliminary documentation and subject to change.]

Compiles ILASM programs.

For a list of all members of this type, see IlasmTask Members.

System.Object
   NAnt.Core.Element
      NAnt.Core.Task
         NAnt.Core.Tasks.ExternalProgramBase
            NAnt.DotNet.Tasks.IlasmTask

[Visual Basic]
<TaskName(Name:="ilasm"), _  ProgramLocation(LocationType:=LocationType.FrameworkDir)>
Public Class IlasmTask
    Inherits ExternalProgramBase
[C#]
[TaskName(Name="ilasm")]
[ProgramLocation(LocationType=LocationType.FrameworkDir)]
public class IlasmTask : ExternalProgramBase

Thread Safety

Public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

Remarks

Missing <remarks> documentation for T:NAnt.DotNet.Tasks.IlasmTask

Example

Compiles helloworld.il to helloworld.exe.

                
            <ilasm target="exe" output="helloworld.exe" debug="true">
                <sources>
                    <include name="helloworld.il" />
                </sources>
            </ilasm>
                
              

Requirements

Namespace: NAnt.DotNet.Tasks

Assembly: NAnt.DotNetTasks (in NAnt.DotNetTasks.dll)

See Also

IlasmTask Members | NAnt.DotNet.Tasks Namespace