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.7zip.
Summary
Syntax
public static void SevenZip(this ICakeContext context, SevenZipSettings settings)
Examples
Task("ZipIt")
.Does(() =>
{
SevenZip(new SevenZipSettings
{
Command = new AddCommand
{
Files = new FilePathCollection(new[] { new FilePath("a.txt"), new FilePath("b.txt") }),
Archive = new FilePath("out.zip"),
Volumes = new SwitchVolumeCollection(
new SwitchVolume
{
Size = 1,
Unit = VolumeUnit.Gigabytes
})
}
});
});
Attributes
Type |
Description |
CakeMethodAliasAttribute |
|
Parameters
Return Value