A build target.
public sealed class BuildTarget
| name | description |
|---|---|
| Dependencies { get; } | The names of targets upon which this target depends, if any. |
| Description { get; } | The target description, if any. |
| Name { get; } | The target name. |
| ClearActions() | Clears the actions on the target. |
| DependsOn(…) | Adds a target dependency by name. |
| Describe(…) | Sets the target Description. |
| Does(…) | Adds an action to the target. (2 methods) |
| Run() | Runs the target action, if any. |
| RunAsync() | Runs the target action, if any. |