ProjectTargetInstance.Children Property

Definition

Children below the target. The build iterates through this to get each task to execute. This is an ordered collection. This is a read-only list; the ProjectTargetInstance class is immutable. This collection does not contain the OnError target references.

public:
 property System::Collections::Generic::IList<Microsoft::Build::Execution::ProjectTargetInstanceChild ^> ^ Children { System::Collections::Generic::IList<Microsoft::Build::Execution::ProjectTargetInstanceChild ^> ^ get(); };
public System.Collections.Generic.IList<Microsoft.Build.Execution.ProjectTargetInstanceChild> Children { get; }
public System.Collections.Generic.IList<Microsoft.Build.Execution.ProjectTargetInstanceChild> Children { [System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")] get; }
member this.Children : System.Collections.Generic.IList<Microsoft.Build.Execution.ProjectTargetInstanceChild>
[<get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]
member this.Children : System.Collections.Generic.IList<Microsoft.Build.Execution.ProjectTargetInstanceChild>
Public ReadOnly Property Children As IList(Of ProjectTargetInstanceChild)

Property Value

A list of the children of this target.

Attributes

Remarks

This is an ordered collection. This is a read-only list; the ProjectTargetInstance class is immutable. This collection does not contain the OnError target references.

Applies to