コード例 #1
0
ファイル: SiteGenerator.cs プロジェクト: 80000v/gullap
 public void Generate(SitePaths paths)
 {
     FileSystem.EnsureDirectory(paths.SitePath);
     FileSystem.EnsureDirectory(paths.AssetsPath);
     FileSystem.EnsureDirectory(paths.OutputPath);
     FileSystem.EnsureDirectory(paths.PagesPath);
 }
コード例 #2
0
ファイル: SiteGenerator.cs プロジェクト: reddragon010/gullap
 public void Generate(SitePaths paths)
 {
     FileSystem.EnsureDirectory(paths.SitePath);
     FileSystem.EnsureDirectory(paths.AssetsPath);
     FileSystem.EnsureDirectory(paths.OutputPath);
     FileSystem.EnsureDirectory(paths.PagesPath);
 }
コード例 #3
0
ファイル: Converter.cs プロジェクト: reddragon010/gullap
        public Converter(ConverterOptions options)
        {
            Guard.NotNull(options, "options");
            Guard.NotNullOrEmpty(options.SitePath, "options.SitePath");

            Options = options;

            Paths = new SitePaths(options.SitePath);
        }
コード例 #4
0
        public Converter(ConverterOptions options)
        {
            Guard.NotNull(options, "options");
            Guard.NotNullOrEmpty(options.SitePath, "options.SitePath");

            Options = options;

            Paths = new SitePaths(options.SitePath);
        }