mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-03 11:09:40 -04:00
- Both bindings have causes confusion and issues in project setup. Moving them into separate libraries should make things clearer and easier to maintain.
22 lines
621 B
XML
22 lines
621 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<Platforms>x64</Platforms>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<EnableDefaultItems>false</EnableDefaultItems>
|
|
<AssemblyName>Raylib-cs</AssemblyName>
|
|
<RootNamespace>Raylib_cs</RootNamespace>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="Easings.cs" />
|
|
<Compile Include="Raylib.cs" />
|
|
<Compile Include="Raymath.cs" />
|
|
<Compile Include="Rlgl.cs" />
|
|
</ItemGroup>
|
|
</Project>
|