Project.ItemsIgnoringCondition Property

Definition

Items in this project, ordered within groups of item types, including items whose conditions evaluated to false, or that were contained within item groups who themselves had conditioned evaluated to false. This is useful for hosts that wish to display all items, even if they might not be part of the build in the current configuration.

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

Property Value

An enumerator over all items in this project, ordered within groups of item types, including items whose conditions evaluate to false, or are contained within item groups whose condition evaluates to false.

Remarks

Can be used to display all items, even if they are not part of the build in the current configuration.

Applies to