ProjectTargetInstance.Children Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.