Jelajahi Sumber

Remove redundant runtime patch

ghorsington 5 tahun lalu
induk
melakukan
5cc42b582a
1 mengubah file dengan 0 tambahan dan 9 penghapusan
  1. 0 9
      BepInEx.Preloader/RuntimeFixes/UnityPatches.cs

+ 0 - 9
BepInEx.Preloader/RuntimeFixes/UnityPatches.cs

@@ -39,14 +39,5 @@ namespace BepInEx.Preloader.RuntimeFixes
 			if (AssemblyLocations.TryGetValue(__instance.FullName, out string location))
 				__result = $"file://{location.Replace('\\', '/')}";
 		}
-
-		[HarmonyPostfix, HarmonyPatch(typeof(AppDomain), nameof(AppDomain.SetupInformation), MethodType.Getter)]
-		public static void GetExeConfigName(AppDomainSetup __result)
-		{
-			if (!Preloader.IsDotNet46)
-				return;
-			__result.ApplicationBase = $"file://{Paths.GameRootPath}";
-			__result.ConfigurationFile = "app.config";
-		}
 	}
 }