You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've found I can do rudimentary print-style debugging via the VS Output window:
varvsWindowKindOutput="{34E76E81-EE4A-11D0-AE2E-00A0C90FFFC3}";varoutputWindow=dte.Windows.Item(vsWindowKindOutput);outputWindow.Activate();varoutputWindow2=outputWindow.Object;// <-- Weird: https://learn.microsoft.com/en-us/dotnet/api/envdte.outputwindowpanesvaroutputPane1=outputWindow2.ActivePane;varoutputPane2=outputWindow2.OutputWindowPanes.Item(1/* name */);outputPane1.Activate();// <-- Is this necessary?outputPane1.OutputString(newDate());outputPane1.OutputString("\r\n");
(This code currently re-uses the current Output pane as I'm having problems with OutputWindowPanes.Add( "MyMacro Output" ) not working reliably.
as stated earlier, no break point possible.
alert() is not working too.
The text was updated successfully, but these errors were encountered: