This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see Cake.LibMan.
Summary
Uninstalls client side libraries using the settings returned by a configurator.
- Assembly
- Cake
.LibMan .dll - Namespace
- Cake
.LibMan - Containing Type
- Lib
Man Uninstall Aliases
Syntax
public static void LibManUninstall(this ICakeContext context, Action<LibManUninstallSettings> configurator)
Examples
Uninstalls client side libraries using the settings ('libman uninstall')
LibManUninstall(settings =>
{
settings
.SetLibrary("jquery")
.WithVerbosity(LibManVerbosity.Detailed)
.FromPath(@"c:\myproject");
});
Attributes
| Type | Description |
|---|---|
| Cake |
|
| Cake |
Parameters
| Name | Type | Description |
|---|---|---|
| context | ICakeContext | The context. |
| configurator | Action |
The settings configurator. |
Return Value
| Type | Description |
|---|---|
| void |
