소스 검색

Remove file writing debugging in preloader

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

+ 0 - 7
BepInEx.IL2CPP/DoorstopEntrypoint.cs

@@ -17,13 +17,6 @@ namespace BepInEx.IL2CPP
 			AppDomain.CurrentDomain.AssemblyResolve += LocalResolve;
 			AppDomain.CurrentDomain.AssemblyResolve -= DoorstopEntrypoint.ResolveCurrentDirectory;
 
-			File.WriteAllText("B:\\a.txt", "a");
-
-			//AppDomain.CurrentDomain.TypeResolve += (sender, eventArgs) =>
-			//{
-			//	eventArgs.
-			//}
-
 			Preloader.Run();
 		}