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 specified settings.
- Assembly
- Cake
.LibMan .dll - Namespace
- Cake
.LibMan - Containing Type
- Lib
Man Uninstall Aliases
Syntax
public static void LibManUninstall(this ICakeContext context, LibManUninstallSettings settings)
Examples
Uninstalls client side libraries in a specific working directory ('libman uninstall')
var settings = new LibManUninstallSettings
{
WorkingDirectory = @"c:\myproject",
Verbosity = LibManVerbosity.Detailed,
Library = "jquery"
};
LibManUninstall(settings);
Attributes
Type | Description |
---|---|
Cake |
|
Cake |
Parameters
Name | Type | Description |
---|---|---|
context | ICakeContext | The context. |
settings | Lib |
The settings. |
Return Value
Type | Description |
---|---|
void |