From 8d9201c341e659d5afd1b9dc701ab805e98b2d84 Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Thu, 12 Nov 2020 10:30:50 +0000 Subject: [PATCH] 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. --- Physac-cs/Physac-cs.csproj | 2 +- README.md | 5 +- Raygui-cs/Raygui-cs.csproj | 2 +- Raylib-cs.Tests/Raylib-cs.Tests.csproj | 4 +- Raylib-cs/Platform.cs | 96 -------------------------- Raylib-cs/Raylib-cs.csproj | 6 +- 6 files changed, 6 insertions(+), 109 deletions(-) delete mode 100644 Raylib-cs/Platform.cs diff --git a/Physac-cs/Physac-cs.csproj b/Physac-cs/Physac-cs.csproj index 0261330..b258f52 100644 --- a/Physac-cs/Physac-cs.csproj +++ b/Physac-cs/Physac-cs.csproj @@ -1,6 +1,6 @@ - netstandard2.0 + netstandard2.1 x64 diff --git a/README.md b/README.md index 83028b9..72dd621 100644 --- a/README.md +++ b/README.md @@ -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) +Raylib-cs targets netstandard2.1 and supports netcoreapp3.0+ and net5.0. + ## 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). @@ -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/) -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). ## Installation - Manual diff --git a/Raygui-cs/Raygui-cs.csproj b/Raygui-cs/Raygui-cs.csproj index 1d126da..2814fa5 100644 --- a/Raygui-cs/Raygui-cs.csproj +++ b/Raygui-cs/Raygui-cs.csproj @@ -1,6 +1,6 @@ - netstandard2.0 + netstandard2.1 x64 diff --git a/Raylib-cs.Tests/Raylib-cs.Tests.csproj b/Raylib-cs.Tests/Raylib-cs.Tests.csproj index 107aa1a..1e9f041 100644 --- a/Raylib-cs.Tests/Raylib-cs.Tests.csproj +++ b/Raylib-cs.Tests/Raylib-cs.Tests.csproj @@ -1,6 +1,6 @@ - net47;netcoreapp3.1 + netcoreapp3.1;net5.0 AnyCPU Debug;Release @@ -20,6 +20,4 @@ - - \ No newline at end of file diff --git a/Raylib-cs/Platform.cs b/Raylib-cs/Platform.cs deleted file mode 100644 index f1ba866..0000000 --- a/Raylib-cs/Platform.cs +++ /dev/null @@ -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 SupportedPlatforms = - new Dictionary() - { - {"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); - } - } - } -} \ No newline at end of file diff --git a/Raylib-cs/Raylib-cs.csproj b/Raylib-cs/Raylib-cs.csproj index eb06e30..1df6479 100644 --- a/Raylib-cs/Raylib-cs.csproj +++ b/Raylib-cs/Raylib-cs.csproj @@ -1,6 +1,6 @@ - netstandard2.0;netstandard2.1 + netstandard2.1 osx-x64;linux-x64;win-x64;win-x86;linux-x86 Debug;Release @@ -32,7 +32,6 @@ - @@ -41,9 +40,6 @@ - - -