From 9026ecbe1bdd7062e4f671a7c379a23cb0ad0637 Mon Sep 17 00:00:00 2001 From: Anairkoen Schno Date: Fri, 20 Dec 2019 20:53:20 -0600 Subject: [PATCH] Fixed Array.Empty for .NET 3 --- IPA.Loader/Loader/PluginManifest.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/IPA.Loader/Loader/PluginManifest.cs b/IPA.Loader/Loader/PluginManifest.cs index 41fe4837..4ac57519 100644 --- a/IPA.Loader/Loader/PluginManifest.cs +++ b/IPA.Loader/Loader/PluginManifest.cs @@ -6,6 +6,10 @@ using System; using System.Collections.Generic; using AlmostVersionConverter = IPA.JsonConverters.AlmostVersionConverter; using Version = SemVer.Version; +#if NET3 +using Net3_Proxy; +using Array = Net3_Proxy.Array; +#endif namespace IPA.Loader {