Summary
The script host works as a context for scripts.
- Namespace
- Cake
.Core .Scripting - Interfaces
- Base Types
-
- object
- Derived Types
graph BT
Type-->Base0["object"]
Type-.->Interface0["IScriptHost"]
click Interface0 "/api/Cake.Core.Scripting/IScriptHost"
Type["ScriptHost"]
class Type type-node
Derived0["BuildScriptHost<TContext>"]-->Type
click Derived0 "/api/Cake.Cli/BuildScriptHost_1"
Derived1["DryRunScriptHost<TContext>"]-->Type
click Derived1 "/api/Cake.Cli/DryRunScriptHost_1"
Derived2["DescriptionScriptHost"]-->Type
click Derived2 "/api/Cake.Cli/DescriptionScriptHost"
Derived3["TreeScriptHost"]-->Type
click Derived3 "/api/Cake.Cli/TreeScriptHost"
Syntax
public abstract class ScriptHost : IScriptHost
Constructors
Name | Summary |
---|---|
ScriptHost |
Initializes a new instance of the ScriptHost class.
|
Properties
Name | Value | Summary |
---|---|---|
Context | ICakeContext |
Gets the context.
|
Engine | ICakeEngine |
Gets the engine.
|
Settings | ExecutionSettings |
Gets the settings.
|
Tasks | IReadOnlyList |
Gets all registered tasks.
|
Methods
Name | Value | Summary |
---|---|---|
RunTarget |
CakeReport |
Runs the specified target.
|
RunTargetAsync |
Task |
Runs the specified target.
|
RunTargets |
CakeReport |
Runs the specified targets.
|
RunTargetsAsync |
Task |
Runs the specified targets.
|
Setup |
void |
Allows registration of an action that's executed before any tasks are run.
If setup fails, no tasks will be executed but teardown will be performed.
|
Setup |
void |
Allows registration of an action that's executed before any tasks are run.
If setup fails, no tasks will be executed but teardown will be performed.
|
Task |
CakeTaskBuilder |
Registers a new task.
|
TaskOf |
CakeTaskBuilder |
Registers a new task.
|
TaskSetup |
void |
Allows registration of an action that's executed before each task is run.
If the task setup fails, its task will not be executed but the task teardown will be performed.
|
TaskSetup |
void |
Allows registration of an action that's executed before each task is run.
If the task setup fails, its task will not be executed but the task teardown will be performed.
|
TaskTeardown |
void |
Allows registration of an action that's executed after each task has been run.
If a task setup action or a task fails with or without recovery, the specified task teardown action will still be executed.
|
TaskTeardown |
void |
Allows registration of an action that's executed after each task has been run.
If a task setup action or a task fails with or without recovery, the specified task teardown action will still be executed.
|
Teardown |
void |
Allows registration of an action that's executed after all other tasks have been run.
If a setup action or a task fails with or without recovery, the specified teardown action will still be executed.
|
Teardown |
void |
Allows registration of an action that's executed after all other tasks have been run.
If a setup action or a task fails with or without recovery, the specified teardown action will still be executed.
|
Extension Methods
Name | Value | Summary |
---|---|---|
Dump |
string |
Get a basic string representation of specified object.
From LoggingExtensions
Requires the Cake.Incubator addin
|
IsIn |
bool |
Checks if the source is contained in a list
From EnumerableExtensions
Requires the Cake.Incubator addin
|
NotNull |
void |
Throws an exception if the specified parameter's value is null.
From Extensions
Requires the Cake.Ftp addin
|
NotNull |
void |
From IssuesArgumentChecks
Requires the Cake.Issues addin
|
ThrowIfNull |
T |
Throws a
System.ArgumentNullException with a specific message if the value is null, otherwise returns the value
From AssertExtensions
Requires the Cake.Incubator addin
|
ThrowIfNull |
T |
Throws a
System.ArgumentNullException if the value is null, otherwise returns the value
From AssertExtensions
Requires the Cake.Incubator addin
|
ToDictionary |
IDictionary |
From ObjectHelpers
Requires the Cake.DeployParams addin
|
To |
string |
From StringExtensions
Requires the Cake.Issues addin
|