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
Clears library cache using the specified
LibManCacheCleanSettings settings.
- Assembly
- Cake
.LibMan .dll - Namespace
- Cake
.LibMan - Containing Type
- Lib
Man Cache Clean Aliases
Syntax
public static void LibManCacheClean(this ICakeContext context, LibManCacheCleanSettings settings)
Examples
Clears library cache using the specified using the specified settings. ('libman cache clean')
var settings = new LibManCacheCleanSettings
{
WorkingDirectory = @"c:\myproject",
Verbosity = LibManVerbosity.Detailed,
Provider = CdnProvider.Default
};
LibManCacheClean(settings);
Attributes
| Type | Description |
|---|---|
| Cake |
|
| Cake |
Parameters
| Name | Type | Description |
|---|---|---|
| context | ICakeContext | The context. |
| settings | Lib |
The settings. |
Return Value
| Type | Description |
|---|---|
| void |
