CompressionAliases.

BZip2Compress(ICakeContext, DirectoryPath, FilePath, IEnumerable<string>) Method

Summary

Create a BZip2 Tar archive of the specified files.
Assembly
Cake.Compression.dll
Namespace
Cake.Compression
Containing Type
CompressionAliases

Syntax

public static void BZip2Compress(this ICakeContext context, DirectoryPath rootPath, FilePath outputPath, IEnumerable<string> filePaths)

Examples

var files = new [] {
    "./src/Cake/bin/Debug/Autofac.dll",
    "./src/Cake/bin/Debug/Cake.Common.dll",
    "./src/Cake/bin/Debug/Cake.Core.dll",
    "./src/Cake/bin/Debug/Cake.exe"
};
BZip2Compress("./", "cakebinaries.tar.bz2", files);

Attributes

Type Description
CakeMethodAliasAttribute

Parameters

Name Type Description
context ICakeContext The context.
rootPath DirectoryPath The root path.
outputPath FilePath The output path.
filePaths IEnumerable<string> The file paths.

Return Value

Type Description
void