| 12345678910111213141516171819202122232425262728 | #if UNITY_EDITORusing UnityEditor;using UnityEngine;using System;using System.Text;using System.Collections.Generic;[System.Reflection.Obfuscation(Exclude = true)]public class ILRuntimeMenu{   [MenuItem("ILRuntime/安装VS调试插件")]    static void InstallDebugger()    {        EditorUtility.OpenWithDefaultApp("Assets/Samples/ILRuntime/1.6.7/Demo/Debugger~/ILRuntimeDebuggerLauncher.vsix");    }    [MenuItem("ILRuntime/打开ILRuntime中文文档")]    static void OpenDocumentation()    {        Application.OpenURL("https://ourpalm.github.io/ILRuntime/");    }    //[MenuItem("ILRuntime/打开ILRuntime Github项目")]    //static void OpenGithub()    //{    //    Application.OpenURL("https://github.com/Ourpalm/ILRuntime");    //}}#endif
 |