소스 검색

Load all core assemblies in the entrypoint

Bepis 5 년 전
부모
커밋
8cf63db5a2
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      BepInEx.Preloader/Entrypoint.cs

+ 4 - 0
BepInEx.Preloader/Entrypoint.cs

@@ -1,4 +1,5 @@
 using System;
+using System.IO;
 using System.Linq;
 using System.Reflection;
 
@@ -18,6 +19,9 @@ namespace BepInEx.Preloader
 			Paths.SetExecutablePath(args[0]);
 			AppDomain.CurrentDomain.AssemblyResolve += LocalResolve;
 
+			foreach (var dll in Directory.GetFiles(Paths.BepInExAssemblyDirectory))
+				Assembly.Load(dll);
+
 			Preloader.Run();
 		}