Project.AllEvaluatedProperties Property

Definition

Properties encountered during evaluation. These are read during the first evaluation pass. Unlike those returned by the Properties property, these are ordered, and includes any properties that were subsequently overridden by others with the same name. It does not include any properties whose conditions did not evaluate to true. It does not include any properties added since the last evaluation.

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

Property Value

All properties encountered during evaluation. This does not include any properties whose conditions did not evaluate to true, nor any properties added since the last evaluation.

Remarks

These properties are read during the first evaluation pass. Unlike properties returned by the Properties property, these are ordered, and includes any properties subsequently overridden with the same name.

Applies to