Summary
Base class for all Chocolatey related tools.
- Namespace
- Cake
.Common .Tools .Chocolatey - Base Types
- Derived Types
graph BT
Type-->Base0["Tool<TSettings>"]
Base0-->Base1["object"]
Type["ChocolateyTool<TSettings>"]
class Type type-node
Derived0["ChocolateyConfigSetter"]-->Type
click Derived0 "/api/Cake.Common.Tools.Chocolatey.Config/ChocolateyConfigSetter"
Derived1["ChocolateyInstaller"]-->Type
click Derived1 "/api/Cake.Common.Tools.Chocolatey.Install/ChocolateyInstaller"
Derived2["ChocolateyDownloader"]-->Type
click Derived2 "/api/Cake.Common.Tools.Chocolatey.Download/ChocolateyDownloader"
Derived3["ChocolateyPusher"]-->Type
click Derived3 "/api/Cake.Common.Tools.Chocolatey.Push/ChocolateyPusher"
Derived4["ChocolateyScaffolder"]-->Type
click Derived4 "/api/Cake.Common.Tools.Chocolatey.New/ChocolateyScaffolder"
Derived5["ChocolateyExporter"]-->Type
click Derived5 "/api/Cake.Common.Tools.Chocolatey.Export/ChocolateyExporter"
Derived6["ChocolateyPinner"]-->Type
click Derived6 "/api/Cake.Common.Tools.Chocolatey.Pin/ChocolateyPinner"
Derived7["ChocolateyPacker"]-->Type
click Derived7 "/api/Cake.Common.Tools.Chocolatey.Pack/ChocolateyPacker"
Derived8["ChocolateyFeatureToggler"]-->Type
click Derived8 "/api/Cake.Common.Tools.Chocolatey.Features/ChocolateyFeatureToggler"
Derived9["ChocolateyUpgrader"]-->Type
click Derived9 "/api/Cake.Common.Tools.Chocolatey.Upgrade/ChocolateyUpgrader"
Derived10["ChocolateySources"]-->Type
click Derived10 "/api/Cake.Common.Tools.Chocolatey.Sources/ChocolateySources"
Derived11["ChocolateyUninstaller"]-->Type
click Derived11 "/api/Cake.Common.Tools.Chocolatey.Uninstall/ChocolateyUninstaller"
Derived12["ChocolateyApiKeySetter"]-->Type
click Derived12 "/api/Cake.Common.Tools.Chocolatey.ApiKey/ChocolateyApiKeySetter"
Syntax
public abstract class ChocolateyTool<TSettings> : Tool<TSettings> where TSettings : ToolSettings
Type Parameters
Name | Description |
---|---|
TSettings | The settings type. |
Constructors
Name | Summary |
---|---|
ChocolateyTool |
Initializes a new instance of the ChocolateyTool<TSettings> class.
|
Methods
Name | Value | Summary |
---|---|---|
AddGlobalArguments |
Process |
Adds common arguments to the process builder.
|
AddSharedArguments |
Process |
Adds shared arguents to the process builder.
|
Get |
IEnumerable |
Gets alternative file paths which the tool may exist in.
|
Get |
IEnumerable |
Gets the possible names of the tool executable.
|
GetToolName |
string |
Gets the name of the tool.
|
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
|