Last active
August 29, 2015 14:13
-
-
Save JoshVarty/8ce34492f73e4098a7e3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var outWindow = GetService(typeof(SVsOutputWindow)) as IVsOutputWindow; | |
| var debugPaneGuid = VSConstants.GUID_OutWindowGeneralPane; | |
| IVsOutputWindowPane pane; | |
| outWindow.GetPane(ref debugPaneGuid, out pane); | |
| IVsTextView view = pane as IVsTextView; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment