示例#1
0
 public void AddBuildFile(string location, string extension)
 {
     AddBuildFile(SystemHelper.GetFileInfo(location, this.Name, extension));
 }
示例#2
0
        public IBuiltFile Convert(string filePath, FileFormat format)
        {
            IFile source = SystemHelper.GetFileInfo(filePath);

            return(Convert(source, format));
        }
示例#3
0
 public void Delete()
 {
     SystemHelper.DeleteFile(Path);
     Deleted = true;
 }