/// <summary> /// Gets or creates the "General" output pane. /// </summary> /// <exception cref="InvalidOperationException">The "General" pane could /// not be found or created.</exception> public static OutputWindowRedirector GetGeneral(IServiceProvider provider) { if (_generalPane == null) { _generalPane = Get(provider, VSConstants.OutputWindowPaneGuid.GeneralPane_guid, "General"); } return _generalPane; }