Project.EvaluatedItems Property

Definition

Gets a collection of the items evaluated during the build.

public:
 property Microsoft::Build::BuildEngine::BuildItemGroup ^ EvaluatedItems { Microsoft::Build::BuildEngine::BuildItemGroup ^ get(); };
public Microsoft.Build.BuildEngine.BuildItemGroup EvaluatedItems { get; }
member this.EvaluatedItems : Microsoft.Build.BuildEngine.BuildItemGroup
Public ReadOnly Property EvaluatedItems As BuildItemGroup

Property Value

A BuildItemGroup containing the items evaluated during the build.

Remarks

The returned BuildItemGroup contains all the evaluated items in the project after wildcard and property expansion. The items in this property represent the actual items used during the build process. This property value is generated every time something in the project changes. Changes to existing items in this collection will be reflected the next time the project is saved, but adding or deleting items will not impact the project.

Applies to