Default tests to local project reference. Can optionally use the nuget package.
This commit is contained in:
parent
6ac30f758f
commit
b207e633ae
3 changed files with 12 additions and 9 deletions
|
|
@ -15,7 +15,13 @@
|
|||
</PackageReference>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ItemGroup Condition="'$(UseRaylibCsPackage)' != 'true'">
|
||||
<ProjectReference Include="..\Raylib-cs\Raylib-cs.csproj"/>
|
||||
</ItemGroup>
|
||||
|
||||
<Import Project="..\Raylib-cs\Raylib-cs.targets" Condition="'$(UseRaylibCsPackage)' != 'true'"/>
|
||||
|
||||
<ItemGroup Condition="'$(UseRaylibCsPackage)' == 'true'">
|
||||
<PackageReference Include="Raylib-cs" Version="$(RaylibCsVersion)"/>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
|
|
|||
|
|
@ -3,8 +3,6 @@ using Xunit;
|
|||
|
||||
namespace Raylib_cs.Tests;
|
||||
|
||||
using System.Collections.Generic;
|
||||
|
||||
public static class BlittableHelper
|
||||
{
|
||||
public static bool IsBlittable<T>()
|
||||
|
|
|
|||
Loading…
Reference in a new issue