Project.IsDirty Property

Definition

Whether this project is dirty such that it needs reevaluation. This may be because its underlying XML has changed (either through this project or another) either the XML of the main project or an imported file; or because its toolset may have changed.

public:
 property bool IsDirty { bool get(); };
public bool IsDirty { get; }
member this.IsDirty : bool
Public ReadOnly Property IsDirty As Boolean

Property Value

true if this project has been modified so that it must be reevaluated; otherwise, false.

Remarks

A project is modified and must be reevaluated when the underlying project source code, including changes to imported files. A project is also modified must be reevaluated if the project tool set changes.

Applies to