From 3808cad56e86d3c21adc6fec5b3676a287acec9b Mon Sep 17 00:00:00 2001 From: Anairkoen Schno Date: Wed, 23 Oct 2019 16:46:43 -0500 Subject: [PATCH] Added Net3 proxy to LibLoader so that it compiles against .NET 3 --- IPA.Loader/Loader/LibLoader.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/IPA.Loader/Loader/LibLoader.cs b/IPA.Loader/Loader/LibLoader.cs index d6e2601a..c0a7ce64 100644 --- a/IPA.Loader/Loader/LibLoader.cs +++ b/IPA.Loader/Loader/LibLoader.cs @@ -8,6 +8,10 @@ using System.Runtime.InteropServices; using System.Linq; using IPA.Logging; using Mono.Cecil; +#if NET3 +using Net3_Proxy; +using Directory = Net3_Proxy.Directory; +#endif namespace IPA.Loader {