diff --git a/extra/CompilerPlugin.Unity5/Unity5/UnityEditor.dll b/extra/CompilerPlugin.Unity5/Unity5/UnityEditor.dll index bc5536e..9807940 100644 Binary files a/extra/CompilerPlugin.Unity5/Unity5/UnityEditor.dll and b/extra/CompilerPlugin.Unity5/Unity5/UnityEditor.dll differ diff --git a/extra/CompilerPlugin.Unity5/Unity5/UnityEngine.dll b/extra/CompilerPlugin.Unity5/Unity5/UnityEngine.dll index 008b721..c1b91eb 100644 Binary files a/extra/CompilerPlugin.Unity5/Unity5/UnityEngine.dll and b/extra/CompilerPlugin.Unity5/Unity5/UnityEngine.dll differ diff --git a/extra/CompilerPlugin/CSharp60SupportActivator.cs b/extra/CompilerPlugin/CSharp60SupportActivator.cs index d974ebc..9d8607e 100644 --- a/extra/CompilerPlugin/CSharp60SupportActivator.cs +++ b/extra/CompilerPlugin/CSharp60SupportActivator.cs @@ -16,8 +16,8 @@ static CSharp60SupportActivator() private static List GetSupportedLanguages() { - var fieldInfo = typeof(ScriptCompilers).GetField("_supportedLanguages", BindingFlags.NonPublic | BindingFlags.Static); - var languages = (List)fieldInfo.GetValue(null); + var fieldInfo = typeof(ScriptCompilers).GetField("SupportedLanguages", BindingFlags.NonPublic | BindingFlags.Static); + var languages = (List)fieldInfo.GetValue(null); return languages; } } \ No newline at end of file