From be2bc858afa82c69a193c5a56ada6781ff880f12 Mon Sep 17 00:00:00 2001 From: Katy Coe Date: Mon, 28 Oct 2019 22:13:39 +0100 Subject: [PATCH] Tests: Look for GameAssembly.dll in test folder --- Il2CppTests/TestRunner.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Il2CppTests/TestRunner.cs b/Il2CppTests/TestRunner.cs index 3d10153..0811836 100644 --- a/Il2CppTests/TestRunner.cs +++ b/Il2CppTests/TestRunner.cs @@ -20,6 +20,8 @@ namespace Il2CppInspector // Windows if (!File.Exists(testFile)) testFile = testPath + @"\" + Path.GetFileName(testPath) + ".dll"; + if (!File.Exists(testFile)) + testFile = testPath + @"\GameAssembly.dll"; // iOS if (!File.Exists(testFile)) testFile = testPath + @"\" + Path.GetFileName(testPath);