SvnAliases.

SvnExport(ICakeContext, Uri, DirectoryPath) Method

Summary

Export a Subversion directory tree.
Assembly
Cake.Svn.dll
Namespace
Cake.Svn
Containing Type
SvnAliases

Syntax

public static SvnExportResult SvnExport(this ICakeContext context, Uri repositoryUrl, DirectoryPath path)

Examples

Export a SVN repository and output revision ID:

 var result = SvnExport(
         new Uri("https://svn.example.com"),
         @"c:\repo");

     Verbose("Revision: {0}", result.Revision);

Attributes

Type Description
CakeMethodAliasAttribute
CakeAliasCategoryAttribute
CakeNamespaceImportAttribute

Parameters

Name Type Description
context ICakeContext The Cake context.
repositoryUrl Uri The URL of the Subversion repository.
path DirectoryPath The local directory name.

Return Value

Type Description
SvnExportResult Result of the export operation.