Skip to content

ilich/Cake.GitPackager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Cake.GitPackager

Cake AddIn which copies files based on Git log.

Example usage

#addin Cake.GitPackager

GitPackager(
    "C:\project\sample",
    new Dictionary<string, string>()
        {
            { @"src\Views\", @"C:\project\sample\Views\" }
        },
    "1.0.0",
    null
);

Cake build will copy all changes happened at C:\project\sample\src\Views folder to C:\project\sample\Views folder since the changeset tagged with 1.0.0 tag. C:\project\sample is a Git repository.

About

Cake AddIn which copies files based on Git log.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages