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.Squirrel.
Summary
Runs Squirrel Releasify against the specified NuGet package.
Syntax
public static void Squirrel(this ICakeContext context, FilePath nugetPackage)
Examples
#tool "Squirrel.Windows"
#addin Cake.Squirrel
Task("PackageNoSettings")
.Does(() => {
Squirrel(File("Package.nupkg"));
});
Attributes
| Type |
Description |
| CakeMethodAliasAttribute |
|
Parameters
| Name |
Type |
Description |
| context |
ICakeContext |
The context. |
| nugetPackage |
FilePath |
NuGet package to releasify. |
Return Value