Interface IDependentItem
A deployment item that declares dependencies
Inherited Members
Namespace: Unity.Services.DeploymentApi.Editor
Assembly: Unity.Services.DeploymentApi.dll
Syntax
public interface IDependentItem : IDeploymentItem, INotifyPropertyChanged
Properties
Dependencies
The dependencies declared by the item
Declaration
IReadOnlyList<IDependency> Dependencies { get; }
Property Value
Type | Description |
---|---|
IReadOnlyList<IDependency> |
ResolvedDependencies
Resolved dependencies. Populated during deployment only. The implementation should initialize this list, as it should not be null.
Declaration
List<IDeploymentItem> ResolvedDependencies { get; }
Property Value
Type | Description |
---|---|
List<IDeploymentItem> |