Browse Source

TypeLoader: don't write error when a native DLL is found

ghorsington 4 năm trước cách đây
mục cha
commit
4d7e5cac2b
1 tập tin đã thay đổi với 4 bổ sung0 xóa
  1. 4 0
      BepInEx/Bootstrap/TypeLoader.cs

+ 4 - 0
BepInEx/Bootstrap/TypeLoader.cs

@@ -126,6 +126,10 @@ namespace BepInEx.Bootstrap
 					result[dll] = matches;
 					ass.Dispose();
 				}
+				catch (BadImageFormatException e)
+				{
+					Logger.LogDebug($"Skipping loading {dll} because it's not a valid .NET assembly. Full error: {e}");
+				}
 				catch (Exception e)
 				{
 					Logger.LogError(e.ToString());