1
0
Fork 0
mirror of https://github.com/Nioux/AideDeJeu.git synced 2025-12-22 01:53:24 +00:00
This commit is contained in:
Yan Maniez 2018-08-18 21:58:57 +02:00
parent a446e06309
commit e5eb4d848f
9 changed files with 857 additions and 7 deletions

View file

@ -315,6 +315,14 @@
<EmbeddedResource Include="..\..\Data\l5r_magic_hd.md" Link="Data\l5r_magic_hd.md" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="..\..\Data\l5r_bard_hd.md" Link="Data\l5r_bard_hd.md" />
<EmbeddedResource Include="..\..\Data\l5r_druid_hd.md" Link="Data\l5r_druid_hd.md" />
<EmbeddedResource Include="..\..\Data\l5r_human_hd.md" Link="Data\l5r_human_hd.md" />
<EmbeddedResource Include="..\..\Data\l5r_ranger_hd.md" Link="Data\l5r_ranger_hd.md" />
<EmbeddedResource Include="..\..\Data\l5r_rogue_hd.md" Link="Data\l5r_rogue_hd.md" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Views\MainNavigationPage.xaml">
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>

View file

@ -330,9 +330,12 @@ namespace AideDeJeuCmd
{
var file = link.Item1;
var anchor = link.Item2;
if (!allanchors[file].Contains(anchor))
if (allanchors.ContainsKey(file))
{
Console.WriteLine($"{links.Key} => {file} {anchor}");
if (!allanchors[file].Contains(anchor))
{
Console.WriteLine($"{links.Key} => {file} {anchor}");
}
}
}
}