open_LogViewer() public static method

public static open_LogViewer ( ) : void
return void
Beispiel #1
0
        //helps to debug cases where there is a assembly load error triggered by the JIT
        public void LocalInitialize()
        {
            if (VisualStudio_2010.Initialized.isFalse())
            {
                try
                {
                    if (Control.ModifierKeys == Keys.Shift)
                    {
                        VisualStudio_O2_Utils.open_LogViewer();
                    }

                    populateDefaultVSComObjects();
                    VisualStudio_2010.Initialized = true;
                    //VisualStudio_O2_Utils.compileAndExecuteScript(@"VS_O2_PlugIns\O2_Platform_Gui.cs", "O2_Platform_Gui", "buildGui");
                }
                catch (Exception ex)
                {
                    ex.log("[open_ScriptEditor]");
                    Debug.WriteLine("[open_ScriptEditor] " + ex.Message);
                }
            }
        }
        //helps to debug cases where there is a assembly load error triggered by the JIT
        public void LocalInitialize()
        {
            if (VisualStudio_2010.Initialized.isFalse())
            {
                try
                {
                    if (Control.ModifierKeys == Keys.Shift)
                    {
                        VisualStudio_O2_Utils.open_LogViewer();
                    }

                    populateDefaultVSComObjects();
                    VisualStudio_2010.Initialized = true;

                    O2Thread.mtaThread(
                        () => new O2Platform_VisualStudio().loadO2PlatformVSEnvironment());
                }
                catch (Exception ex)
                {
                    ex.log("[open_ScriptEditor]");
                    Debug.WriteLine("[open_ScriptEditor] " + ex.Message);
                }
            }
        }