Tests: Look for GameAssembly.dll in test folder

This commit is contained in:
Katy Coe
2019-10-28 22:13:39 +01:00
parent 1496bbb623
commit be2bc858af

View File

@@ -20,6 +20,8 @@ namespace Il2CppInspector
// Windows // Windows
if (!File.Exists(testFile)) if (!File.Exists(testFile))
testFile = testPath + @"\" + Path.GetFileName(testPath) + ".dll"; testFile = testPath + @"\" + Path.GetFileName(testPath) + ".dll";
if (!File.Exists(testFile))
testFile = testPath + @"\GameAssembly.dll";
// iOS // iOS
if (!File.Exists(testFile)) if (!File.Exists(testFile))
testFile = testPath + @"\" + Path.GetFileName(testPath); testFile = testPath + @"\" + Path.GetFileName(testPath);