You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found this problem on UnityEditor on macOS with Harmony.
I tried to mod assemblies but unity crashes because of this problem.
Test Code
using System;
using MonoMod.Utils;
namespace MonoMod.DebugIL {
class Program {
public static void Main(string[] args) {
Console.WriteLine("PlatformHelper.Current " + PlatformHelper.Current);
}
}
}