Identify the correct w3wp process to attach while debugging in Visual Studio

Scenario:

Identify the correct w3wp process to attach while debugging in Visual Studio

Solution:

  • Open command prompt and run below command. Find the ID (number) of your application pool and look for that ID while attaching w3wp in VS.
    1
    2
    3
    cd C:\Windows\System32\inetsrv\
    
    appcmd.exe list wp

No comments:

Post a Comment

Move Github Sub Repository back to main repo

 -- delete .gitmodules git rm --cached MyProject/Core git commit -m 'Remove myproject_core submodule' rm -rf MyProject/Core git remo...