Watch
2
0
Fork
You've already forked raylib-cs
0

feat: samples default to local project reference, and can optionally use the nuget package

This commit is contained in:
tiger tiger tiger 2026-07-17 07:41:12 +02:00
commit 768fa93c41

View file

@ -19,7 +19,12 @@
<Using Include="Raylib_cs"/>
</ItemGroup>
<ItemGroup>
<ItemGroup Condition="'$(UseRaylibCsPackage)' != 'true'">
<ProjectReference Include="..\Raylib-cs\Raylib-cs.csproj"/>
</ItemGroup>
<ItemGroup Condition="'$(UseRaylibCsPackage)' == 'true'">
<PackageReference Include="Raylib-cs" Version="$(RaylibCsVersion)"/>
</ItemGroup>
</Project>