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

LibTask Class

[This is preliminary documentation and subject to change.]

Run lib.exe, Microsoft's Library Manager.

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

System.Object
   NAnt.Core.Element
      NAnt.Core.Task
         NAnt.Core.Tasks.ExternalProgramBase
            NAnt.VisualCpp.Tasks.LibTask

[Visual Basic]
<TaskName(Name:="lib")>
Public Class LibTask
    Inherits ExternalProgramBase
[C#]
[TaskName(Name="lib")]
public class LibTask : 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.VisualCpp.Tasks.LibTask

Example

Create a library.

                
            <lib output="library.lib">
                <sources>
                    <include name="library.obj" />
                </sources>
            </lib>
                
              

Requirements

Namespace: NAnt.VisualCpp.Tasks

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

See Also

LibTask Members | NAnt.VisualCpp.Tasks Namespace