Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 中获取IVsDebugger对象NuGet Package Manager Console?我想自动化远程调试操作。
IVsDebugger
NuGet Package Manager Console
我非常想念那些宏!:-(
Debugger debugger = _applicationObject.Debugger; DTE dte = debugger.DTE; ServiceProvider serviceProvider = new ServiceProvider((IServiceProvider)dte); IVsDebugger dbg = (IVsDebugger)serviceProvider.GetService(typeof(SVsShellDebugger));