2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-03 11:09:40 -04:00

Dropping experimental netfx support

- Set libraries to target netstandard2.1 and updated tests to net5.0. Still learning about the new features. Libraries may also change to net5.0
later if the newer features are useful enough to include directly in the library.
- Removing Platform.cs which was only used by netfx.
This commit is contained in:
ChrisDill 2020-11-12 10:30:50 +00:00
parent ddadcf01f7
commit 8d9201c341
6 changed files with 6 additions and 109 deletions

View File

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework> <TargetFramework>netstandard2.1</TargetFramework>
<Platforms>x64</Platforms> <Platforms>x64</Platforms>
</PropertyGroup> </PropertyGroup>

View File

@ -11,6 +11,8 @@ C# bindings for raylib 3.0, a simple and easy-to-use library to learn videogames
[![Chat on Discord](https://img.shields.io/discord/426912293134270465.svg?logo=discord)](https://discord.gg/VkzNHUE) [![Chat on Discord](https://img.shields.io/discord/426912293134270465.svg?logo=discord)](https://discord.gg/VkzNHUE)
Raylib-cs targets netstandard2.1 and supports netcoreapp3.0+ and net5.0.
## Installation - NuGet ## Installation - NuGet
This is the prefered method to get started - The package is still new so please report any [issues](https://github.com/ChrisDill/Raylib-cs/issues). This is the prefered method to get started - The package is still new so please report any [issues](https://github.com/ChrisDill/Raylib-cs/issues).
@ -21,9 +23,6 @@ dotnet add package Raylib-cs --version 3.1.5
[![NuGet](https://img.shields.io/nuget/dt/raylib-cs)](https://www.nuget.org/packages/Raylib-cs/) [![NuGet](https://img.shields.io/nuget/dt/raylib-cs)](https://www.nuget.org/packages/Raylib-cs/)
Currently supports netstandard2.0 and netcore3.1.
There is also some support for Framework 4.7.2+ although it is experimental.
If you need to edit Raylib-cs source then you will need to add the bindings as a project (see below). If you need to edit Raylib-cs source then you will need to add the bindings as a project (see below).
## Installation - Manual ## Installation - Manual

View File

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework> <TargetFramework>netstandard2.1</TargetFramework>
<Platforms>x64</Platforms> <Platforms>x64</Platforms>
</PropertyGroup> </PropertyGroup>

View File

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFrameworks>net47;netcoreapp3.1</TargetFrameworks> <TargetFrameworks>netcoreapp3.1;net5.0</TargetFrameworks>
<Platforms>AnyCPU</Platforms> <Platforms>AnyCPU</Platforms>
<Configurations>Debug;Release</Configurations> <Configurations>Debug;Release</Configurations>
</PropertyGroup> </PropertyGroup>
@ -20,6 +20,4 @@
<ItemGroup> <ItemGroup>
<ProjectReference Include="../Raylib-cs/Raylib-cs.csproj" /> <ProjectReference Include="../Raylib-cs/Raylib-cs.csproj" />
</ItemGroup> </ItemGroup>
<Import Project="../netfx.props" />
</Project> </Project>

View File

@ -1,96 +0,0 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Reflection;
namespace Raylib_cs
{
public static class Platform
{
public static readonly IReadOnlyDictionary<string, ( PlatformID, bool)> SupportedPlatforms =
new Dictionary<string, (PlatformID PlatformID, bool x64)>()
{
{"osx-x64", (PlatformID.MacOSX, true)},
{"win-x64", (PlatformID.Win32NT, true)},
{"win-x86", (PlatformID.Win32NT, false)},
{"linux-x64", (PlatformID.Unix, true)},
{"linux-x86", (PlatformID.Unix, false)},
};
public static readonly List<(PlatformID, bool)> HasSupportedPlatformNativeLibrary =
new List<(PlatformID, bool)>();
public static string NativeLibrarySubfolder { get; set; } = "native";
public static string RuntimeLibraryFolder { get; set; } = "runtimes";
private static void DiscoverNativeLibraries()
{
var localFolders = Directory.GetDirectories(Directory.GetCurrentDirectory());
if (!localFolders.Any(d =>
string.Equals(d, RuntimeLibraryFolder, StringComparison.InvariantCultureIgnoreCase))) return;
// for each supported platform, see if the native library exists in the RuntimeLibraryFolder (for now this is any file that doesnt start with ".")
foreach (var platform in SupportedPlatforms)
{
var localPlatformFolder = localFolders.FirstOrDefault(f =>
string.Equals(f, platform.Key, StringComparison.InvariantCultureIgnoreCase));
if (localPlatformFolder == default) continue;
var localNativeLibraryFolder = Path.Combine(localPlatformFolder, NativeLibrarySubfolder);
if (!Directory.Exists(localNativeLibraryFolder))
continue;
// if all the files in the NativeLibrarySubfolder start with "." then we have not found any native libraries
if (Directory.GetFiles(localNativeLibraryFolder).All(f => f[0] == '.')) continue;
if (!HasSupportedPlatformNativeLibrary.Contains(platform.Value))
HasSupportedPlatformNativeLibrary.Add(platform.Value);
}
}
private static string DetectSystem()
{
Debug.WriteLine(
$"System info: {Environment.NewLine}" +
$"OS:{Environment.OSVersion.Platform:G}{Environment.NewLine}" +
$"ServicePack:{Environment.OSVersion.ServicePack}{Environment.NewLine}" +
$"Version:{Environment.OSVersion.Version}{Environment.NewLine}" +
$"64OS?:{Environment.Is64BitOperatingSystem}{Environment.NewLine}" +
$"64Proc?:{Environment.Is64BitProcess}");
var x = Environment.Is64BitProcess && Environment.Is64BitOperatingSystem ? "-x64" : "-x86";
switch (Environment.OSVersion.Platform)
{
case PlatformID.Unix:
return "linux" + x;
case PlatformID.Win32NT:
return "win" + x;
case PlatformID.MacOSX:
return "osx" + x;
}
return null;
}
public static void ResolveNativeLibraries()
{
DiscoverNativeLibraries();
CopyNativeLibraryFilesToRoot(DetectSystem());
}
private static void CopyNativeLibraryFilesToRoot(string platformString)
{
// native
foreach (var file in Directory.GetFiles(Path.Combine(Directory.GetCurrentDirectory(), RuntimeLibraryFolder,
platformString, NativeLibrarySubfolder)))
{
File.Copy(file, AppDomain.CurrentDomain.BaseDirectory + $"{Path.GetFileName(file)}", true);
}
}
}
}

View File

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks> <TargetFrameworks>netstandard2.1</TargetFrameworks>
<Platforms>osx-x64;linux-x64;win-x64;win-x86;linux-x86</Platforms> <Platforms>osx-x64;linux-x64;win-x64;win-x86;linux-x86</Platforms>
<Configurations>Debug;Release</Configurations> <Configurations>Debug;Release</Configurations>
</PropertyGroup> </PropertyGroup>
@ -32,7 +32,6 @@
<ItemGroup> <ItemGroup>
<Compile Include="Easings.cs"/> <Compile Include="Easings.cs"/>
<Compile Include="Platform.cs"/>
<Compile Include="Raylib.cs"/> <Compile Include="Raylib.cs"/>
<Compile Include="Raymath.cs"/> <Compile Include="Raymath.cs"/>
<Compile Include="Rlgl.cs"/> <Compile Include="Rlgl.cs"/>
@ -41,9 +40,6 @@
<ItemGroup> <ItemGroup>
<Content Include="Raylib-cs.targets"/> <Content Include="Raylib-cs.targets"/>
</ItemGroup>
<ItemGroup>
<Content Include="runtimes\**" CopyToOutputDirectory="PreserveNewest" Link="runtimes\%(RecursiveDir)\%(Filename)%(Extension)"/> <Content Include="runtimes\**" CopyToOutputDirectory="PreserveNewest" Link="runtimes\%(RecursiveDir)\%(Filename)%(Extension)"/>
</ItemGroup> </ItemGroup>