예제 #1
0
        public static void Generate(string targetFile, ItemJsonModel[] items)
        {
            var model   = new ItemsViewModel(items);
            var content = RazorBase.Render(templatePath: "ItemsTemplates/ItemsHtml.cshtml", model).Result;

            File.WriteAllText(targetFile, content);
        }
예제 #2
0
        public static void GenerateGodsHtml(string targetFile, GodJsonModel[] gods)
        {
            if (gods == null)
            {
                throw new ArgumentNullException(nameof(gods));
            }
            foreach (var god in gods)
            {
                if (god.Skins == null)
                {
                    throw new InvalidOperationException();
                }
                foreach (var skin in god.Skins)
                {
                    if (skin.Name == $"Standard {god.Name}")
                    {
                        skin.Name = "Standard";
                    }
                }
            }
            var content = RazorBase.Render(templatePath: "GodSkinsTemplates/GodSkinsHtml.cshtml", gods).Result;

            File.WriteAllText(targetFile, content);
        }