c# - Output Window not working on Visual Studio Isolated Shell -
i having problem displaying text output window in visual studio isolated shell.everything working fine if run isolated shell on machine has isolated+integrated shell redistributable + visual studio professional 2015 + sdk installed. on machine doesn't have visual studio installed, output window remains blank on isolated shell although work on integrated shell.
i using following create custom output window:
ivsoutputwindow opwindow = package.getglobalservice( typeof( svsoutputwindow ) ) ivsoutputwindow; guid customguid = new guid("0f44e2d1-f5fa-4d2d-ab30-22be8ecd9789"); string customtitle = "my title"; opwindow.createpane( ref customguid, customtitle, 1, 1 ); ivsoutputwindowpane oppane; opwindow.getpane( ref customguid, out oppane); oppane.outputstring( "hello, test!" ); oppane.activate();
can shed light? thanks
i've found problem. in end due dlls version different caused behaviour differences.
more details can found in link:
hope above helps someone.
Comments
Post a Comment