public static bool SvnAddDirectory(this ICakeContext context, DirectoryPath directory, SvnAddSettings settings)
        {
            var adder = new SvnAdder(context.Environment, SvnClientFactoryMethod);

            return(adder.Add(directory, settings ?? new SvnAddSettings()));
        }
        public static bool SvnAddFile(this ICakeContext context, FilePath file, SvnAddSettings settings)
        {
            var adder = new SvnAdder(context.Environment, SvnClientFactoryMethod);

            return(adder.Add(file, settings ?? new SvnAddSettings()));
        }