PkmnLib.NET/PkmnLib.Tests/PkmnLib.Tests.csproj

44 lines
1.6 KiB
XML
Raw Normal View History

2024-07-20 11:51:52 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
</PropertyGroup>
<ItemGroup>
2024-08-23 09:15:53 +00:00
<PackageReference Include="CSPath" Version="0.0.4" />
<PackageReference Include="FluentAssertions" Version="6.12.0"/>
2024-07-20 11:51:52 +00:00
<PackageReference Include="coverlet.collector" Version="6.0.0"/>
2024-12-27 13:30:22 +00:00
<PackageReference Include="System.Linq.Async" Version="6.0.1" />
<PackageReference Include="TUnit" Version="0.5.18" />
2024-07-20 11:51:52 +00:00
</ItemGroup>
<ItemGroup>
2024-08-23 09:15:53 +00:00
<ProjectReference Include="..\PkmnLib.Dataloader\PkmnLib.Dataloader.csproj"/>
<ProjectReference Include="..\PkmnLib.Dynamic\PkmnLib.Dynamic.csproj"/>
<ProjectReference Include="..\PkmnLib.Static\PkmnLib.Static.csproj"/>
<ProjectReference Include="..\Plugins\PkmnLib.Plugin.Gen7\PkmnLib.Plugin.Gen7.csproj" />
2024-07-20 11:51:52 +00:00
</ItemGroup>
2024-08-18 12:22:50 +00:00
<ItemGroup>
2024-08-23 09:15:53 +00:00
<Folder Include="Data\"/>
2024-08-18 12:22:50 +00:00
</ItemGroup>
<ItemGroup>
2024-08-23 09:15:53 +00:00
<None Update="Data\*">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Integration\Tests\*">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
2024-08-18 12:22:50 +00:00
</ItemGroup>
2024-12-27 13:30:22 +00:00
<Target Name="WorkaroundRider117732" AfterTargets="Build" Condition="!$([MSBuild]::IsOSPlatform('Windows'))">
<Copy Condition="Exists('$(OutputPath)$(AssemblyName)')" SourceFiles="$(OutputPath)$(AssemblyName)" DestinationFiles="$(OutputPath)$(AssemblyName).exe"/>
</Target>
2024-07-20 11:51:52 +00:00
</Project>