I want a modality to control the debug menu from Visual Studio IDE on the same machine using python script.
For example:
-ADD BREAKPOINTS
-STEP INTO
-STEP OUT
-READ VARIABLE
-WRITE VARIABLE
In present I use :
For example:
-ADD BREAKPOINTS
-STEP INTO
-STEP OUT
-READ VARIABLE
-WRITE VARIABLE
In present I use :
pythoncom.CoInitialize()
dte = Dispatch("WDExpress.DTE.12.0")
dte.MainWindow.Visible = bVisibleUI
dte.Solution.Open(sSolutionPath)But this method is instable, do you know if is any solution available ?
