windbg-debug icon indicating copy to clipboard operation
windbg-debug copied to clipboard

Hi i have some question

Open kimyw3007 opened this issue 7 years ago • 0 comments

HI First thank you for this extension

and.. my question is..

i want to see process log that already attached to windbg in window console

how do i see this?

and how do i get the breakpoint when i am debugging in dll(vc++ using visaul studio) project?

    {
        "type": "windbg",
        "request": "launch",            
        "name": "Launch Program",
        "target": "C:\\Program Files\\Performance Center\\Bin\\LoadGenerator.exe",
        "verbosity" : "debug",
        "args": "-l cpp -s -q 1 -o 0 -r 1 -p ${workspaceFolder}\\Bin\\Debug\\VuserScriptCPP.dll -a ${workspaceFolder}\\Bin\\Debug\\nsparameter.json",
        "windbgpath": "C:/Program Files (x86)/Windows Kits/10/Debuggers/x86/dbgeng.dll",
        "workingDir": "${workspaceRoot}",
        "sources" : [
            "${workspaceRoot}"
        ]
    }

this is my configuration

and LoadGenerator.exe will load dll when it implement immedeatly

kimyw3007 avatar Nov 28 '18 07:11 kimyw3007