I have this idea to use Visual Studio Code as a debugger of a working .NET Framework application. Let's assume that there is a running process that runs a full .NET Framework 64-bit application. I have all the PDBs. Would it be possible to attach to that process Visual Studio [...] read more
I'm using MdbgProcess and MdbgEngine to write information to an XML file like the application version, process id, time, threads, etc. I have the following code: MDbgProcess mdbgProcess = null; try { MDbgEngine debugger = new MDbgEngine(); debugger.Options.StopOnExceptionEnhanced = true; mdbgProcess = debugger.Attach(info.ProcessID); mdbgProcess.Go().WaitOne(); } catch(Exception e) { } But [...] read more