vsjitdebugger.exe (Visual Studio Debugger) - shows up lots in my task manager in production server

前端 未结 3 2191
鱼传尺愫
鱼传尺愫 2021-02-19 23:22

I\'ve got a .net web site which runs on IIS. Once every few days I look at the task manager and I\'ve got 10-15 vsjitdebugger.exe processes open. Each one ties up some connectio

3条回答
  •  半阙折子戏
    2021-02-19 23:52

    Sometimes a developer puts in a line of code to Debugger.Launch() and forgets to remove it. That will force the JIT dialog to say, "An exception 'Launch for user' has occurred ...". If you are getting that message then it's a hardcoded statement to launch the debugger.

提交回复
热议问题