Browse Source

Remove redundant runtime patch

ghorsington 5 years ago
parent
commit
5cc42b582a
1 changed files with 0 additions and 9 deletions
  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";
-		}
 	}
 }