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:
parent
f52f6cac4d
commit
2f3bb7708b
2 changed files with 18 additions and 18 deletions
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue