mirror of
https://github.com/Nioux/AideDeJeu.git
synced 2025-12-22 01:53:24 +00:00
Contenu
This commit is contained in:
parent
a446e06309
commit
e5eb4d848f
9 changed files with 857 additions and 7 deletions
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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}");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue