Project.AllEvaluatedItems Property

Definition

Items encountered during evaluation. These are read during the third evaluation pass. Unlike those returned by the Items property, these are ordered with respect to all other items encountered during evaluation, not just ordered with respect to items of the same item type. In some applications, like the F# language, this complete mutual ordering is significant, and such hosts can use this property. It does not include any elements whose conditions did not evaluate to true. It does not include any items added since the last evaluation.

public:
 property System::Collections::Generic::ICollection<Microsoft::Build::Evaluation::ProjectItem ^> ^ AllEvaluatedItems { System::Collections::Generic::ICollection<Microsoft::Build::Evaluation::ProjectItem ^> ^ get(); };
public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectItem> AllEvaluatedItems { get; }
member this.AllEvaluatedItems : System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectItem>
Public ReadOnly Property AllEvaluatedItems As ICollection(Of ProjectItem)

Property Value

An enumerator over all items encountered during evaluation. These are read during the third evaluation pass.

Remarks

Unlike those items returned by the Items property, these are ordered with respect to all other items encountered during evaluation, not just ordered with respect to items of the same item type.

In some applications, this complete mutual ordering is significant, and such hosts can use this property.

The enumeration does not include any elements whose conditions did not evaluate to true, nor does it include any items added since the last evaluation.

Applies to