From b3767cbbf0741f0b9c7597d505ab4312578ae0e2 Mon Sep 17 00:00:00 2001 From: ivan tkachenko Date: Fri, 22 Aug 2025 15:14:32 +0300 Subject: [PATCH] Add "polyfill" for IsExternalInit C# feature Imperium does this as well, and the whole internet would tell you to do this too, so it should be fine. --- MuzikaGromche/ExternalInit.cs | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 MuzikaGromche/ExternalInit.cs diff --git a/MuzikaGromche/ExternalInit.cs b/MuzikaGromche/ExternalInit.cs new file mode 100644 index 0000000..f9f0b9c --- /dev/null +++ b/MuzikaGromche/ExternalInit.cs @@ -0,0 +1,6 @@ +// ReSharper disable once CheckNamespace +#pragma warning disable IDE0130 // Namespace does not match folder structure +namespace System.Runtime.CompilerServices +{ + internal static class IsExternalInit; +}