Skip to content

Commit

Permalink
Update PKHeX.Core - Nil's Porygon2 can now be requested via srp command.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdawg1989 committed Jun 12, 2024
1 parent ed4eb79 commit 7e47f2d
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 7 deletions.
3 changes: 3 additions & 0 deletions SysBot.Pokemon.Discord/SysBot.Pokemon.Discord.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@
</ItemGroup>

<ItemGroup>
<Reference Include="PKHeX.Core">
<HintPath>..\SysBot.Pokemon\deps\PKHeX.Core.dll</HintPath>
</Reference>
<Reference Include="PKHeX.Core.AutoMod">
<HintPath>..\SysBot.Pokemon\deps\PKHeX.Core.AutoMod.dll</HintPath>
</Reference>
Expand Down
6 changes: 6 additions & 0 deletions SysBot.Pokemon.Twitch/SysBot.Pokemon.Twitch.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,10 @@
<ProjectReference Include="..\SysBot.Pokemon\SysBot.Pokemon.csproj" />
</ItemGroup>

<ItemGroup>
<Reference Include="PKHeX.Core">
<HintPath>..\SysBot.Pokemon\deps\PKHeX.Core.dll</HintPath>
</Reference>
</ItemGroup>

</Project>
3 changes: 3 additions & 0 deletions SysBot.Pokemon.WinForms/SysBot.Pokemon.WinForms.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@
</ItemGroup>

<ItemGroup>
<Reference Include="PKHeX.Core">
<HintPath>..\SysBot.Pokemon\deps\PKHeX.Core.dll</HintPath>
</Reference>
<Reference Include="PKHeX.Drawing">
<HintPath>deps\PKHeX.Drawing.dll</HintPath>
</Reference>
Expand Down
3 changes: 3 additions & 0 deletions SysBot.Pokemon.YouTube/SysBot.Pokemon.YouTube.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
</ItemGroup>

<ItemGroup>
<Reference Include="PKHeX.Core">
<HintPath>..\SysBot.Pokemon\deps\PKHeX.Core.dll</HintPath>
</Reference>
<Reference Include="StreamingClient.Base">
<HintPath>deps\StreamingClient.Base.dll</HintPath>
</Reference>
Expand Down
6 changes: 6 additions & 0 deletions SysBot.Pokemon.Z3/SysBot.Pokemon.Z3.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,10 @@
<ProjectReference Include="..\SysBot.Pokemon\SysBot.Pokemon.csproj" />
</ItemGroup>

<ItemGroup>
<Reference Include="PKHeX.Core">
<HintPath>..\SysBot.Pokemon\deps\PKHeX.Core.dll</HintPath>
</Reference>
</ItemGroup>

</Project>
3 changes: 3 additions & 0 deletions SysBot.Pokemon/SysBot.Pokemon.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
<Folder Include="deps\" />
</ItemGroup>
<ItemGroup>
<Reference Include="PKHeX.Core">
<HintPath>deps\PKHeX.Core.dll</HintPath>
</Reference>
<Reference Include="PKHeX.Core.AutoMod">
<HintPath>deps\PKHeX.Core.AutoMod.dll</HintPath>
</Reference>
Expand Down
Binary file added SysBot.Pokemon/deps/PKHeX.Core.dll
Binary file not shown.
7 changes: 0 additions & 7 deletions SysBot.Tests/QueueTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,6 @@ namespace SysBot.Tests;

public class QueueTests
{
#pragma warning disable CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable.
#pragma warning disable IDE0044 // Add readonly modifier

private static List<Pictocodes> lgcode;
#pragma warning restore IDE0044 // Add readonly modifier
#pragma warning restore CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable.

[Fact]
public void TestEnqueuePK8() => EnqueueTest<PK8>();

Expand Down

0 comments on commit 7e47f2d

Please sign in to comment.