FluentBuild.Runners.Zip.ZipDecompress.To C# (CSharp) Method

To() public method

Sets the output path
public To ( string outputPath ) : ZipDecompress
outputPath string The path you would like the file(s) outputed to
return ZipDecompress
        public ZipDecompress To(string outputPath)
        {
            _outputPath = outputPath;
            return this;
        }