PkmnLib.NET/AI/AIRunner/AIRunner.csproj
Deukhoofd d57076374f
All checks were successful
Build / Build (push) Successful in 1m3s
Some initial work on prescient AI, AI runner, and some random fixes
2025-07-05 17:48:51 +02:00

24 lines
796 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="iluvadev.ConsoleProgressBar"/>
<PackageReference Include="Serilog"/>
<PackageReference Include="Serilog.Sinks.Console"/>
<PackageReference Include="ShellProgressBar"/>
<PackageReference Include="System.CommandLine"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\PkmnLib.Dynamic\PkmnLib.Dynamic.csproj"/>
<ProjectReference Include="..\..\Plugins\PkmnLib.Plugin.Gen7\PkmnLib.Plugin.Gen7.csproj"/>
</ItemGroup>
</Project>