Пример #1
0
 public void OutputTo(FluentFs.Core.File artifactLocation)
 {
     OutputTo(artifactLocation.ToString());
 }
Пример #2
0
 public IAssemblyInfoDetails OutputPath(FluentFs.Core.File path)
 {
     return OutputPath(path.ToString());
 }
Пример #3
0
 ///<summary>
 /// Sets ZipCompress to compress an entire folder
 ///</summary>
 ///<param name="path">The folder to compress</param>
 public ZipCompress SourceFolder(FluentFs.Core.Directory path)
 {
     return SourceFolder(path.ToString());
 }
Пример #4
0
 ///<summary>
 /// The location to place the output
 ///</summary>
 ///<param name="zipFilePath">path to the output file</param>
 public void To(FluentFs.Core.File zipFilePath)
 {
     To(zipFilePath.ToString());
 }
Пример #5
0
 ///<summary>
 /// Sets ZipCompress to compress a single file
 ///</summary>
 ///<param name="file">The file to compress</param>
 public ZipCompress SourceFile(FluentFs.Core.File file)
 {
     return SourceFile(file.ToString());
 }