mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-05 11:19:39 -04:00
- Changed Raylib-cs.proj to use just one target framework. - Removed targets net47 and netcoreapp3.1 from Raylib-cs.csproj. - Removed netcoreapp3.1 from dotnetcore.yml workflow.
28 lines
832 B
XML
28 lines
832 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="Physac.cs" />
|
|
<Compile Include="Raygui.cs" />
|
|
<Compile Include="Raylib.cs" />
|
|
<Compile Include="Raymath.cs" />
|
|
<Compile Include="Rlgl.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="../app.config" />
|
|
</ItemGroup>
|
|
</Project>
|