Class BuildTaskBase
Base class which must be implemented in all build steps
Inheritance
System.Object
BuildTaskBase
Implements
Microsoft.Build.Framework.ITask
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Simplic.CXUI.BuildTask
Assembly: Simplic.CXUI.dll
Syntax
public abstract class BuildTaskBase : ITask
Properties
| Improve this Doc View SourceAssemblies
Gets or sets a list of assemblies that are required for the current build step
Declaration
public virtual IList<Assembly> Assemblies { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.Reflection.Assembly> |
BuildEngine
Buildtask which will be used for creating a specific output
Declaration
public IBuildEngine BuildEngine { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.Build.Framework.IBuildEngine |
CXUIBuildEngine
CXUI Build engine
Declaration
public CXUIBuilder CXUIBuildEngine { get; }
Property Value
Type | Description |
---|---|
CXUIBuilder |
HostObject
Build hosting object
Declaration
public ITaskHost HostObject { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.Build.Framework.ITaskHost |
TempOutputDirectory
Temporary output directory
Declaration
public virtual string TempOutputDirectory { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
| Improve this Doc View SourceExecute()
Execute build step/task
Declaration
public virtual bool Execute()
Returns
Type | Description |
---|---|
System.Boolean | Returns true if building was successfull |
Implements
Microsoft.Build.Framework.ITask