Class BuildStepCollection
Represent a collection of build steps that can be run.
Inherited Members
Namespace: Unity.Build
Assembly: solution.dll
Syntax
public sealed class BuildStepCollection : IEnumerable<BuildStepBase>, IEnumerable
Constructors
| Name | Description |
|---|---|
| BuildStepCollection() | Default constructor for empty build step collection. |
| BuildStepCollection(params Type[]) | Construct a new build step collection using the specified types. The types must derive from BuildStepBase. |
Methods
| Name | Description |
|---|---|
| GetEnumerator() | Returns an enumerator that iterates through the collection. |
| Run(BuildContext) | Run all enabled build steps and cleanup. |
Operators
| Name | Description |
|---|---|
| implicit operator BuildStepCollection(Type[]) | Implicit conversion from types array to BuildStepCollection. The types must derive from BuildStepBase. |