From 106044456d4de4246eea64a350a0ab9a7d337b5a Mon Sep 17 00:00:00 2001 From: WNP78 Date: Sun, 1 Jun 2025 02:02:54 +0100 Subject: [PATCH] Add PopOS to generic linux RID override list. Probably fixes #2461 --- src/Core/Silk.NET.Core/Loader/DefaultPathResolver.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Silk.NET.Core/Loader/DefaultPathResolver.cs b/src/Core/Silk.NET.Core/Loader/DefaultPathResolver.cs index cb9b2fa567..44282593e1 100644 --- a/src/Core/Silk.NET.Core/Loader/DefaultPathResolver.cs +++ b/src/Core/Silk.NET.Core/Loader/DefaultPathResolver.cs @@ -370,7 +370,7 @@ static bool Check(string name, string ridFolder, out string? result) private static readonly string[] _linuxRiDs = { "alpine", "android", "arch", "centos", "debian", "exherbo", "fedora", "freebsd", "gentoo", "linux", - "opensuse", "rhel", "sles", "tizen" + "opensuse", "rhel", "sles", "tizen", "pop" }; private static string? GuessFallbackRid(string actualRuntimeIdentifier)