Share via


Project.EvaluatedItems Property

Definition

Read-only accessor for the final collection of evaluated items, taking into account all conditions and property expansions. Through this collection, the caller can modify any of the items present, and it will be reflected in the project file the next time it is saved. However, adding or deleting items from this collection will not impact the project.

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