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.Svn.
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 |
---|---|
Cake |
|
Cake |
|
Cake |
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. |