1
0
Fork 0
mirror of https://github.com/Nioux/AideDeJeu.git synced 2025-10-30 15:06:06 +00:00

MaJ Microsoft Store

This commit is contained in:
Yan Maniez 2018-07-07 12:36:09 +02:00
parent f52f6cac4d
commit 2f3bb7708b
2 changed files with 18 additions and 18 deletions

View file

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" IgnorableNamespaces="uap mp">
<Identity Name="7385YanManiez.AidedeJeu" Publisher="CN=2C78A91E-528B-4FF0-A4BE-FD7F7EBABB44" Version="1.16.0.0" />
<Identity Name="7385YanManiez.AidedeJeu" Publisher="CN=2C78A91E-528B-4FF0-A4BE-FD7F7EBABB44" Version="1.20.0.0" />
<mp:PhoneIdentity PhoneProductId="7b75e00f-ae8d-472e-9d0f-cbfe5e44017c" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
<Properties>
<DisplayName>Aide de Jeu</DisplayName>

View file

@ -18,24 +18,24 @@ namespace AideDeJeuCmd
class Program
{
static async Task<IEnumerable<Spell>> TestMarkdown(string filename)
{
using (var sr = new StreamReader(filename))
{
var md = await sr.ReadToEndAsync();
var document = Markdig.Parsers.MarkdownParser.Parse(md);
//DumpMarkdownDocument(document);
//static async Task<IEnumerable<Spell>> TestMarkdown(string filename)
//{
// using (var sr = new StreamReader(filename))
// {
// var md = await sr.ReadToEndAsync();
// var document = Markdig.Parsers.MarkdownParser.Parse(md);
// //DumpMarkdownDocument(document);
var spellss = document.ToSpells<SpellHD>();
Console.WriteLine("ok");
var md2 = spellss.ToMarkdownString();
if (md.CompareTo(md2) != 0)
{
Debug.WriteLine("failed");
}
return spellss;
}
}
// var spellss = document.ToSpells<SpellHD>();
// Console.WriteLine("ok");
// var md2 = spellss.ToMarkdownString();
// if (md.CompareTo(md2) != 0)
// {
// Debug.WriteLine("failed");
// }
// return spellss;
// }
//}
static async Task<IEnumerable<Monster>> TestMarkdownMonsters(string filename)
{