How to put hyperlink into output window?
I'm try to place hyperlink into build output window. I want to provide user navigate to html file with specific build results.
But the output is plain text. Not the hyper link.
My code is look like this:
OutputWindow ow = _application.ToolWindows.OutputWindow;
OutputWindowPane owP;
owP = ow.OutputWindowPanes.Item("Build");
owP.Activate();
owP.OutputString("www.mycorp.com");
What is wrong?
Thanks!
Vasiliy

