Summary
Uninstalls Chocolatey packages using the specified settings.
Syntax
[CakeMethodAlias]
[CakeAliasCategory("Uninstall")]
[CakeNamespaceImport("Cake.Common.Tools.Chocolatey.Uninstall")]
public static void ChocolateyUninstall(this ICakeContext context, IEnumerable<string> packageIds, ChocolateyUninstallSettings settings)
Examples
ChocolateyUninstall("MyChocolateyPackage", new ChocolateyUninstallSettings {
Source = true,
Version = "1.2.3",
UninstallArguments = "arg1",
OverrideArguments = false,
NotSilent = false,
PackageParameters = "param1",
SideBySide = false,
IgnoreDependencies = false,
ForceDependencies = false,
SkipPowerShell = false,
Debug = false,
Verbose = false,
FailOnStandardError = false,
UseSystemPowershell = false,
AllVersions = false,
Force = false,
Noop = false,
LimitOutput = false,
ExecutionTimeout = 13,
CacheLocation = @"C:\temp",
AllowUnofficial = false,
GlobalArguments = false,
GlobalPackageParameters = false,
IgnorePackageExitCodes = false,
UsePackageExitCodes = false,
UseAutoUninstaller = false,
SkipAutoUninstaller = false,
FailOnAutoUninstaller = false,
IgnoreAutoUninstaller = false
});
Attributes
Type |
Description |
CakeMethodAliasAttribute |
An attribute used to mark script method aliases.
|
CakeAliasCategoryAttribute |
An attribute used for documentation of alias methods/properties.
|
CakeNamespaceImportAttribute |
An attribute used to hint Cake about additional namespaces that need
to be imported for an alias to work. This attribute can mark an
extension method, the extension method class, or the assembly to provide a global set of imports.
|
Parameters
Return Value