feat: samples default to local project reference, and can optionally use the nuget package
This commit is contained in:
parent
6bb62d9932
commit
768fa93c41
1 changed files with 6 additions and 1 deletions
|
|
@ -19,7 +19,12 @@
|
||||||
<Using Include="Raylib_cs"/>
|
<Using Include="Raylib_cs"/>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup Condition="'$(UseRaylibCsPackage)' != 'true'">
|
||||||
|
<ProjectReference Include="..\Raylib-cs\Raylib-cs.csproj"/>
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup Condition="'$(UseRaylibCsPackage)' == 'true'">
|
||||||
<PackageReference Include="Raylib-cs" Version="$(RaylibCsVersion)"/>
|
<PackageReference Include="Raylib-cs" Version="$(RaylibCsVersion)"/>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue