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
Restores client side libraries using the settings returned by a configurator.
- Assembly
- Cake
.LibMan .dll - Namespace
- Cake
.LibMan - Containing Type
- LibManRestoreAliases
Syntax
public static void LibManRestore(this ICakeContext context, Action<LibManRestoreSettings> configurator)
Examples
Restores client side libraries using the settings ('libman restore')
LibManRestore(settings =>
{
settings
.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 |