2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-05 11:19:39 -04:00
raylib-cs/Raylib-cs.Tests/Raylib-cs.Tests.csproj
ChrisDill b679edc778 Adjust dependency versions in Raylib-cs.Tests
- Update Microsoft.NET.Test.Sdk to 16.7.1
- Update xunit.runner.visualstudio to 2.4.3.
- Revert coverlet.collector to 1.3.0.
2021-01-27 14:14:24 +00:00

18 lines
659 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net5.0</TargetFrameworks>
<ApplicationIcon>../Logo/raylib-cs.ico</ApplicationIcon>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" />
<PackageReference Include="coverlet.collector" Version="1.3.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="../Raylib-cs/Raylib-cs.csproj" />
</ItemGroup>
</Project>